/* Combined BNBCapital + StakeMint Styles */

:root {
    /* CSS Variables - Neon Dark Tech-Futuristic Theme */
    --primary: #0D1B2A;
    --primary-dark: #0A0A0A;
    --secondary: #7A00FF;
    --secondary-light: #C400FF;
    --accent: #00FF9D;
    --accent-blue: #00CFFF;
    --green-400: #00FF9D;
    --purple-400: #7A00FF;
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-light: #B0B0B0;
    --text-muted: #808080;
    --bg-primary: #0A0A0A;
    --bg-secondary: #0D1B2A;
    --bg-card: rgba(13, 27, 42, 0.8);
    --bg-glass: rgba(13, 27, 42, 0.6);
    --border-light: rgba(0, 255, 157, 0.2);
    --border-dark: rgba(0, 255, 157, 0.4);
    --border-neon: rgba(0, 255, 157, 0.6);
    --shadow-primary: 0 0 30px rgba(0, 255, 157, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-neon: 0 0 20px rgba(0, 255, 157, 0.5);
    --shadow-purple: 0 0 20px rgba(122, 0, 255, 0.4);
    --shadow-blue: 0 0 20px rgba(0, 207, 255, 0.4);
    --gradient-primary: linear-gradient(135deg, #00FF9D, #00CFFF);
    --gradient-secondary: linear-gradient(135deg, #7A00FF, #C400FF);
    --gradient-accent: linear-gradient(135deg, #0D1B2A, #0A0A0A);
    --gradient-neon: linear-gradient(45deg, #00FF9D, #00CFFF, #7A00FF);
    --gradient-bg: linear-gradient(135deg, #0A0A0A 0%, #0D1B2A 50%, #0A0A0A 100%);
    
    /* Neon Color Palette */
    --neon-green: #00FF9D;
    --neon-blue: #00CFFF;
    --neon-purple: #7A00FF;
    --neon-pink: #C400FF;
    --dark-navy: #0D1B2A;
    --near-black: #0A0A0A;
}

* {
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--gradient-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(122, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 207, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}
/* BNBCapital Header Styles */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* .glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
} */

/* Neon Effects */
.neon-logo {
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.5));
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from { filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(0, 255, 157, 0.8)); }
}

.neon-text {
    text-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 15px currentColor;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 15px currentColor; }
    to { text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor; }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    height: 64px;
    position: relative;
    overflow: hidden;
}

.header-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    pointer-events: none;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.logo-icon {
    width: 40px;
    height: 40px;
    /* Remove broken image reference - using SVG logo instead */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.lang-btn, .wallet-btn, .hamburger-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wallet-btn.connected {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-primary);
}

/* Side Menu Styles */
.side-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border);
    z-index: 2001;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.side-menu.active {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
}

.menu-overlay.active {
    display: block;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.menu-section {
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.menu-section-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin: 0 -12px;
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-item-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.menu-item-text {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}

.menu-item-badge {
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
}

.menu-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.menu-stat {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.menu-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.menu-stat-label {
    font-size: 11px;
    color: var(--text-secondary);
}

.menu-footer {
    padding: 20px;
    text-align: center;
}

.menu-footer-text {
    font-size: 12px;
    color: var(--text-secondary);
}

.menu-version {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

/* Main Container */
.app-container {
    padding-top: 24px;
    padding-bottom: 80px; /* Space for mobile bottom nav */
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: var(--bg-primary);
}

/* Hero Section */
.hero-section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-primary);
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-primary);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGradient 4s ease infinite;
}

@keyframes titleGradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicator {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-primary);
}

.trust-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

/* Compact Trust Indicators - Smaller and side by side in single row */
.trust-indicators-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicator-compact {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 60px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.trust-indicator-compact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary);
}

.trust-icon-compact {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

.trust-text-compact {
    font-size: 9px;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.hero-stat {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 80px;
}

.hero-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-primary);
}

.hero-stat-value {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-dark);
    border: none;
    box-shadow: var(--shadow-neon);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    text-shadow: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: buttonShimmer 2s infinite;
}

