/* Liquidity Page Specific Styles */
.liquidity-header {
    text-align: center;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    background-color: rgba(30, 14, 64, 0.5);
    margin-bottom: 0;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: none;
}

.liquidity-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #6446A6;
}

.breadcrumb span {
    color: #6446A6;
}

.cover-decoration {
    position: absolute;
    z-index: 1;
}

.cover-decoration.left-planet {
    left: 0;
    bottom: -10px;
    width: 200px;
    opacity: 0.9;
    z-index: 0;
}

.cover-decoration.astronaut-right {
    right: 15%;
    bottom: 0;
    width: 120px;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Liquidity Farm Section */
.liquidity-farm-section {
    padding: 60px 0;
    background-color: #1A0F3C;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.liquidity-farm-card {
    background-color: rgba(30, 14, 64, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.liquidity-farm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(26, 15, 60, 0.7);
}

.liquidity-farm-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.liquidity-farm-tabs {
    display: flex;
    gap: 10px;
}

.tab-button {
    background-color: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tab-button:hover, .tab-button.active {
    color: #fff;
}

.liquidity-farm-content {
    display: flex;
    padding: 0;
}

.liquidity-farm-left {
    flex: 1;
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(26, 15, 60, 0.7);
}

.liquidity-farm-right {
    width: 300px;
    background-color: rgba(14, 7, 38, 0.5);
    padding: 30px;
}

.liquidity-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.action-button {
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.action-button.active {
    background-color: #4D0DA6;
    color: #fff;
}

.pool-selector {
    margin-bottom: 20px;
}

.pool-selector label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.select-wrapper {
    position: relative;
}

.selected-pool {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    cursor: pointer;
}

.pool-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.selected-pool span {
    flex: 1;
    color: #fff;
    font-weight: 500;
}

.selected-pool i {
    color: rgba(255, 255, 255, 0.7);
}

.liquidity-options {
    margin-bottom: 20px;
}

.liquidity-option {
    display: flex;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.liquidity-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.liquidity-option label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.liquidity-option label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.liquidity-option.active label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #4D0DA6;
    border-radius: 50%;
}

.fee-badge {
    background-color: rgba(100, 70, 166, 0.2);
    color: #6446A6;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
}

.amount-section {
    margin-top: 30px;
}

.amount-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.amount-header span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.available-text {
    color: rgba(255, 255, 255, 0.5) !important;
}

.amount-input-wrapper {
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 10px;
}

.amount-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.amount-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.currency-selector {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    cursor: pointer;
}

.currency-selector img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.currency-selector span {
    color: #fff;
    font-weight: 500;
    margin-right: 5px;
}

.amount-info {
    margin-bottom: 15px;
}

.amount-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.amount-limit {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.summary-section {
    color: #fff;
}

.summary-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.summary-item > span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.summary-value {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-value span {
    font-size: 16px;
    font-weight: 500;
}

.btc-value {
    color: #fff;
}

.busd-value {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px !important;
}

.positive-value {
    color: #4CD964;
    display: flex;
    align-items: center;
}

.positive-value i {
    margin-left: 5px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
    margin-bottom: 20px;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 4px;
    margin-right: 10px;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"]:checked::before {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
}

.terms-checkbox label {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #6446A6;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #7556B6;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .liquidity-farm-content {
        flex-direction: column;
    }
    
    .liquidity-farm-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .liquidity-farm-right {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .liquidity-header h1 {
        font-size: 36px;
    }
    
    .cover-decoration.left-planet {
        width: 150px;
        bottom: -30px;
    }
    
    .cover-decoration.astronaut-right {
        width: 100px;
    }
    
    .liquidity-farm-header {
        padding: 15px 20px;
    }
    
    .liquidity-farm-left,
    .liquidity-farm-right {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .liquidity-header {
        padding: 80px 0 120px;
    }

    .liquidity-header h1 {
        font-size: 32px;
    }
    
    .cover-decoration.left-planet {
        width: 120px;
        bottom: -25px;
    }
    
    .cover-decoration.astronaut-right {
        display: none; /* Hide astronaut in mobile view */
    }
    
    .liquidity-farm-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .amount-header {
        flex-direction: column;
        gap: 5px;
    }
    
    .amount-limit {
        flex-direction: column;
        gap: 5px;
    }
} 