/* ========================================
   Withdraw Page Styles
   ======================================== */

/* Withdraw Section */
.withdraw-section {
    margin-top: 120px;
    min-height: calc(100vh - 120px - 250px);
    padding: 60px 0;
    background: 
        linear-gradient(180deg, rgba(10, 15, 25, 0.85) 0%, rgba(15, 20, 30, 0.9) 100%),
        url('images/Casino_coin.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Withdraw Card */
.withdraw-card {
    background: rgba(30, 40, 55, 0.95);
    border-radius: 10px;
    padding: 35px 50px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.withdraw-title {
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Styles */
.withdraw-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Balance Row */
.balance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(212, 166, 65, 0.15);
    border-radius: 5px;
    border-left: 3px solid #d4a641;
}

.balance-label {
    color: #aaa;
    font-size: 14px;
}

.balance-value {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

/* Amount Section */
.amount-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.form-label {
    color: #aaa;
    font-size: 14px;
    font-weight: 500;
}

.form-label .required {
    color: #e74c3c;
    margin-left: 2px;
}

/* Amount Display */
.amount-display {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    justify-content: center;
}

.amount-display .currency {
    color: #888;
    font-size: 16px;
    font-weight: 500;
}

.amount-display .amount {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}

.form-helper {
    color: #666;
    font-size: 12px;
    text-align: center;
}

/* Amount Buttons */
.amount-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin-top: 15px;
}

.amount-btn {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid #444;
    border-radius: 20px;
    color: #888;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.amount-btn:hover {
    border-color: #4a90e2;
    color: #4a90e2;
}

.amount-btn.active {
    background: linear-gradient(90deg, #1a3a5f 0%, #2a4a6e 100%);
    border-color: #4a90e2;
    color: #fff;
}

/* Bank Info Section */
.bank-info-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-subtitle {
    color: #4a90e2;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-label {
    color: #888;
    font-size: 14px;
    min-width: 100px;
    flex-shrink: 0;
}

.form-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #3a4a5f;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #4a90e2;
}

.form-input::placeholder {
    color: #666;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-submit,
.btn-cancel {
    padding: 14px 50px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-submit {
    background: linear-gradient(90deg, #1a3a5f 0%, #2a4a6e 100%);
    color: #fff;
}

.btn-submit:hover {
    background: linear-gradient(90deg, #2a4a6e 0%, #3a5a7e 100%);
}

.btn-cancel {
    background: linear-gradient(90deg, #c9a227 0%, #d4a641 100%);
    color: #000;
}

.btn-cancel:hover {
    background: linear-gradient(90deg, #d9b237 0%, #e4b651 100%);
}

/* ========================================
   Responsive Design for Withdraw Page
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .withdraw-section {
        margin-top: 60px;
        min-height: calc(100vh - 60px - 250px);
        padding: 40px 20px;
    }
    
    .withdraw-card {
        padding: 35px 40px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .withdraw-section {
        padding: 40px 15px;
    }
    
    .withdraw-card {
        padding: 30px 25px;
        margin: 0 auto;
    }
    
    .withdraw-title {
        font-size: 20px;
    }
    
    .balance-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .amount-section {
        padding: 20px 15px;
    }
    
    .amount-display .amount {
        font-size: 26px;
    }
    
    .amount-buttons {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .amount-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .info-label {
        min-width: auto;
    }
    
    .form-input {
        width: 100%;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-submit,
    .btn-cancel {
        width: 100%;
        padding: 14px 30px;
    }
}

@media (max-width: 576px) {
    .withdraw-section {
        padding: 40px 10px;
    }
    
    .withdraw-card {
        padding: 25px 20px;
        margin: 0 auto;
    }
    
    .amount-display .amount {
        font-size: 22px;
    }
    
    .amount-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}