@keyframes buttonShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon), 0 0 30px rgba(0, 255, 157, 0.6);
    background: var(--gradient-secondary);
    color: white;
    animation: neonButtonPulse 0.3s ease;
}

@keyframes neonButtonPulse {
    0% { box-shadow: var(--shadow-neon); }
    50% { box-shadow: var(--shadow-neon), 0 0 40px rgba(0, 255, 157, 0.8); }
    100% { box-shadow: var(--shadow-neon), 0 0 30px rgba(0, 255, 157, 0.6); }
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary);
}

/* Section Styles */
/* Section Styles - Apply to all sections except Platform Overview */
.section:not(#platform-overview) {
    padding: 20px 20px;
}

/* Platform Overview Section - Reduced top gap */
#platform-overview {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

/* Platform Stats Grid - 2x2 Layout */
.platform-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 48px;
}

/* Mobile responsive for 2x2 grid */
@media (max-width: 768px) {
    .platform-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Compact Platform Stats Grid - Smaller 2x2 Layout */
.platform-stats-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Mobile responsive for compact 2x2 grid */
@media (max-width: 768px) {
    .platform-stats-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 400px;
    }
}

.stat-card-compact {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.stat-icon-compact {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 16px;
}

.stat-label-compact {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.stat-value-compact {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.stat-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-primary);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 20px;
}

.gradient-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.gradient-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.gradient-green { background: linear-gradient(135deg, #10b981, #059669); }
.gradient-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Section Card Container */
.section-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(10px);
    margin-bottom: 48px;
}

/* Steps Container - 6 Step Grid Layout */
.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;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 255, 157, 0.1);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 255, 157, 0.3);
}

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

.step-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

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

/* Mobile responsive adjustments for 6 steps */
@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-card {
        padding: 24px;
    }

    .step-card {
        padding: 16px;
        gap: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-content h3 {
        font-size: 15px;
    }

    .step-content p {
        font-size: 13px;
    }
}

/* Mobile-First Referral Section */
.referral-mobile {
    max-width: 600px;
    margin: 0 auto;
}

.referral-link-container {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.referral-link {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.referral-link:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.referral-mobile .copy-btn {
    padding: 12px 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.referral-mobile .copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.referral-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.level-card {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1), rgba(74, 222, 128, 0.05));
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 255, 157, 0.1);
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.level-card:hover {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.15), rgba(74, 222, 128, 0.1));
    border-color: rgba(0, 255, 157, 0.4);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 255, 157, 0.2);
}

.level-card:hover::before {
    left: 100%;
}

