:root {
    /* Premium Palette: Deep Nebula & Electric Violet */
    --bg-deep: #030014;
    --bg-card: rgba(18, 12, 33, 0.65);
    --bg-card-hover: rgba(30, 20, 50, 0.75);
    
    --primary-accent: #8b5cf6;
    --secondary-accent: #d946ef;
    --cyan-glow: #06b6d4;
    
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;

    --gradient-main: linear-gradient(135deg, #7c3aed 0%, #c026d3 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    --gradient-dark: linear-gradient(180deg, #030014 0%, #0f0529 100%);
    
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shine: 1px solid rgba(255, 255, 255, 0.15);
    
    --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.3);
    --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Typography */
    --font-body: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --container-width: 1240px;
}

/* Modern Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; outline: none; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(192, 38, 211, 0.1), transparent 25%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #332850; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-accent); }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-main); line-height: 1.2; }
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Preloader */
.preloader {
    position: fixed; inset: 0;
    background: #030014;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.fade-out { opacity: 0; visibility: hidden; }

.loader { display: flex; gap: 6px; margin-bottom: 20px; }
.purple-bar {
    width: 6px; height: 30px;
    background: var(--gradient-main);
    border-radius: 10px;
    animation: pulse-loader 1s ease-in-out infinite;
}
.purple-bar:nth-child(2) { animation-delay: 0.1s; height: 45px; }
.purple-bar:nth-child(3) { animation-delay: 0.2s; height: 60px; }
.purple-bar:nth-child(4) { animation-delay: 0.3s; height: 45px; }
.purple-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes pulse-loader {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; box-shadow: 0 0 15px var(--primary-accent); }
}

.preloader-text { font-family: var(--font-heading); font-size: 1.5rem; letter-spacing: 4px; font-weight: 700; color: white; }

/* Header / Navbar */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    height: 70px; /* Reduced from 90px */
    background: rgba(3, 0, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav { display: flex; justify-content: space-between; align-items: center; height: 100%; }

.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo { width: 36px; height: 36px; filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.5)); transition: transform 0.3s ease; }
.nav__logo:hover .logo { transform: rotate(10deg); }
.logo__text { font-size: 1.3rem; font-weight: 700; letter-spacing: 1px; color: white; font-family: var(--font-heading); }

.nav__menu { display: flex; align-items: center; gap: 40px; }
.nav__list { display: flex; list-style: none; gap: 32px; }

.nav__link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
}
.nav__link:hover, .nav__link.active { color: white; text-shadow: 0 0 10px rgba(139, 92, 246, 0.6); }
.nav__link::after {
    content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%) scaleX(0);
    width: 20px; height: 2px; background: var(--primary-accent);
    transition: 0.3s; border-radius: 2px;
}
.nav__link:hover::after, .nav__link.active::after { transform: translateX(-50%) scaleX(1); width: 100%; }

.nav__toggle { display: none; font-size: 1.5rem; color: white; cursor: pointer; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600; font-size: 0.95rem; font-family: var(--font-body);
    cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none; position: relative; overflow: hidden; border: none;
    letter-spacing: 0.5px;
}

.btn--primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}
.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);
    transition: 0.5s;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(192, 38, 211, 0.5); }
.btn--primary:hover::before { left: 100%; }

.btn--outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.5);
    color: white;
    backdrop-filter: blur(5px);
}
.btn--outline:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-accent);
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 12px 28px; font-size: 0.95rem; } /* Reduced from 16px 36px */

