/* ========================================
   USDTBOOSTER - Golden & Black Theme (BNB Inspired)
   ======================================== */
/* ========================================
   Steps/How It Works
   ======================================== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(36, 39, 46, 0.8);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(243, 186, 47, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    background: rgba(36, 39, 46, 0.9);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(243, 186, 47, 0.15);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(243, 186, 47, 0.3);
}

.step-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    /* Base font size adjustment */
    html {
        font-size: 14px;
    }
    
    /* Header adjustments */
    .app-header {
        padding: 0.5rem 1rem;
    }
    
    .app-logo .logo-text {
        font-size: 1.5rem;
    }
    
    /* Hero section */
    .hero-section h1 {
        font-size: 2rem !important;
        line-height: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-section p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Stats and cards */
    .stats-showcase-compact {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
    
    .stats-card-compact-horizontal {
        padding: 0.5rem !important;
    }
    
    .stats-icon-compact-horizontal {
        width: 1.5rem !important;
        height: 1.5rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Plans section */
    .plans-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 1rem !important;
    }
    
    .plan-card {
        padding: 1.25rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .plan-name {
        font-size: 1.25rem !important;
    }
    
    .plan-price {
        font-size: 1.75rem !important;
    }
    
    /* Steps section */
    .steps-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .step-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-content h3 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
}

/* Desktop specific adjustments */
@media (min-width: 1200px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   Investment Plans - Mobile Optimized
   ======================================== */
.plans-grid-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0.5rem;
    margin-bottom: 2rem;
}

.plan-card-mobile {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.8), rgba(10, 10, 10, 0.9));
    border: 2px solid rgba(0, 255, 157, 0.2);
    border-radius: 16px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-align: center;
}

.plan-card-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.05), rgba(0, 207, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plan-card-mobile:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 255, 157, 0.6);
    box-shadow: 0 15px 40px rgba(0, 255, 157, 0.2);
}

.plan-card-mobile:hover::before {
    opacity: 1;
}

.plan-card-mobile.featured-mobile {
    border-color: rgba(251, 191, 36, 0.5);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(10, 10, 10, 0.9));
}