.level-percentage {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff9d, #4ade80);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}

.level-number {
    font-size: 10px;
    color: rgba(0, 255, 157, 0.8);
    margin-bottom: 8px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.level-number span {
    display: block;
    color: rgba(0, 255, 157, 0.6);
}

.level-referrals {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 600;
    background: rgba(0, 255, 157, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 255, 157, 0.2);
}

.level-percentage {
    font-size: 16px;
    font-weight: 700;
    color: var(--green-400);
    margin-bottom: 4px;
}

.level-number {
    font-size: 10px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.level-number span {
    display: block;
}

.level-referrals {
    font-size: 11px;
    color: var(--text-primary);
    font-weight: 600;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-primary);
}

/* Desktop responsive adjustments */
@media (min-width: 768px) {
    .referral-levels {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }

    .level-card {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .level-percentage {
        font-size: 20px;
    }

    .level-number {
        font-size: 11px;
    }

    .level-referrals {
        font-size: 13px;
        padding: 6px 10px;
    }
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary);
}

.plan-card:active {
    transform: translateY(-2px) scale(0.98);
}

.plan-card.selected {
    border: 2px solid var(--green-400);
    background: rgba(74, 222, 128, 0.1);
    box-shadow: 0 8px 32px rgba(74, 222, 128, 0.3);
}

.popular-badge {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.plan-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-rate {
    font-size: 36px;
    font-weight: 700;
    color: var(--green-400);
    margin-bottom: 4px;
}

.plan-rate-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.plan-details {
    margin-bottom: 24px;
}

.plan-detail {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.detail-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* Plan buttons removed - cards are now clickable */

.plans-cta {
    text-align: center;
}

.cta-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    line-height: 1.6;
}

.cta-btn-primary {
    background: var(--gradient-primary);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.audit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--primary-dark);
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.audit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: buttonShimmer 2s infinite;
}

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

.audit-btn.disabled {
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

.audit-btn.disabled::before {
    animation: none;
}

.audit-btn.disabled:hover {
    transform: none;
    box-shadow: var(--shadow-card);
    background: var(--bg-card);
    color: var(--text-secondary);
}

/* Calculator */
.calculator-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.input-wrapper {
    position: relative;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 16px;
}

.input-suffix {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 14px;
}

.calculator-results {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

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

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

.result-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--green-400);
}

.calculator-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

/* Dashboard Grid - 2x2 Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

/* Compact Dashboard Grid - Smaller 2x2 Layout */
.dashboard-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Mobile responsive for compact dashboard */
@media (max-width: 768px) {
    .dashboard-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 400px;
    }
}

.dashboard-card-compact {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 80px;
}

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

.dashboard-icon-compact {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.dashboard-content {
    flex: 1;
    min-width: 0;
}

.dashboard-label-compact {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    font-weight: 500;
    line-height: 1.2;
}

.dashboard-value-compact {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.dashboard-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.action-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    background: var(--bg-glass);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.action-btn.primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-actions {
        flex-direction: column;
    }
}

/* Glass effect utility */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
}

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

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

/* Horizontal Stats Layout - Always Side by Side */
.stats-horizontal {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stats-horizontal::-webkit-scrollbar {
    display: none;
}

.stats-card-compact-horizontal {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 100px;
    flex: 0 0 auto;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-card-compact-horizontal:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 255, 157, 0.12);
    border-color: var(--primary);
}

.stats-card-compact-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.08), transparent);
    transition: left 0.4s ease;
}

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

.stats-icon-compact-horizontal {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-card-compact-horizontal:hover .stats-icon-compact-horizontal {
    transform: scale(1.1) rotate(3deg);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.25);
}

.stats-content-compact-horizontal {
    position: relative;
    z-index: 2;
}

.stats-number-compact-horizontal {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
    background: linear-gradient(135deg, currentColor, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    text-shadow: 0 0 10px currentColor;
    animation: numberGlow 2s ease-in-out infinite alternate;
}

.stats-label-compact-horizontal {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.stats-glow-compact-horizontal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.stats-card-compact-horizontal:hover .stats-glow-compact-horizontal {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
}

/* Mobile responsive - ensure horizontal scroll if needed */
@media (max-width: 480px) {
    .stats-horizontal {
        justify-content: flex-start;
        padding: 0 20px;
        gap: 12px;
    }

    .stats-card-compact-horizontal {
        width: 100px;
        min-height: 90px;
        padding: 14px 10px;
    }

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

    .stats-icon-compact-horizontal {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }

    .stats-icon-compact-horizontal svg {
        width: 16px;
        height: 16px;
    }
}

.referral-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Compact Referral Grid - 2x2 Layout */
.referral-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Mobile responsive for compact referral grid */
@media (max-width: 768px) {
    .referral-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 400px;
    }
}

.referral-card-compact {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.referral-icon-compact {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 14px;
}

.referral-title-compact {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.referral-rate-compact {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-400);
    margin-bottom: 8px;
}

.referral-description-compact {
    color: var(--text-secondary);
    line-height: 1.4;
    font-size: 11px;
    margin: 0;
}

.referral-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-primary);
}

.referral-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 20px;
}

.referral-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.referral-rate {
    font-size: 24px;
    font-weight: 700;
    color: var(--green-400);
    margin-bottom: 12px;
}

.referral-description {
    color: var(--text-secondary);
    line-height: 1.5;
}

.referral-link-section {
    max-width: 600px;
    margin: 0 auto;
}