/* Sections General */
.section { padding: 100px 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.section__header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section__title {
    font-size: 3.5rem; margin-bottom: 16px; font-weight: 700;
    background: linear-gradient(to right, #fff, #b8b8b8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section__subtitle { color: var(--text-muted); font-size: 1.125rem; }

/* Cards & Glassmorphism */
.card-glass, .stat-card, .plan-card, .floating-card, .referral-link-container, .claim-card, .info-box, .investment-form-container, .investment-success, .empty-state, .faq-item, .leadership-level-compact, .referral-level-compact, .alert, .team-members-container, .investment-history-container, .investment-history-item {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* Hero Section */
#home { padding-top: 100px; padding-bottom: 80px; position: relative; } /* Reduced padding-top from 140px */
.hero__container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }

.badge {
    background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.4);
    color: #d8b4fe; padding: 6px 16px; border-radius: 20px;
    font-size: 0.875rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 24px; display: inline-block;
}

.hero__title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 24px; font-weight: 800; }
.hero__description { color: var(--text-muted); font-size: 1.25rem; margin-bottom: 40px; max-width: 90%; }
.hero__buttons { display: flex; gap: 16px; margin-bottom: 40px; }

.floating-card {
    padding: 32px; border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(30, 20, 50, 0.8) 0%, rgba(10, 5, 20, 0.9) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    animation: float-hero 6s ease-in-out infinite;
    position: relative;
}
.floating-card::before {
    content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, rgba(139,92,246,0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

@keyframes float-hero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 16px; }
.card__header h3 { font-size: 1.2rem; font-weight: 600; }
.live-indicator { display: flex; align-items: center; gap: 8px; color: #4ade80; font-weight: 700; font-size: 0.85rem; }
.dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 10px #4ade80; animation: blink 2s infinite; }

.stat-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.stat-item:last-child { border-bottom: none; }
.stat-item .label { color: var(--text-muted); font-size: 0.95rem; }
.stat-item .value { color: white; font-weight: 600; font-family: var(--font-heading); font-size: 1.1rem; text-shadow: 0 0 10px rgba(139,92,246,0.3); }

/* Dashboard Stats */
.quick-stats, .referral-stats, .leadership-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 40px;
}
.stat-card {
    padding: 30px; display: flex; align-items: center; gap: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-card:hover { transform: translateY(-5px); border-color: rgba(139, 92, 246, 0.4); background: var(--bg-card-hover); }

.stat-icon {
    width: 64px; height: 64px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(192,38,211,0.2));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: #d8b4fe; border: 1px solid rgba(139,92,246,0.3);
    box-shadow: 0 0 15px rgba(139,92,246,0.15);
}
.stat-value { font-size: 1.75rem; font-weight: 700; margin-bottom: 4px; color: white; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 0.5px; text-transform: uppercase; }

/* Investment Plans */
.investment-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 50px; }

.plan-card {
    padding: 40px 30px; text-align: center; position: relative; transition: 0.4s ease;
    display: flex; flex-direction: column; height: 100%;
    background: linear-gradient(145deg, rgba(20, 15, 40, 0.6), rgba(10, 5, 20, 0.8));
}
.plan-card:hover { transform: translateY(-10px); border-color: var(--primary-accent); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }

.plan-card.featured {
    border: 1px solid rgba(217, 70, 239, 0.5);
    background: linear-gradient(145deg, rgba(40, 20, 60, 0.7), rgba(10, 5, 20, 0.9));
    transform: scale(1.05); z-index: 2;
}
.plan-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.plan-card.featured::before {
    content: 'POPULAR'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-main); padding: 6px 20px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; color: white;
    box-shadow: 0 5px 15px rgba(192, 38, 211, 0.4);
}

.plan-name { font-size: 1.5rem; margin-bottom: 15px; color: white; }
.plan-roi { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; color: #d8b4fe; text-shadow: 0 0 15px rgba(139,92,246,0.3); }
.plan-range { 
    background: rgba(255,255,255,0.05); padding: 12px; border-radius: 12px;
    margin-bottom: 25px; color: var(--text-muted); font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.05);
}
.plan-features { list-style: none; margin-bottom: 30px; flex-grow: 1; text-align: left; padding-left: 10px; }
.plan-features li { 
    margin-bottom: 12px; color: #cbd5e1; display: flex; align-items: center; gap: 10px; font-size: 0.95rem;
}
.plan-features li i { color: #4ade80; font-size: 0.8rem; }
.plan-total { color: var(--secondary-accent); font-weight: 600; margin-bottom: 20px; font-size: 1.1rem; }

/* Forms */
.investment-form-container, .referral-link-container { max-width: 600px; margin: 0 auto 40px; padding: 40px; }
.form-group label { display: block; margin-bottom: 10px; color: var(--text-muted); font-size: 0.9rem; }
.form-input, .link-input {
    width: 100%; padding: 16px; border-radius: 12px;
    background: rgba(5, 2, 10, 0.6); border: 1px solid rgba(255,255,255,0.1);
    color: white; font-family: var(--font-body); font-size: 1rem;
    transition: 0.3s;
}
.form-input:focus, .link-input:focus { border-color: var(--primary-accent); box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1); }

.plan-summary { background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.2); padding: 20px; border-radius: 12px; margin-bottom: 20px; }

/* Timer & Action Buttons */
.action-buttons { display: flex; justify-content: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }

.timer-container {
    display: inline-flex; flex-direction: column; align-items: center;
    background: rgba(0,0,0,0.3); padding: 12px 24px; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}