.plan-card-mobile.featured-mobile:hover {
    border-color: rgba(251, 191, 36, 0.8);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

.plan-header-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.plan-name-mobile {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.plan-badge-mobile {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    align-self: center;
}

.plan-rate-mobile {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.plan-features-mobile {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-item-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #E0E0E0;
    font-size: 0.8rem;
}

.feature-item-mobile:last-child {
    margin-bottom: 0;
}

.feature-item-mobile i {
    color: #00FF9D;
    font-size: 0.75rem;
}

.plan-button-mobile {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.plan-button-mobile::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.plan-button-mobile:hover::before {
    width: 200px;
    height: 200px;
}

.plan-button-mobile span {
    position: relative;
    z-index: 1;
}

.featured-icon-mobile {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 12px;
    animation: iconFloat 3s ease-in-out infinite;
    z-index: 2;
}

/* Desktop view for plans */
@media (min-width: 768px) {
    .plans-grid-mobile {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        padding: 1rem;
    }
    
    .plan-card-mobile {
        padding: 1.5rem;
    }
    
    .plan-name-mobile {
        font-size: 1.3rem;
    }
    
    .plan-badge-mobile {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .plan-rate-mobile {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-item-mobile {
        font-size: 0.85rem;
        gap: 0.6rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-item-mobile i {
        font-size: 0.85rem;
    }
    
    .plan-button-mobile {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .featured-icon-mobile {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .plans-grid-mobile {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .plan-card-mobile {
        padding: 2rem;
    }
    
    .plan-name-mobile {
        font-size: 1.5rem;
    }
    
    .plan-rate-mobile {
        font-size: 3rem;
    }
    
    .feature-item-mobile {
        font-size: 0.9rem;
    }
    
    .plan-button-mobile {
        font-size: 1rem;
    }
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
/* Root Variables - Golden & Black Color Scheme */
:root {
    --primary-gold: #F3BA2F;
    --secondary-gold: #FCD535;
    --dark-gold: #D4A024;
    --accent-gold: #FFD700;
    
    --primary-black: #0B0E11;
    --secondary-black: #1A1D23;
    --tertiary-black: #24272E;
    --border-dark: #2D3139;
    
    --text-primary: #FFFFFF;
    --text-secondary: #B7BDC6;
    --text-muted: #707A8A;
    
    --success: #0ECB81;
    --danger: #F6465D;
    --warning: #FCD535;
    --info: #00D4FF;
    
    --shadow-gold: 0 0 30px rgba(243, 186, 47, 0.3);
    --shadow-gold-hover: 0 0 40px rgba(243, 186, 47, 0.5);
    --glow-gold: 0 0 20px rgba(243, 186, 47, 0.6);
}

/* ========================================
   Global Styles & Reset
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Particles Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(243, 186, 47, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(252, 213, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(243, 186, 47, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: particlesFloat 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(243, 186, 47, 0.03) 1px, transparent 1px),
        radial-gradient(circle, rgba(252, 213, 53, 0.02) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    pointer-events: none;
    z-index: 0;
    animation: particlesMove 60s linear infinite;
}

@keyframes particlesFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes particlesMove {
    0% {
        background-position: 0 0, 40px 40px;
    }
    100% {
        background-position: 50px 50px, 90px 90px;
    }
}

/* ========================================
   Header Styles
   ======================================== */
   
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 14, 17, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dark);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.app-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(243, 186, 47, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(243, 186, 47, 0.9));
    }
}

.neon-logo {
    filter: drop-shadow(0 0 10px rgba(243, 186, 47, 0.7));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.wallet-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.wallet-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.wallet-btn:hover::before {
    left: 100%;
}

.wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-hover);
}



/* ========================================
   Container & Layout
   ======================================== */
/* Center align hero section content */
#home {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

/* Stats cards layout */
.glass-card {
    background: rgba(26, 29, 35, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.card-content {
    
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0.25rem 0;
}

.card-subtext {
    color: var(--text-muted);
    font-size: 1.85rem;
}
.custom-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 280px;
    max-width: 400px;
}

.custom-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-notification i {
    font-size: 20px;
}

.custom-notification.success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.custom-notification.error {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.custom-notification.warning {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

.custom-notification.info {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .custom-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .custom-notification i {
        font-size: 18px;
    }
}
/* Center align buttons */
.flex.justify-center {
    justify-content: center !important;
}

/* Fix for checkboxes in investment plans */
.plan-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.plan-feature i {
    margin-right: 0.75rem;
    color: var(--primary-gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.plan-feature-text {
    text-align: left;
    flex-grow: 1;
}

/* Stats grid layout */
.grid.grid-cols-1.md\:grid-cols-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid.grid-cols-1.md\:grid-cols-3 {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    /* Make TVL card bigger */
    .glass-card:first-child {
        grid-row: span 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .card-value {
        font-size: 2rem;
    }
}

/* Center align hero buttons */
.flex.flex-col.sm\:flex-row.gap-2 {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Ensure text alignment in hero section */
.text-center {
    text-align: center !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}
.app-container {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-mobile {
    max-width: 100%;
    padding: 0 0.75rem;
}

.section {
    padding: 4rem 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(243, 186, 47, 0.1), transparent);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

/* ========================================
   Trust Indicators (Compact)
   ======================================== */
.trust-indicators-compact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-indicator-compact {
    background: rgba(26, 29, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
}

.trust-indicator-compact:hover {
    background: rgba(243, 186, 47, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.trust-icon-compact {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.trust-text-compact {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   Stats Showcase
   ======================================== */
.stats-showcase-compact {
    margin: 2rem 0;
}

.stats-horizontal {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stats-card-compact-horizontal {
    background: rgba(26, 29, 35, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 150px;
}

.stats-card-compact-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 186, 47, 0.1), transparent);
    transition: left 0.6s ease;
}

.stats-card-compact-horizontal:hover::before {
    left: 100%;
}

.stats-card-compact-horizontal:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-gold);
}

.stats-icon-compact-horizontal {
    font-size: 2rem;
    color: var(--primary-gold);
}

.stats-number-compact-horizontal {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.stats-label-compact-horizontal {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-glow-compact-horizontal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stats-card-compact-horizontal:hover .stats-glow-compact-horizontal {
    opacity: 1;
}

/* ========================================
   Gradient Buttons
   ======================================== */
.gradient-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.gradient-primary:hover::before {
    left: 100%;
}

.gradient-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-gold-hover);
}

.glass {
    background: rgba(26, 29, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.glass:hover {
    background: rgba(243, 186, 47, 0.1);
    border-color: var(--primary-gold);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ========================================
   Cards
   ======================================== */
.section-card {
    background: rgba(26, 29, 35, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    animation: borderShine 3s linear infinite;
}

@keyframes borderShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.section-card:hover {
    border-color: rgba(243, 186, 47, 0.3);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   Steps/How It Works
   ======================================== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: rgba(36, 39, 46, 0.5);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 186, 47, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(243, 186, 47, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(243, 186, 47, 0.9);
    }
}

.step-content h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Investment Plans
   ======================================== */
.plans-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-bottom: 60px;
        }

        @media (max-width: 768px) {
            .plans-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        .plan-card {
            background: linear-gradient(135deg, rgba(13, 27, 42, 0.8), rgba(10, 10, 10, 0.9));
            border: 2px solid rgba(0, 255, 157, 0.2);
            border-radius: 20px;
            padding: 32px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 255, 157, 0.05), rgba(0, 207, 255, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .plan-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(0, 255, 157, 0.6);
            box-shadow: 0 20px 60px rgba(0, 255, 157, 0.2);
        }

        .plan-card:hover::before {
            opacity: 1;
        }

        .plan-card.featured {
            border-color: rgba(251, 191, 36, 0.5);
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(10, 10, 10, 0.9));
        }

        .plan-card.featured:hover {
            border-color: rgba(251, 191, 36, 0.8);
            box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
        }

        .plan-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #FFFFFF;
        }

        .plan-badge {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-starter {
            background: rgba(251, 191, 36, 0.2);
            color: #fbbf24;
        }

        .badge-popular {
            background: rgba(59, 130, 246, 0.2);
            color: #3b82f6;
        }

        .badge-recommended {
            background: rgba(168, 85, 247, 0.2);
            color: #a855f7;
        }

        .badge-featured {
            background: rgba(251, 191, 36, 0.3);
            color: #fbbf24;
            animation: badgePulse 2s ease infinite;
        }

        @keyframes badgePulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .badge-exclusive {
            background: rgba(236, 72, 153, 0.2);
            color: #ec4899;
        }

        .badge-vip {
            background: rgba(6, 182, 212, 0.2);
            color: #06b6d4;
        }

        .plan-rate-container {
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .plan-rate {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 8px;
        }

        .rate-starter { color: #fbbf24; }
        .rate-popular { color: #3b82f6; }
        .rate-recommended { color: #a855f7; }
        .rate-featured { 
            background: linear-gradient(135deg, #fbbf24, #fcd34d);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .rate-exclusive { color: #ec4899; }
        .rate-vip { color: #06b6d4; }

        .plan-rate-label {
            font-size: 0.875rem;
            color: #B0B0B0;
        }

        .plan-features {
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            color: #E0E0E0;
        }

        .feature-item:last-child {
            margin-bottom: 0;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            color: #00FF9D;
            flex-shrink: 0;
        }

        .feature-text {
            font-size: 0.95rem;
        }

        .plan-button {
            width: 100%;
            padding: 16px 24px;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .plan-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }

        .plan-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .plan-button span {
            position: relative;
            z-index: 1;
        }

        .btn-starter {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #000000;
        }

        .btn-popular {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #FFFFFF;
        }

        .btn-recommended {
            background: linear-gradient(135deg, #a855f7, #7c3aed);
            color: #FFFFFF;
        }

        .btn-featured {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #000000;
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
        }

        .btn-exclusive {
            background: linear-gradient(135deg, #ec4899, #db2777);
            color: #FFFFFF;
        }

        .btn-vip {
            background: linear-gradient(135deg, #06b6d4, #0891b2);
            color: #FFFFFF;
        }

        .plan-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .disclaimer {
            text-align: center;
            color: #808080;
            font-size: 0.875rem;
            line-height: 1.8;
        }

        .featured-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 32px;
            height: 32px;
            background: #fbbf24;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            font-size: 16px;
            animation: iconFloat 3s ease-in-out infinite;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .plan-card {
                padding: 24px;
            }

            .plan-rate {
                font-size: 2.5rem;
            }
        }

[data-plan-id]:nth-child(1) { animation-delay: 0.1s; }
[data-plan-id]:nth-child(2) { animation-delay: 0.2s; }
[data-plan-id]:nth-child(3) { animation-delay: 0.3s; }
[data-plan-id]:nth-child(4) { animation-delay: 0.4s; }
[data-plan-id]:nth-child(5) { animation-delay: 0.5s; }
[data-plan-id]:nth-child(6) { animation-delay: 0.6s; }

/* Investment Plan Cards - BNB Style */
#investment-plans .glass {
    background: rgba(11, 14, 17, 0.8);
    border: 1px solid rgba(243, 186, 47, 0.1);
}

#investment-plans h2,
#investment-plans h3,
#investment-plans h4 {
    color: var(--text-primary);
}

/* Security Section Icons */
.feature-icon,
.dashboard-icon-compact {
    background: linear-gradient(135deg, #F3BA2F, #FCD535);
}

/* Golden Icon Boxes - For Security & Features */
.golden-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(243, 186, 47, 0.4);
}

/* Stat Cards in Hero - BNB Style */
.hero-stat-card {
    background: rgba(26, 29, 35, 0.8);
    border: 1px solid rgba(243, 186, 47, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trust Badge Pills */
.trust-badge-pill {
    background: rgba(26, 29, 35, 0.9);
    border: 1px solid rgba(243, 186, 47, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-badge-pill:hover {
    background: rgba(243, 186, 47, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.trust-badge-icon {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* ========================================
   Calculator
   ======================================== */
.calculator-card {
    background: rgba(26, 29, 35, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem;
    background: rgba(36, 39, 46, 0.8);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(243, 186, 47, 0.1);
}

.input-suffix {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}

.calculator-results {
    background: rgba(36, 39, 46, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-dark);
}

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

.result-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.result-value {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.calculator-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-gold);
}

.calculator-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-hover);
}

/* ========================================
   Dashboard
   ======================================== */
.dashboard-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-card-compact {
    background: rgba(26, 29, 35, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dashboard-card-compact:hover::before {
    transform: scaleX(1);
}

.dashboard-card-compact:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.dashboard-icon-compact {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
    box-shadow: var(--glow-gold);
}

.dashboard-label-compact {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-value-compact {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ========================================
   Referral Section
   ======================================== */
.referral-mobile {
    background: rgba(26, 29, 35, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2rem;
}

.referral-link-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.referral-link {
    flex: 1;
    padding: 1rem;
    background: rgba(36, 39, 46, 0.8);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
}

.copy-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-hover);
}

.referral-table-container {
    overflow-x: auto;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.referral-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(36, 39, 46, 0.5);
}

.referral-table th {
    background: rgba(243, 186, 47, 0.1);
    color: var(--primary-gold);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.referral-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-secondary);
}

.referral-table tbody tr {
    transition: all 0.3s ease;
}

.referral-table tbody tr:hover {
    background: rgba(243, 186, 47, 0.05);
}

/* ========================================
   Features Section
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(36, 39, 46, 0.5);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(243, 186, 47, 0.1), transparent);
    transition: all 0.5s ease;
}

.feature-card:hover::before {
    top: -50%;
    left: -50%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-gold);
}

.feature-content h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(36, 39, 46, 0.5);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(243, 186, 47, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-icon {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    text-decoration: underline;
    color: var(--secondary-gold);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: rgba(11, 14, 17, 0.95);
    border-top: 1px solid var(--border-dark);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-title {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contract-info {
    background: rgba(36, 39, 46, 0.5);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 1rem;
}

.contract-address {
    color: var(--text-secondary);
    font-size: 0.85rem;
    word-break: break-all;
    margin-bottom: 0.75rem;
    font-family: 'Courier New', monospace;
}

.contract-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contract-link:hover {
    color: var(--secondary-gold);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* ========================================
   Mobile Bottom Navigation
   ======================================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 14, 17, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-dark);
    display: flex;
    justify-content: space-around;
    padding: 0.75rem 0;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    transition: width 0.3s ease;
}

.nav-item.active::before,
.nav-item:hover::before {
    width: 80%;
}

.nav-item.active {
    color: var(--primary-gold);
}

.nav-item:hover {
    color: var(--secondary-gold);
    transform: translateY(-3px);
}

.nav-icon {
    font-size: 1.3rem;
}

.nav-label {
    font-size: 0.7rem;
    font-weight: 500;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-green-400 {
    color: var(--primary-gold) !important;
}

.text-purple-400 {
    color: var(--secondary-gold) !important;
}

.text-blue-400 {
    color: var(--info) !important;
}

.text-yellow-400 {
    color: var(--warning) !important;
}
.text-white-400 {
    color: #FFFFFF !important;
}

.text-gray-400 {
    color: var(--text-secondary) !important;
}



.bg-gradient-to-r {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    -webkit-text-fill-color: transparent;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   Spacing Utilities
   ======================================== */
.pt-14 { padding-top: 3.5rem; }
.pb-2 { padding-bottom: 0.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .app-container {
        padding-bottom: 80px;
    }

    .header-content {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .wallet-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .stats-horizontal {
        gap: 0.75rem;
    }

    .stats-card-compact-horizontal {
        padding: 1rem;
        min-width: 120px;
    }

    .stats-number-compact-horizontal {
        font-size: 1.4rem;
    }

    .stats-label-compact-horizontal {
        font-size: 0.75rem;
    }

    .trust-indicators-compact {
        gap: 0.5rem;
    }

    .trust-indicator-compact {
        padding: 0.5rem 0.75rem;
    }

    .trust-text-compact {
        font-size: 0.8rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .dashboard-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .dashboard-card-compact {
        padding: 1rem;
    }

    .dashboard-value-compact {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .referral-link-container {
        flex-direction: column;
    }

    .calculator-card {
        padding: 1.5rem;
    }
}

@media (min-width: 640px) {
    .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
    .sm\:text-4xl { font-size: 2.25rem; }
    .sm\:text-xl { font-size: 1.25rem; }
    .sm\:gap-4 { gap: 1rem; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:w-auto { width: auto; }
    .sm\:text-base { font-size: 1rem; }
    .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
}

@media (min-width: 768px) {
    .md\:text-6xl { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
    .lg\:p-8 { padding: 2rem; }
}

/* ========================================
   Hover Effects & Animations
   ======================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:bg-gray-800:hover {
    background-color: rgba(36, 39, 46, 0.8);
}

/* ========================================
   Loading & Transition States
   ======================================== */
.transition-all {
    transition: all 0.3s ease;
}

.transition-transform {
    transition: transform 0.3s ease;
}

.transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease;
}

.duration-200 {
    transition-duration: 0.2s;
}

/* ========================================
   Additional Golden Accents
   ======================================== */
.golden-glow {
    box-shadow: 0 0 20px rgba(243, 186, 47, 0.4),
                0 0 40px rgba(243, 186, 47, 0.2);
}

.golden-border {
    border: 1px solid rgba(243, 186, 47, 0.3);
}

.golden-text {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Referral Section
   ======================================== */
.referral-card {
    background: rgba(26, 29, 35, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.referral-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.referral-link-container {
    display: flex;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.referral-link-container:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(243, 186, 47, 0.3);
}

.referral-link {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(36, 39, 46, 0.5);
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
    transform: translateY(-1px);
}

.referral-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.level-card {
    background: rgba(26, 29, 35, 0.7);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.level-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.level-card:hover::before {
    opacity: 1;
}

.level-percentage {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.level-number {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.level-number span {
    font-size: 0.8em;
    opacity: 0.8;
}

.level-referrals {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .referral-card {
        padding: 1.5rem 1rem;
    }
    
    .referral-levels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .level-card {
        padding: 1rem 0.5rem;
    }
    
    .level-percentage {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .referral-levels {
        grid-template-columns: 1fr;
    }
    
    .referral-link-container {
        flex-direction: column;
    }
    
    .referral-link {
        padding: 0.75rem 1rem;
        text-align: center;
    }
    
    .copy-btn {
        padding: 0.75rem;
        justify-content: center;
    }
}

/* ========================================
   Security Section
   ======================================== */
.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.security-card {
    background: rgba(26, 29, 35, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.audit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.audit-icon {
    width: 48px;
    height: 48px;
    background: rgba(243, 186, 47, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.audit-info h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-primary);
}

.audit-subtitle {
    color: var(--text-secondary);
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
}

.audit-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.audit-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.audit-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(26, 29, 35, 0.5);
    border-radius: 12px;
    flex: 1;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.audit-stat:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(243, 186, 47, 0.1);
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.audit-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.security-feature {
    background: rgba(26, 29, 35, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.security-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    /* margin: 0 auto 1rem; */
    background: rgba(243, 186, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .audit-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .audit-stat {
        width: 100%;
    }
}

/* ========================================
   Scrollbar Styling
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

/* ========================================
   Selection Styling
   ======================================== */
::selection {
    background: rgba(243, 186, 47, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(243, 186, 47, 0.3);
    color: var(--text-primary);
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .mobile-bottom-nav,
    .app-header,
    .footer {
        display: none;
    }
    
    body::before,
    body::after {
        display: none;
    }
}