.referral-link-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.referral-link-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.referral-link-input {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.referral-link-input .form-input {
    flex: 1;
}

.copy-btn {
    padding: 12px 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.referral-link-description {
    color: var(--text-secondary);
    text-align: center;
    font-size: 14px;
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.security-card.main-audit {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.audit-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.audit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-400), #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.audit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.audit-subtitle {
    color: var(--green-400);
    font-size: 14px;
    font-weight: 600;
}

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

.audit-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.audit-stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.audit-stat .stat-value {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.audit-stat .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.audit-btn {
    background: linear-gradient(135deg, var(--green-400), #3b82f6);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.audit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(74, 222, 128, 0.3);
}

/* Compact Security Features - 2x2 Grid */
.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile responsive for compact security grid */
@media (max-width: 768px) {
    .security-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 400px;
    }
}

.security-feature {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.security-feature .feature-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    margin-bottom: 8px;
}

.security-feature .feature-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.security-feature .feature-description {
    color: var(--text-secondary);
    font-size: 10px;
    line-height: 1.3;
    margin: 0;
}

/* Section Card */
.section-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}

/* Features Grid - 3 Card Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* Mobile responsive for features grid */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Feature Card with Content Layout */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.feature-content {
    flex: 1;
    min-width: 0;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

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

.faq-item {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.08), rgba(74, 222, 128, 0.05));
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 16px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 255, 157, 0.1);
}

.faq-item:hover {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.12), rgba(74, 222, 128, 0.08));
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 8px 32px rgba(0, 255, 157, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.05), rgba(74, 222, 128, 0.03));
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.08), rgba(74, 222, 128, 0.05));
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-icon {
    color: #00ff9d;
    transition: transform 0.3s ease;
    font-size: 14px;
    filter: drop-shadow(0 0 4px rgba(0, 255, 157, 0.5));
}

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

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.03), rgba(74, 222, 128, 0.02));
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 300px;
}

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

.faq-answer a {
    color: #00ff9d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(0, 255, 157, 0.5));
}

.faq-answer a:hover {
    color: #4ade80;
    text-decoration: underline;
    filter: drop-shadow(0 0 8px rgba(0, 255, 157, 0.8));
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 60px 20px 20px;
}

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