.timer-display { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 1.5rem; color: var(--secondary-accent); font-weight: 700; }
.timer-value { min-width: 36px; text-align: center; }
.timer-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* Alerts & States */
.alert {
    padding: 20px; border-radius: 16px; display: flex; align-items: center; gap: 16px;
    max-width: 800px; margin: 0 auto 30px; font-size: 0.95rem;
    background: rgba(15, 23, 42, 0.9); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.alert-warning { 
    background: rgba(245, 158, 11, 0.1); 
    border-color: rgba(245, 158, 11, 0.3); 
    color: #fbbf24; 
}
.alert-info { 
    background: rgba(59, 130, 246, 0.1); 
    border-color: rgba(59, 130, 246, 0.3); 
    color: #60a5fa; 
}
.alert-success { 
    background: rgba(34, 197, 94, 0.1); 
    border-color: rgba(34, 197, 94, 0.3); 
    color: #4ade80; 
}

.empty-state { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 3rem; color: rgba(255,255,255,0.2); margin-bottom: 20px; }

/* Team Members */
.team-members-container {
    padding: 30px;
    margin-top: 30px;
}

.team-members-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.team-members-list {
    max-height: 400px;
    overflow-y: auto;
}

.team-member-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.team-member-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.member-address {
    font-family: monospace;
    font-size: 0.9rem;
}

.member-level {
    background: var(--gradient-main);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

/* Investment History */
.investment-history-container {
    padding: 30px;
    margin-top: 30px;
}

.investment-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.investment-history-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.investment-history-item {
    padding: 25px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.investment-history-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.investment-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.investment-detail:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-value {
    color: white;
    font-weight: 600;
    text-align: right;
}

.investment-plan {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.investment-amount {
    font-weight: 700;
    color: #d8b4fe;
    font-size: 1.2rem;
}

.investment-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-active {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-completed {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Popups & Notifications */
.investment-success-popup {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px); z-index: 2000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.3s;
}
.investment-success-popup.active { opacity: 1; visibility: visible; }
.investment-success { max-width: 450px; width: 90%; padding: 40px; text-align: center; transform: scale(0.9); transition: 0.3s; }
.investment-success-popup.active .investment-success { transform: scale(1); }

.success-icon {
    width: 80px; height: 80px; background: var(--gradient-main); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white;
    margin: 0 auto 24px; box-shadow: 0 0 30px rgba(192, 38, 211, 0.5);
}

.notification {
    position: fixed; top: 100px; right: 20px; padding: 16px 24px;
    background: rgba(15, 23, 42, 0.9); border: 1px solid rgba(255,255,255,0.1);
    color: white; border-radius: 12px; z-index: 3000;
    transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex; align-items: center; gap: 10px;
    max-width: 400px;
}
.notification.show { transform: translateX(0); }
.notification.success { 
    border-left: 4px solid #4ade80; 
    background: rgba(34, 197, 94, 0.1);
}
.notification.error { 
    border-left: 4px solid #ef4444; 
    background: rgba(239, 68, 68, 0.1);
}
.notification.info { 
    border-left: 4px solid #60a5fa; 
    background: rgba(59, 130, 246, 0.1);
}

/* Referral Levels Compact */
.referral-levels-compact, .leadership-levels-compact { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 16px; margin-bottom: 40px; }
.referral-level-compact, .leadership-level-compact { 
    padding: 16px; text-align: center; transition: 0.3s;
    background: rgba(255,255,255,0.02);
}
.referral-level-compact:hover { background: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.3); }

.level-number-compact {
    width: 32px; height: 32px; background: rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
    font-size: 0.8rem; font-weight: 700; color: var(--primary-accent);
}
.level-commission-compact { color: white; font-weight: 700; font-size: 1.2rem; }
.level-requirement-compact { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* FAQ */
.faq-item { margin-bottom: 16px; overflow: hidden; transition: 0.3s; }
.faq-item:hover { border-color: rgba(139, 92, 246, 0.3); }
.faq-question { padding: 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question h3 { font-size: 1.05rem; font-weight: 600; margin: 0; }
.faq-icon { transition: 0.3s; color: var(--primary-accent); }
.faq-answer { 
    max-height: 0; overflow: hidden; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px; color: var(--text-muted); line-height: 1.7;
}
.faq-item.active .faq-answer { padding-bottom: 24px; max-height: 500px; }
.faq-item.active .faq-icon { transform: rotate(180deg); }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 0 30px; background: #02010a; margin-top: auto; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; justify-content: center; }
.footer__logo span { font-size: 1.5rem; font-weight: 700; font-family: var(--font-heading); color: white; }
.footer__social { display: flex; gap: 16px; margin-top: 30px; justify-content: center; }
.social__link {
    width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center; color: white;
    transition: 0.3s; border: 1px solid rgba(255,255,255,0.05); text-decoration: none;
}
.social__link:hover { background: var(--primary-accent); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4); }
.footer__bottom { margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; color: rgba(255,255,255,0.3); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 968px) {
    .hero__container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero__content { display: flex; flex-direction: column; align-items: center; }
    .hero__title { font-size: 3rem; }
    .hero__buttons { justify-content: center; }
    .investment-history-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px);
        background: #030014; flex-direction: column; padding: 40px;
        transition: 0.4s; align-items: flex-start; border-top: 1px solid rgba(255,255,255,0.05);
    }
    .nav__menu.active { left: 0; }
    .nav__list { flex-direction: column; gap: 20px; width: 100%; margin-bottom: 30px; }
    .nav__toggle { display: block; }
    .section__title { font-size: 2.5rem; }
    .hero__title { font-size: 2.5rem; }
    .hero__description { font-size: 1.1rem; }
    .investment-history-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .hero__buttons { flex-direction: column; width: 100%; }
    .hero__buttons .btn { width: 100%; }
    .section { padding: 80px 0; }
    .section__title { font-size: 2rem; }
    .investment-history-item {
        padding: 20px;
    }
}
