/* ========================================
   Deposit Page Styles
   ======================================== */

/* Deposit Section */
.deposit-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;
}

/* Deposit Card */
.deposit-card {
    background: rgba(30, 40, 55, 0.95);
    border-radius: 10px;
    padding: 35px 50px;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.deposit-title {
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Styles */
.deposit-form {
    display: flex;
    flex-direction: column;
    gap: 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: 18px;
    font-weight: 500;
}

.amount-display .amount {
    color: #fff;
    font-size: 36px;
    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;
}

.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;
}

/* Depositor Name Input */
.depositor-group {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.depositor-group .form-label {
    white-space: nowrap;
}

.form-input {
    flex: 1;
    max-width: 350px;
    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[readonly] {
    background: rgba(255, 255, 255, 0.02);
    cursor: default;
}

/* 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 Deposit Page
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .deposit-section {
        margin-top: 60px;
        min-height: calc(100vh - 60px - 250px);
        padding: 40px 20px;
    }
    
    .deposit-card {
        padding: 35px 40px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .deposit-section {
        padding: 40px 15px;
    }
    
    .deposit-card {
        padding: 30px 25px;
        margin: 0 auto;
    }
    
    .deposit-title {
        font-size: 20px;
    }
    
    .amount-display .amount {
        font-size: 28px;
    }
    
    .amount-buttons {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .amount-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .depositor-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-input {
        max-width: 100%;
        width: 100%;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-submit,
    .btn-cancel {
        width: 100%;
        padding: 14px 30px;
    }
}

@media (max-width: 576px) {
    .deposit-section {
        padding: 40px 10px;
    }
    
    .deposit-card {
        padding: 25px 20px;
        margin: 0 auto;
    }
    
    .amount-display .amount {
        font-size: 24px;
    }
    
    .amount-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}