.footer-section {
    color: var(--text-secondary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    font-size: 18px;
    font-weight: 700;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contract-info {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
}

.contract-address {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 12px;
    color: var(--text-primary);
    word-break: break-all;
    margin-bottom: 12px;
}

.contract-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contract-link:hover {
    color: var(--primary-light);
}

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

.footer-copyright p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Mobile Responsive for new sections */
@media (max-width: 768px) {
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .referral-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -8px 32px rgba(99, 102, 241, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    height: 80px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 60px;
    position: relative;
}

.nav-item.active {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.nav-item:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.nav-item.active .nav-icon {
    transform: scale(1.1);
}

.nav-label {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
}

/* VIP Plan Styles */
.plan-card.vip {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid #ffd700;
    position: relative;
    overflow: hidden;
}

/* VIP shimmer animation removed as requested */

/* VIP plan button styles removed - cards are now clickable */

.plan-total {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
    
    .app-container {
        padding-bottom: 0;
    }
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .plan-card {
        padding: 20px;
    }
    
    .hero-section {
        padding: 40px 20px 30px;
    }
    
    .section {
        padding: 60px 20px;
    }
}

/* Investment Modal */
.investment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
}

.plan-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

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

.info-item .label {
    color: var(--text-secondary);
    font-size: 14px;
}

.info-item .value {
    color: var(--text-primary);
    font-weight: 600;
}

.investment-form label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.investment-form input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 20px;
}

.investment-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.calculation-result {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

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

.calc-item span:first-child {
    color: var(--text-secondary);
    font-size: 14px;
}

.calc-item span:last-child {
    color: var(--green-400);
    font-weight: 600;
}

.invest-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.invest-btn:active {
    transform: scale(0.98);
}

/* StakeMint Style Classes */
.container-mobile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section Styling */
.pt-24 {
    padding-top: 6rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

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

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.leading-tight {
    line-height: 1.25;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--secondary), var(--accent), var(--accent));
}

.from-green-400 {
    --tw-gradient-from: var(--secondary);
}

.via-green-300 {
    --tw-gradient-via: var(--accent);
}

.to-purple-400 {
    --tw-gradient-to: var(--accent);
}

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

.text-transparent {
    color: transparent;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.p-6 {
    padding: 1.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--accent), var(--secondary));
}

.border {
    border-width: 1px;
}

.max-w-4xl {
    max-width: 56rem;
}

.grid {
    display: grid;
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-4 {
    gap: 1rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.sm\:flex-row {
    flex-direction: row;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.font-semibold {
    font-weight: 600;
}

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

.transition-transform {
    transition-property: transform;
}

.duration-200 {
    transition-duration: 200ms;
}

.w-full {
    width: 100%;
}

.sm\:w-auto {
    width: auto;
}

.hover\:bg-gray-800:hover {
    background-color: var(--bg-glass);
}

.transition-colors {
    transition-property: color, background-color, border-color;
}

/* Mobile-First Responsive Design */

/* Mobile (default) - 2x2 grid for investment plans */
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Mobile Hero Section Adjustments */
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.gap-2 {
    gap: 0.5rem;
}

/* Tablet and up */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .sm\:w-auto {
        width: auto;
    }
    
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    
    .sm\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (min-width: 768px) {
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:p-8 {
        padding: 2rem;
    }
}

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

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

/* Investment Plans Styling */
.lg\:p-8 {
    padding: 2rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-3 {
    gap: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

/* Mobile-specific plan card styling */
@media (max-width: 640px) {
    .p-4 {
        padding: 0.75rem;
    }
    
    .text-sm {
        font-size: 0.75rem;
        line-height: 1rem;
    }
    
    .space-y-2 > * + * {
        margin-top: 0.25rem;
    }
    
    .space-y-1 > * + * {
        margin-top: 0.25rem;
    }
    
    .mb-3 {
        margin-bottom: 0.5rem;
    }
    
    .mb-2 {
        margin-bottom: 0.5rem;
    }
    
    .gap-2 {
        gap: 0.5rem;
    }
    
    .rounded-xl {
        border-radius: 0.5rem;
    }
    
    .rounded-lg {
        border-radius: 0.5rem;
    }
    
    .p-3 {
        padding: 0.5rem;
    }
    
    .text-xs {
        font-size: 0.65rem;
        line-height: 0.9rem;
    }
    
    /* Ensure proper grid layout on mobile */
    .grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    /* Mobile hero section adjustments */
    .container-mobile {
        padding: 0 12px;
    }
    
    .px-2 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

.cursor-pointer {
    cursor: pointer;
}

.border-2 {
    border-width: 2px;
}

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

.border-gray-700 {
    border-color: var(--border-light);
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.2);
}

.hover\:border-gray-600:hover {
    border-color: var(--border-neon);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
}

/* Dopamine-inducing plan card effects */
.plan-card-neon {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.plan-card-neon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-neon);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card-neon:hover::before {
    opacity: 1;
    animation: borderPulse 1s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.plan-card-neon:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 255, 157, 0.3);
}

/* VIP Plan special effects */
.border-purple-700\/50 {
    border-color: rgba(122, 0, 255, 0.5);
    box-shadow: 0 0 15px rgba(122, 0, 255, 0.3);
}

.hover\:border-purple-600:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 25px rgba(122, 0, 255, 0.6);
}

.justify-between {
    justify-content: space-between;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.text-white {
    color: var(--text-primary);
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.text-md {
    font-size: 1rem;
    line-height: 1.5rem;
}

.border-purple-700\/50 {
    border-color: rgba(147, 51, 234, 0.5);
}

.hover\:border-purple-600:hover {
    border-color: rgb(147, 51, 234);
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

/* Neon Utility Classes */
.text-green-400 { 
    color: var(--neon-green); 
    text-shadow: 0 0 10px var(--neon-green);
}
.text-purple-400 { 
    color: var(--neon-purple); 
    text-shadow: 0 0 10px var(--neon-purple);
}
.text-yellow-400 { 
    color: var(--neon-green); 
    text-shadow: 0 0 10px var(--neon-green);
}
.text-red-400 { 
    color: #ff0040; 
    text-shadow: 0 0 10px #ff0040;
}
.text-blue-400 { 
    color: var(--neon-blue); 
    text-shadow: 0 0 10px var(--neon-blue);
}
.text-gray-400 { 
    color: var(--text-secondary); 
}
.text-white { 
    color: var(--text-primary); 
}

/* Neon gradient text */
.bg-gradient-to-r {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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