/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Header Styles */
.header-main {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    color: #f7931a;
    font-size: 1.8rem;
}

/* Language Selector */
.language-selector .dropdown-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.language-selector .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #f7931a;
}

.language-selector .dropdown-menu {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
}

.language-selector .dropdown-item {
    color: #ffffff;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.language-selector .dropdown-item:hover {
    background: rgba(247, 147, 26, 0.2);
    color: #f7931a;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f7931a" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f7931a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f7931a;
}

.stat-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    background: linear-gradient(135deg, #f7931a 0%, #ff6b35 100%);
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.4);
}

/* Crypto Card */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.crypto-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.crypto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.crypto-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.crypto-card .card-header i {
    font-size: 2rem;
    color: #f7931a;
    margin-right: 15px;
}

.crypto-card .card-header span {
    font-size: 1.2rem;
    font-weight: 600;
}

.balance {
    margin-bottom: 20px;
}

.balance-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.balance-amount {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
}

.bonus-indicator {
    background: rgba(247, 147, 26, 0.1);
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.bonus-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f7931a;
}

/* Bonus Plans Section */
.bonus-plans-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Bonus Plan Cards */
.bonus-plan-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-plan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(247, 147, 26, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bonus-plan-card.popular {
    border-color: #f7931a;
    background: rgba(247, 147, 26, 0.1);
}

.bonus-plan-card.premium {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.popular-badge,
.premium-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #f7931a 0%, #ff6b35 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: rgba(247, 147, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(247, 147, 26, 0.3);
}

.plan-icon i {
    font-size: 2rem;
    color: #f7931a;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.plan-deposit {
    margin-bottom: 20px;
}

.deposit-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f7931a;
    line-height: 1;
}

.deposit-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-amount {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(247, 147, 26, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(247, 147, 26, 0.2);
}

.bonus-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f7931a;
    margin-bottom: 5px;
}

.bonus-percentage {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.plan-features li i {
    color: #f7931a;
    margin-right: 10px;
    font-size: 0.9rem;
}

.select-plan-btn {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.select-plan-btn.btn-primary {
    background: linear-gradient(135deg, #f7931a 0%, #ff6b35 100%);
    border: none;
}

.select-plan-btn.btn-outline-primary {
    border: 2px solid #f7931a;
    color: #f7931a;
    background: transparent;
}

.select-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.4);
}

/* Modal Styles */
.modal-content {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    color: #ffffff;
    font-weight: 600;
}

.btn-close {
    background: none;
    border: none;
    color: #ffffff;
    opacity: 0.7;
}

.selected-plan-info {
    background: rgba(247, 147, 26, 0.1);
    border: 1px solid rgba(247, 147, 26, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.plan-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.plan-deposit-amount,
.plan-bonus-amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f7931a;
}

.form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    padding: 12px 15px;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f7931a;
    box-shadow: 0 0 0 0.2rem rgba(247, 147, 26, 0.25);
    color: #ffffff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Fixed styles for select dropdown options */
.form-select option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 10px;
}

.form-select option:hover,
.form-select option:focus {
    background: #f7931a;
    color: #ffffff;
}



/* Footer */
.footer-section {
    background: #0f0f23;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-brand h5 i {
    color: #f7931a;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f7931a;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-disclaimer {
    text-align: right;
}

.footer-disclaimer small {
    color: rgba(255, 107, 53, 0.8);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .crypto-card {
        margin-top: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-disclaimer {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .bonus-plans-section {
        padding: 60px 0;
    }
    
    .bonus-plan-card {
        margin-bottom: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.crypto-card,
.bonus-plan-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f7931a;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== DEPOSIT PAGE STYLES ===== */

/* Deposit Section */
.deposit-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 100%;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step.completed::after,
.step.active::after {
    background: #f7931a;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.step.completed .step-icon {
    background: #f7931a;
    border-color: #f7931a;
}

.step.active .step-icon {
    background: rgba(247, 147, 26, 0.2);
    border-color: #f7931a;
    box-shadow: 0 0 20px rgba(247, 147, 26, 0.4);
}

.step-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.step.completed .step-icon i {
    color: #ffffff;
}

.step.active .step-icon i {
    color: #f7931a;
}

.step-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.step.completed .step-text,
.step.active .step-text {
    color: #f7931a;
    font-weight: 600;
}

/* Deposit Header */
.deposit-header {
    margin-bottom: 50px;
}

.deposit-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f7931a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deposit-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Plan Summary Card */
.plan-summary-card {
    background: rgba(247, 147, 26, 0.1);
    border: 1px solid rgba(247, 147, 26, 0.3);
    border-radius: 15px;
    padding: 25px;
    max-width: 400px;
    margin: 0 auto;
}

.summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-info {
    display: flex;
    flex-direction: column;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.plan-deposit {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f7931a;
}

.bonus-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.bonus-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f7931a;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 40px;
}

.payment-methods-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

/* Payment Tabs */
.payment-tabs {
    margin-bottom: 30px;
}

.payment-tabs .nav-tabs {
    border: none;
    justify-content: center;
}

.payment-tabs .nav-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.payment-tabs .nav-link:hover {
    background: rgba(247, 147, 26, 0.1);
    border-color: rgba(247, 147, 26, 0.3);
    color: #f7931a;
}

.payment-tabs .nav-link.active {
    background: rgba(247, 147, 26, 0.2);
    border-color: #f7931a;
    color: #f7931a;
}

/* Payment Form Card */
.payment-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
}

/* Card Input Styling */
.card-input-group {
    position: relative;
}

.card-input-group .form-control {
    padding-right: 120px;
}

.card-brands {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}

.card-brand {
    height: 25px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.card-brand:hover {
    opacity: 1;
}

/* Deposit Button */
.deposit-btn {
    width: 100%;
    background: linear-gradient(135deg, #f7931a 0%, #ff6b35 100%);
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.deposit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 147, 26, 0.4);
}

/* Crypto Payment Section */
.crypto-payment-section {
    margin-top: 20px;
}

.crypto-instruction {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    text-align: center;
}

/* Crypto Options */
.crypto-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.crypto-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.crypto-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(247, 147, 26, 0.3);
    transform: translateY(-2px);
}

.crypto-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.crypto-icon {
    width: 50px;
    height: 50px;
    background: rgba(247, 147, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.8rem;
}

.crypto-icon i {
    color: #f7931a;
}

.crypto-icon.ethereum i {
    color: #627eea;
}

.crypto-icon.usdt {
    background: rgba(38, 160, 95, 0.2);
}

.crypto-icon.usdt i {
    color: #26a05f;
}

.crypto-icon.bnb {
    background: rgba(243, 186, 47, 0.2);
}

.crypto-icon.ada {
    background: rgba(0, 51, 173, 0.2);
}

.crypto-icon.ltc {
    background: rgba(190, 190, 190, 0.2);
}

.bnb-icon,
.ada-icon,
.ltc-icon {
    color: #f7931a;
    font-size: 1.2rem;
    font-weight: 700;
}

.crypto-details {
    display: flex;
    flex-direction: column;
}

.crypto-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
}

.crypto-symbol {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.crypto-network {
    margin-bottom: 15px;
}

.network-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 5px;
}

.network-name {
    font-size: 0.9rem;
    color: #f7931a;
    font-weight: 500;
}

.select-crypto-btn {
    width: 100%;
    border-color: #f7931a;
    color: #f7931a;
    font-weight: 500;
    transition: all 0.3s ease;
}

.select-crypto-btn:hover {
    background: #f7931a;
    border-color: #f7931a;
    color: #ffffff;
}

/* Security Notice */
.security-notice {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.security-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.security-content i {
    font-size: 2rem;
    color: #22c55e;
}

.security-text h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

.security-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

/* Crypto Payment Modal */
.crypto-payment-details {
    color: #ffffff;
}

.crypto-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.crypto-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(247, 147, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 2.5rem;
}

.crypto-icon-large i {
    color: #f7931a;
}

.crypto-icon-large.ethereum i {
    color: #627eea;
}

.crypto-icon-large.usdt {
    background: rgba(38, 160, 95, 0.2);
}

.crypto-icon-large.usdt i {
    color: #26a05f;
}

.crypto-icon-large.bnb {
    background: rgba(243, 186, 47, 0.2);
}

.crypto-icon-large.ada {
    background: rgba(0, 51, 173, 0.2);
}

.crypto-icon-large.ltc {
    background: rgba(190, 190, 190, 0.2);
}

.crypto-info-text h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

.crypto-info-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Payment Instructions */
.payment-instructions {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.amount-section label,
.address-section label,
.qr-section label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amount-display {
    background: rgba(247, 147, 26, 0.1);
    border: 1px solid rgba(247, 147, 26, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.crypto-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f7931a;
    margin-bottom: 5px;
}

.usd-equivalent {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.address-container {
    display: flex;
    gap: 10px;
}

.address-input {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.copy-btn {
    border-color: #f7931a;
    color: #f7931a;
    padding: 0 15px;
}

.copy-btn:hover,
.copy-btn.copied {
    background: #f7931a;
    border-color: #f7931a;
    color: #ffffff;
}

.qr-code-container {
    display: flex;
    justify-content: center;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.qr-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.qr-placeholder p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Important Notice */
.important-notice {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.notice-content {
    display: flex;
    gap: 15px;
}

.notice-content i {
    font-size: 1.5rem;
    color: #ef4444;
    margin-top: 2px;
}

.notice-text strong {
    color: #ef4444;
    font-weight: 600;
}

.notice-text ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.notice-text li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* Responsive Design for Deposit Page */
@media (max-width: 768px) {
    .deposit-title {
        font-size: 2.2rem;
    }
    
    .progress-steps {
        gap: 30px;
    }
    
    .step::after {
        width: 30px;
    }
    
    .crypto-options {
        grid-template-columns: 1fr;
    }
    
    .summary-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .bonus-info {
        text-align: center;
    }
    
    .address-container {
        flex-direction: column;
    }
    
    .copy-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .deposit-section {
        padding: 100px 0 60px;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step::after {
        display: none;
    }
    
    .payment-tabs .nav-link {
        margin: 5px;
        padding: 12px 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
}

/* ===== SUCCESS PAGE STYLES ===== */

/* Success Section */
.success-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
}

/* Success Animation */
.success-animation {
    margin-bottom: 40px;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: scale(0);
    animation: checkmarkAppear 0.6s ease-out 0.5s forwards;
}

.success-checkmark i {
    font-size: 3rem;
    color: #ffffff;
}

@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-checkmark.animated {
    animation: checkmarkAppear 0.6s ease-out forwards;
}

/* Success Content */
.success-content {
    text-align: center;
}

.success-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Transaction Summary */
.transaction-summary {
    margin-bottom: 50px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.summary-card h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.summary-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    border-top: 2px solid rgba(247, 147, 26, 0.3);
    padding-top: 20px;
    margin-top: 10px;
}

.summary-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.summary-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.summary-value.bonus-highlight {
    color: #22c55e;
}

.summary-item.total .summary-value {
    color: #f7931a;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Next Steps */
.next-steps {
    margin-bottom: 50px;
}

.next-steps h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.step-card .step-icon {
    width: 60px;
    height: 60px;
    background: rgba(247, 147, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step-card .step-icon i {
    font-size: 1.5rem;
    color: #f7931a;
}

.step-card h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Action Buttons */
.action-buttons {
    margin-bottom: 50px;
}

.action-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px;
}

/* Support Information */
.support-info {
    max-width: 500px;
    margin: 0 auto;
}

.support-card {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.support-card i {
    font-size: 2.5rem;
    color: #3b82f6;
}

.support-text h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.support-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.support-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Responsive Design for Success Page */
@media (max-width: 768px) {
    .success-title {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 5px 0;
    }
    
    .support-card {
        flex-direction: column;
        text-align: center;
    }
    
    .summary-grid {
        gap: 10px;
    }
    
    .summary-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* Additional Styles for PHP Version */

/* Deposit Page Styles */
.deposit-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.step.completed .step-icon {
    background: #f7931a;
    border-color: #f7931a;
}

.step.completed .step-icon i {
    color: #ffffff;
}

.step.active .step-icon {
    background: rgba(247, 147, 26, 0.2);
    border-color: #f7931a;
    box-shadow: 0 0 20px rgba(247, 147, 26, 0.4);
}

.step.active .step-icon i {
    color: #f7931a;
}

.step-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.step.completed .step-text,
.step.active .step-text {
    color: #ffffff;
    font-weight: 600;
}

/* Payment Form Styles */
.payment-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}

.card-input-group {
    position: relative;
}

.card-brands {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
}

.card-brand {
    height: 20px;
    opacity: 0.7;
}

.payment-summary {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row.total {
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.1rem;
}

/* Crypto Payment Styles */
.crypto-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.crypto-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f7931a;
}

.crypto-icon {
    font-size: 2.5rem;
    color: #f7931a;
    margin-bottom: 15px;
}

.crypto-info h5 {
    margin-bottom: 5px;
    color: #ffffff;
}

.crypto-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.crypto-address {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.crypto-address input {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

/* Success Page Styles */
.success-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.success-content {
    animation: fadeInUp 0.8s ease-out;
}

.success-icon {
    font-size: 5rem;
    color: #28a745;
    animation: bounceIn 1s ease-out;
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.success-message {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.success-summary-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.summary-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-header h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.summary-details {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.detail-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row.total {
    margin-top: 15px;
    padding-top: 20px;
    font-size: 1.2rem;
}

.detail-label {
    color: rgba(255, 255, 255, 0.8);
}

.detail-value {
    color: #ffffff;
    font-weight: 600;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-info {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.info-item {
    text-align: center;
    padding: 20px;
}

.info-item i {
    font-size: 2rem;
    color: #f7931a;
    margin-bottom: 15px;
}

.info-item h6 {
    color: #ffffff;
    margin-bottom: 10px;
}

.info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Footer Styles */
.footer-section {
    background: rgba(26, 26, 46, 0.8);
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Notification Styles */
.alert {
    border: none;
    border-radius: 10px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #ffffff;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ffffff;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .progress-steps {
        gap: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .success-icon {
        font-size: 3.5rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .payment-form-card {
        padding: 20px;
    }
    
    .crypto-address {
        flex-direction: column;
    }
}