@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #f7e98e;
    --gold-dark: #aa8c2c;
    --purple-1: #667eea;
    --purple-2: #764ba2;
    --pink-1: #f093fb;
    --pink-2: #f5576c;
    --cyan-1: #4facfe;
    --cyan-2: #00f2fe;
    --green-1: #11998e;
    --green-2: #38ef7d;
    --orange-1: #f7971e;
    --orange-2: #ffd200;
    --bg-dark: #0f0c29;
    --bg-mid: #302b63;
    --bg-light: #24243e;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a12;
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.gradient-animate {
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--pink-1), var(--purple-1), var(--cyan-1), var(--gold-light));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

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

.highlight-gold {
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
}

.highlight-cyan {
    color: var(--cyan-1);
    font-style: italic;
    font-weight: 600;
}

.highlight-pink {
    color: var(--pink-1);
    font-style: italic;
    font-weight: 600;
}

.highlight-green {
    color: var(--green-2);
    font-style: italic;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.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;
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: #000;
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.4);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    line-height: 1.8;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 0 50px rgba(212, 175, 55, 0.15);
}

.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

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

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(212,175,55,0.3); }
    50% { box-shadow: 0 0 60px rgba(212,175,55,0.6); }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #000;
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
    animation: glow 3s ease-in-out infinite;
}

.logo-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Marketplace animated nav link */
.nav-marketplace-link {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    color: #f7d774 !important;
    font-weight: 600 !important;
}
.nav-marketplace-link:hover {
    color: #fff !important;
}
.nav-marketplace-link::after {
    display: none !important;
}

.nav-new-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5), 0 0 20px rgba(239, 68, 68, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
    position: relative;
    top: -1px;
    vertical-align: middle;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(245, 158, 11, 0.5), 0 0 18px rgba(239, 68, 68, 0.25);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 14px rgba(245, 158, 11, 0.8), 0 0 28px rgba(239, 68, 68, 0.5);
        transform: scale(1.08);
    }
}

/* Mobile nav: marketplace link */
.mobile-nav-links .nav-marketplace-link {
    color: #f7d774 !important;
    font-weight: 600;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-btn.outline {
    background: transparent;
    border: 2px solid rgba(212,175,55,0.5);
    color: var(--gold);
}

.nav-btn.outline:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.nav-btn.primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    border: none;
}

.nav-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: linear-gradient(145deg, rgba(18, 16, 30, 0.98) 0%, rgba(10, 8, 20, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.nav-dropdown-menu a i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 28px;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 100px;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, #0a0a12 0%, #12101a 50%, #0d0816 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero .container {
    display: block;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(56,239,125,0.2), rgba(56,239,125,0.05));
    border: 1px solid rgba(56,239,125,0.5);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green-2);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge i {
    font-size: 20px;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.hero-highlight {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    font-style: italic;
}

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

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

.stat-item {
    position: relative;
    padding-right: 50px;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(212,175,55,0.5), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.hero-phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 40px;
    padding: 12px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.1);
}

.phone-notch {
    width: 100px;
    height: 25px;
    background: #0a0a12;
    border-radius: 0 0 15px 15px;
    margin: 0 auto 15px;
}

.phone-screen {
    background: linear-gradient(180deg, #12101a 0%, #0a0a12 100%);
    border-radius: 28px;
    padding: 20px 15px;
    min-height: 420px;
}

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

.app-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-logo i {
    color: #000;
    font-size: 16px;
}

.app-header span {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-light);
}

.wallet-card-mini {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
}

.wallet-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.wallet-amount {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.wallet-change {
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wallet-change.positive {
    color: var(--green-2);
}

.quick-stats {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.quick-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
}

.quick-stat i {
    font-size: 16px;
    color: var(--purple-1);
    margin-bottom: 4px;
}

.quick-stat span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
}

.quick-stat small {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.recent-activity {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 12px;
}

.activity-title {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.activity-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.activity-icon.green {
    background: rgba(56, 239, 125, 0.2);
    color: var(--green-2);
}

.activity-icon.gold {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.activity-info {
    flex: 1;
}

.activity-info span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.activity-info small {
    font-size: 10px;
    color: var(--text-muted);
}

.activity-amount {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-2);
}

.hero-feature-cards {
    display: flex;
    gap: 15px;
}

.feature-card-mini {
    background: rgba(15, 12, 41, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-card-mini.verified {
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-card-mini .feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-mini.verified .feature-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.feature-card-mini .feature-icon i {
    font-size: 16px;
    color: #fff;
}

.feature-card-mini.verified .feature-icon i {
    color: #000;
}

.feature-card-mini .feature-info strong {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.feature-card-mini .feature-info span {
    font-size: 10px;
    color: var(--text-muted);
}

/* Legacy floating card styles - keeping for compatibility */
.hero-floating-card {
    position: absolute;
    background: rgba(15,12,41,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    animation: float 5s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 100px;
    left: -30px;
    animation-delay: 1.5s;
}

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.floating-text {
    font-size: 13px;
    color: var(--text-muted);
}

.floating-text strong {
    display: block;
    font-size: 18px;
    color: var(--gold);
    font-weight: 700;
}

.why-join {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #0a0a12 0%, #151520 50%, #0a0a12 100%);
    overflow: hidden;
}

.why-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?w=1920&h=1080&fit=crop') center/cover no-repeat;
    opacity: 0.06;
    z-index: 0;
}

.why-join::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(102,126,234,0.1) 0%, transparent 40%);
    z-index: 0;
}

.why-join-header {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 45px;
    position: relative;
    z-index: 1;
}

.why-join-header .section-subtitle {
    font-size: 22px;
    line-height: 1.6;
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.why-card {
    padding: 35px 28px;
    text-align: center;
    background: linear-gradient(145deg, rgba(25,20,40,0.95) 0%, rgba(15,12,25,0.98) 100%);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: linear-gradient(145deg, rgba(40,30,60,0.98) 0%, rgba(20,15,35,1) 100%);
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.15);
    transform: translateY(-8px);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.why-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.why-desc {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.ecosystem {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #0a0a12 0%, #12101a 50%, #0a0a12 100%);
}

.ecosystem-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.ecosystem-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.2);
}

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

.eco-stat-number {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.eco-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ecosystem-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.eco-category {
    padding: 12px 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.eco-category:hover,
.eco-category.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    border-color: var(--gold);
}

.featured-slider {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
}

.featured-track {
    display: flex;
    gap: 25px;
    animation: slideScroll 30s linear infinite;
    width: max-content;
}

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

.featured-card {
    min-width: 350px;
    background: linear-gradient(145deg, rgba(25,22,35,0.95) 0%, rgba(15,12,22,0.98) 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.15);
    transition: all 0.4s ease;
}

.featured-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,55,0.1);
}

.featured-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-content {
    padding: 25px;
}

.featured-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--green-1), var(--green-2));
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.featured-badge.upcoming {
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
}

.featured-name {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.featured-category {
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.featured-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.ecosystem-massive {
    margin-bottom: 60px;
}

.eco-massive-header {
    text-align: center;
    margin-bottom: 50px;
}

.eco-massive-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.eco-massive-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

.eco-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.eco-cat-card {
    background: linear-gradient(145deg, rgba(25,22,35,0.9) 0%, rgba(15,12,22,0.95) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.eco-cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cat-color);
    opacity: 0.7;
}

.eco-cat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--cat-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.eco-cat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cat-color);
    border-radius: 15px;
    font-size: 24px;
    color: white;
}

.eco-cat-count {
    font-size: 32px;
    font-weight: 800;
    color: var(--cat-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.eco-cat-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.eco-cat-images {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.eco-cat-images img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.eco-cat-card:hover .eco-cat-images img {
    border-color: var(--cat-color);
}

.eco-projects-wall {
    position: relative;
    padding: 40px 0;
    margin: 0 -40px;
    overflow: hidden;
}

.eco-projects-wall::before,
.eco-projects-wall::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.eco-projects-wall::before {
    left: 0;
    background: linear-gradient(90deg, #0a0a12, transparent);
}

.eco-projects-wall::after {
    right: 0;
    background: linear-gradient(-90deg, #0a0a12, transparent);
}

.eco-wall-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    width: max-content;
}

.eco-wall-row.scroll-left {
    animation: scrollWallLeft 40s linear infinite;
}

.eco-wall-row.scroll-right {
    animation: scrollWallRight 40s linear infinite;
}

.eco-wall-row.slow {
    animation-duration: 55s;
}

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

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

.eco-mini-tile {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(25,22,35,0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px 15px 10px 10px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.eco-mini-tile:hover {
    border-color: rgba(212,175,55,0.4);
    background: rgba(40,35,55,0.9);
    transform: scale(1.05);
}

.eco-mini-tile img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.eco-mini-tile span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

.eco-more-indicator {
    text-align: center;
    margin-top: 40px;
}

.eco-more-text {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.ecosystem-showcase {
    position: relative;
    padding: 80px 0;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 30px;
    margin-left: 20px;
    margin-right: 20px;
    border: 2px solid transparent;
    background-image: linear-gradient(135deg, rgba(10,10,18,1), rgba(10,10,18,1)), 
                      linear-gradient(135deg, var(--gold), var(--purple-1), var(--pink-1), var(--gold));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.ecosystem-showcase::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), var(--purple-1), var(--cyan-1), var(--pink-1), var(--gold));
    border-radius: 32px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}

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

.ecosystem-showcase-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ecosystem-showcase-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ecosystem-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,18,0.85) 0%, rgba(20,15,35,0.75) 50%, rgba(10,10,18,0.9) 100%);
}

.ecosystem-showcase-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.eco-showcase-title {
    font-size: 56px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    line-height: 1.2;
}

.eco-showcase-subtitle {
    font-size: 22px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.eco-icons-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.eco-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.eco-icon-item:hover {
    transform: translateY(-10px);
}

.eco-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
    animation: float 4s ease-in-out infinite;
}

.eco-icon-item:nth-child(2) .eco-icon-circle { animation-delay: 0.5s; }
.eco-icon-item:nth-child(3) .eco-icon-circle { animation-delay: 1s; }
.eco-icon-item:nth-child(4) .eco-icon-circle { animation-delay: 1.5s; }
.eco-icon-item:nth-child(5) .eco-icon-circle { animation-delay: 2s; }
.eco-icon-item:nth-child(6) .eco-icon-circle { animation-delay: 2.5s; }

.eco-icon-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ecosystem-video {
    display: none;
}

.ecosystem-video video {
    display: none;
}

.ecosystem-video-overlay {
    display: none;
}

.ecosystem-video-text {
    display: none;
}

.ecosystem-video-sub {
    display: none;
}


.projects-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.projects-title h3 {
    font-size: 32px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(56,239,125,0.2), rgba(56,239,125,0.05));
    border: 1px solid rgba(56,239,125,0.5);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green-2);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.upcoming-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(240,147,251,0.2), rgba(240,147,251,0.05));
    border: 1px solid rgba(240,147,251,0.5);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pink-1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.project-card {
    padding: 35px 28px;
    text-align: center;
}

.project-img {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 20px;
}

.project-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000;
}

.project-icon.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.project-icon.purple { background: linear-gradient(135deg, var(--purple-1), var(--purple-2)); color: #fff; }
.project-icon.pink { background: linear-gradient(135deg, var(--pink-1), var(--pink-2)); color: #fff; }
.project-icon.cyan { background: linear-gradient(135deg, var(--cyan-1), var(--cyan-2)); }
.project-icon.green { background: linear-gradient(135deg, var(--green-1), var(--green-2)); }

.project-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.project-category {
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.rewards {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #0a0a12 0%, #0d0816 50%, #0a0a12 100%);
    overflow: hidden;
}

.rewards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(212,175,55,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(224,17,95,0.08) 0%, transparent 50%);
    z-index: 0;
}

.rewards .container {
    position: relative;
    z-index: 1;
}

.rewards-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.rewards-journey {
    position: relative;
    padding: 40px 0;
}

.rewards-path {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, #cd7f32, #c0c0c0, #d4af37, #e5e4e2, #b9f2ff, #e0115f, #50c878);
    transform: translateY(-50%);
    border-radius: 2px;
    opacity: 0.3;
    z-index: 0;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    position: relative;
    z-index: 1;
}

.reward-card {
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.reward-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--card-color), transparent, var(--card-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
}

.reward-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--card-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reward-card:hover::after {
    opacity: 0.15;
}

.reward-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.reward-card.bronze {
    --card-color: #cd7f32;
    --card-glow: #cd7f32;
    background: linear-gradient(145deg, rgba(205,127,50,0.15) 0%, rgba(20,15,25,0.95) 100%);
}

.reward-card.silver {
    --card-color: #c0c0c0;
    --card-glow: #c0c0c0;
    background: linear-gradient(145deg, rgba(192,192,192,0.15) 0%, rgba(20,15,25,0.95) 100%);
}

.reward-card.gold {
    --card-color: #d4af37;
    --card-glow: #d4af37;
    background: linear-gradient(145deg, rgba(212,175,55,0.2) 0%, rgba(20,15,25,0.95) 100%);
}

.reward-card.platinum {
    --card-color: #e5e4e2;
    --card-glow: #e5e4e2;
    background: linear-gradient(145deg, rgba(229,228,226,0.15) 0%, rgba(20,15,25,0.95) 100%);
}

.reward-card.diamond {
    --card-color: #b9f2ff;
    --card-glow: #b9f2ff;
    background: linear-gradient(145deg, rgba(185,242,255,0.2) 0%, rgba(20,15,25,0.95) 100%);
}

.reward-card.ruby {
    --card-color: #e0115f;
    --card-glow: #e0115f;
    background: linear-gradient(145deg, rgba(224,17,95,0.2) 0%, rgba(20,15,25,0.95) 100%);
}

.reward-card.emerald {
    --card-color: #50c878;
    --card-glow: #50c878;
    background: linear-gradient(145deg, rgba(80,200,120,0.2) 0%, rgba(20,15,25,0.95) 100%);
}

.reward-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--card-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.reward-icon {
    font-size: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px var(--card-glow));
}

.reward-tier {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--card-color);
}

.reward-value {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.reward-pv {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reward-desc {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
}

.rewards-cta {
    text-align: center;
    margin-top: 60px;
}

.rewards-cta-text {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
}

.testimonial {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #0a0a12 0%, #12101a 50%, #0a0a12 100%);
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
    z-index: 0;
}

.testimonial .container {
    position: relative;
    z-index: 1;
}

.testimonial-bg {
    display: none;
}

.testimonial-badge {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-slider-wrapper {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    overflow: hidden;
    border-radius: 30px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    text-align: center;
    background: linear-gradient(145deg, rgba(25,22,35,0.8) 0%, rgba(15,12,22,0.9) 100%);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 30px;
    padding: 60px 50px;
    position: relative;
}

.testimonial-slide::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 120px;
    font-family: 'Playfair Display', serif;
    color: rgba(212,175,55,0.15);
    line-height: 1;
}

.testimonial-quote {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.testimonial-info {
    text-align: left;
}

.testimonial-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.testimonial-info p {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212,175,55,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

.testimonial-arrows {
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212,175,55,0.2);
    border: 1px solid rgba(212,175,55,0.4);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.testimonial-arrow:hover {
    background: var(--gold);
    color: #0a0a12;
}

.testimonial-arrow i {
    font-size: 20px;
}

.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,18,0.85) 0%, rgba(15,10,30,0.8) 50%, rgba(10,10,18,0.9) 100%);
}

.cta-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: floatParticle 8s infinite ease-in-out;
    opacity: 0.5;
}

.cta-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.cta-particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; }
.cta-particle:nth-child(3) { left: 40%; top: 30%; animation-delay: 2s; }
.cta-particle:nth-child(4) { left: 60%; top: 70%; animation-delay: 3s; }
.cta-particle:nth-child(5) { left: 75%; top: 40%; animation-delay: 4s; }
.cta-particle:nth-child(6) { left: 90%; top: 80%; animation-delay: 5s; }
.cta-particle:nth-child(7) { left: 15%; top: 85%; animation-delay: 1.5s; }
.cta-particle:nth-child(8) { left: 85%; top: 15%; animation-delay: 2.5s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

.cta .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.cta-content {
    text-align: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(56,239,125,0.25), rgba(56,239,125,0.08));
    border: 2px solid rgba(56,239,125,0.6);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    color: var(--green-2);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(56,239,125,0.3); }
    50% { box-shadow: 0 0 40px rgba(56,239,125,0.6); }
}

.cta-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.15;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.cta-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cta-highlight {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.cta-highlight::before,
.cta-highlight::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.cta-highlight::before { right: 100%; margin-right: 20px; }
.cta-highlight::after { left: 100%; margin-left: 20px; background: linear-gradient(90deg, var(--gold), transparent); }

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 15px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(56,239,125,0.1);
    border-color: rgba(56,239,125,0.3);
    transform: translateY(-3px);
}

.cta-feature i {
    color: var(--green-2);
    font-size: 22px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.cta-buttons .btn {
    padding: 20px 45px;
    font-size: 16px;
}

.cta-buttons .btn-gold {
    animation: buttonPulse 2.5s infinite ease-in-out;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(212,175,55,0.3); }
    50% { box-shadow: 0 15px 50px rgba(212,175,55,0.5); }
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.cta-stat-value {
    font-size: 42px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.cta-note {
    font-size: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note i {
    color: var(--green-2);
    font-size: 18px;
}

.footer {
    background: linear-gradient(180deg, #0a0a12 0%, #050508 100%);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212,175,55,0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 15px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

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

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

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

/* =====================================================
   LEGAL & INFO PAGES
   ===================================================== */
.legal-page,
.info-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #0a0a12 0%, #12101a 50%, #0d0816 100%);
    position: relative;
}

.legal-page::before,
.info-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 600px 600px at 10% 10%, rgba(147, 51, 234, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 90% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.legal-header,
.info-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.legal-header h1,
.info-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.last-updated {
    color: var(--text-muted);
    font-size: 14px;
}

.legal-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    z-index: 1;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.legal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.legal-section li {
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.legal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.legal-section a {
    color: var(--gold);
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-back {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* Info Page Specific Styles */
.info-header p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, #e8c75b 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.step-icon i {
    font-size: 36px;
    color: var(--gold);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

.earnings-breakdown {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.earnings-breakdown h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.earning-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.earning-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.earning-card.highlight {
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
}

.earning-card:hover {
    transform: translateY(-5px);
}

.earning-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.earning-icon i {
    font-size: 30px;
    color: var(--gold);
}

.earning-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.earning-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 15px;
}

.earning-rate {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

/* Support Page Styles */
.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.support-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.support-icon i {
    font-size: 36px;
    color: var(--gold);
}

.support-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.support-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.support-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 15px;
}

.support-link:hover {
    text-decoration: underline;
}

.help-topics {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.help-topics h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.topic-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.topic-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.topic-item i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
}

.topic-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.topic-item ul {
    list-style: none;
    padding: 0;
}

.topic-item li {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.topic-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.back-section {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* Community Page Styles */
.community-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

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

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.community-channels {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.community-channels h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.channel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.channel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

.channel-card.telegram:hover { border-color: rgba(0, 136, 204, 0.5); }
.channel-card.facebook:hover { border-color: rgba(24, 119, 242, 0.5); }
.channel-card.instagram:hover { border-color: rgba(225, 48, 108, 0.5); }
.channel-card.youtube:hover { border-color: rgba(255, 0, 0, 0.5); }

.channel-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.channel-icon i {
    font-size: 32px;
    color: var(--gold);
}

.channel-card.telegram .channel-icon i { color: #0088cc; }
.channel-card.facebook .channel-icon i { color: #1877f2; }
.channel-card.instagram .channel-icon i { color: #e1306c; }
.channel-card.youtube .channel-icon i { color: #ff0000; }

.channel-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.channel-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.channel-action {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
}

.channel-action i {
    margin-left: 5px;
}

.community-values {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.community-values h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
    color: var(--gold);
}

.value-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.value-item p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* CTA Section in Info Pages */
.info-page .cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(147, 51, 234, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    position: relative;
    z-index: 1;
}

.info-page .cta-section h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.info-page .cta-section p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-subtitle, .hero-highlight {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-images {
        display: none;
    }
    
    .why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-highlight {
        font-size: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item {
        padding-right: 0;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .why-join-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-title {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .ecosystem-video-text {
        font-size: 32px;
    }
    
    .testimonial-quote {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Info & Legal Pages Responsive */
    .legal-page,
    .info-page {
        padding: 100px 0 60px;
    }
    
    .legal-header h1,
    .info-header h1 {
        font-size: 32px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 14px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .earning-types {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .topics-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .community-stats {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .channels-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .info-page .cta-section {
        padding: 40px 25px;
    }
    
    .info-page .cta-section h3 {
        font-size: 26px;
    }
}

/* ============================================
   AUTH MODALS - MODERN DESIGN
============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(160deg, #0a0a12 0%, #12101a 50%, #0d0816 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    max-width: 440px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 0 80px rgba(212, 175, 55, 0.06);
    overflow: hidden;
}

.modal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 15%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 25%, rgba(236, 72, 153, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 30% 85%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.12) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    border-radius: 20px;
}

.modal-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    z-index: 2;
    pointer-events: none;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-container.login-modal {
    max-width: 420px;
}

.modal-container.register-modal {
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
}

.modal-container.register-modal::-webkit-scrollbar {
    width: 5px;
}

.modal-container.register-modal::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
}

.modal-container.register-modal::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.25);
    border-radius: 5px;
}

.modal-container.register-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.4);
}

.modal-inner {
    position: relative;
    z-index: 1;
    padding: 35px 35px 30px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-brand {
    text-align: center;
    margin-bottom: 20px;
}

.modal-brand-logo {
    height: 42px;
    width: auto;
}

.modal-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.modal-alert {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-alert.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171;
}

.modal-alert.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

/* Modern Input Fields */
.input-modern {
    position: relative;
    display: flex;
    align-items: center;
}

.input-modern > i {
    position: absolute;
    left: 14px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 1;
}

.input-modern input,
.input-modern select {
    width: 100%;
    padding: 12px 14px 12px 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.input-modern select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23888' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

.input-modern input:focus,
.input-modern select:focus {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.04);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.input-modern:focus-within > i {
    color: var(--gold);
}

.input-modern input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.sso-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sso-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.sso-btn i {
    font-size: 18px;
    color: var(--gold);
}

.modal-divider {
    display: flex;
    align-items: center;
    margin: 18px 0;
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.modal-divider span {
    padding: 0 14px;
}

.modal-switch {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 20px;
}

.modal-switch a {
    color: var(--gold);
    font-weight: 600;
}

.modal-switch a:hover {
    text-decoration: underline;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--gold);
    font-size: 14px;
}

.form-group label .optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 11px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper > i {
    position: absolute;
    left: 14px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 12px 14px 12px 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23888' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.04);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.input-wrapper:focus-within > i {
    color: var(--gold);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.25);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
    z-index: 1;
}

.toggle-password:hover {
    color: var(--gold);
}

.input-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: -2px;
}

.referral-group {
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.2);
    padding: 14px;
    border-radius: 12px;
    margin-top: 2px;
}

.referral-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.referral-label i {
    color: var(--gold);
    font-size: 14px;
}

.referral-label .optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 11px;
}

.referral-input {
    position: relative;
}

.referral-input .qr-scan-btn {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 10px;
    border: 1px solid rgba(6,182,212,0.3);
    background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(139,92,246,0.15));
    color: #22d3ee;
    border-radius: 7px;
    cursor: pointer;
    font-size: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 28px;
    transition: all 0.3s ease;
}

.referral-input .qr-scan-btn:hover {
    background: linear-gradient(135deg, rgba(6,182,212,0.25), rgba(139,92,246,0.25));
    border-color: rgba(6,182,212,0.5);
    box-shadow: 0 0 12px rgba(6,182,212,0.25);
    transform: translateY(-50%) scale(1.08);
}

.referral-input .qr-scan-btn i {
    font-size: 16px;
    line-height: 1;
}

.referral-input input {
    padding-right: 115px !important;
}

.verify-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 7px;
    color: #0a0a12;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.verify-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

.referral-status {
    margin-top: 8px;
    font-size: 12px;
    display: none;
}

.referral-status.success {
    display: block;
    color: var(--green-2);
}

.referral-status.error {
    display: block;
    color: var(--pink-2);
}

.position-group {
    margin-top: 2px;
}

.position-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 5px;
}

.position-option {
    cursor: pointer;
}

.position-option input {
    display: none;
}

.position-card {
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.position-card i {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 4px;
    display: block;
}

.position-card span {
    font-size: 13px;
    font-weight: 500;
}

.position-option input:checked + .position-card {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.position-option input:checked + .position-card i {
    color: var(--gold);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.checkbox-wrapper input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-wrapper input:checked + .checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-wrapper input:checked + .checkmark::after {
    content: '✓';
    color: #0a0a12;
    font-size: 11px;
    font-weight: bold;
}

.checkbox-wrapper a {
    color: var(--gold);
}

.checkbox-wrapper a:hover {
    text-decoration: underline;
}

.forgot-link {
    color: var(--gold);
    font-size: 13px;
}

.forgot-link:hover {
    text-decoration: underline;
}

.modal-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.modal-submit-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.modal-submit-btn.gold {
    background: linear-gradient(135deg, var(--gold), #c9a227);
    border: none;
    color: #0a0a12;
}

.modal-submit-btn.gold:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
    transform: translateY(-1px);
}

.modal-submit-btn i {
    font-size: 16px;
}

.modal-footer {
    text-align: center;
    padding: 15px 35px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.modal-footer a {
    color: var(--gold);
    font-weight: 600;
}

.modal-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .modal-container {
        border-radius: 16px;
        margin: 10px;
    }
    
    .modal-inner {
        padding: 28px 22px 24px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .modal-subtitle {
        font-size: 13px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-container.register-modal {
        max-height: 85vh;
    }
}

/* ============================================
   MOBILE MENU
============================================ */

.mobile-menu {
    display: none;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(15, 12, 35, 0.98) 0%, rgba(10, 10, 18, 0.99) 100%);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0 24px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
    opacity: 1;
    padding: 20px 24px 30px;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 20px;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-links li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.mobile-nav-links li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-buttons .nav-btn {
    text-align: center;
    padding: 14px 20px;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
}

/* ============================================
   TRUST INDICATORS SECTION
============================================ */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.9) 0%, rgba(26, 16, 53, 0.8) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* ===== BRIGHT TRUST SECTION ===== */
.bright-trust-section {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(212, 175, 55, 0.25) 0%, transparent 35%),
        radial-gradient(ellipse at 100% 0%, rgba(212, 175, 55, 0.25) 0%, transparent 35%),
        radial-gradient(ellipse at 0% 100%, rgba(212, 175, 55, 0.25) 0%, transparent 35%),
        radial-gradient(ellipse at 100% 100%, rgba(212, 175, 55, 0.25) 0%, transparent 35%),
        radial-gradient(ellipse at 50% 50%, #fffef8 0%, #f8f6f0 100%);
    position: relative;
    overflow: hidden;
}

.bright-trust-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite;
}

.bright-trust-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 12s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.bright-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.bright-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--gold) 0%, #c9a227 100%);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.bright-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.bright-title .text-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #b8962a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bright-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Row */
.bright-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.bright-stat-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.bright-stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.stat-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bright-stat-card:hover .stat-icon-wrap {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a227 100%);
    transform: scale(1.1) rotate(10deg);
}

.stat-icon-wrap i {
    font-size: 32px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.bright-stat-card:hover .stat-icon-wrap i {
    color: white;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Country Cards */
.bright-countries {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.country-card {
    background: white;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
}

.country-flag-large {
    font-size: 48px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    width: 100%;
}

.country-card:hover .country-flag-large {
    transform: scale(1.2);
}

.country-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.country-count {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 12px;
}

.country-bar {
    height: 4px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.country-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, #f0c850 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

/* Trust Badges Row */
.bright-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.bright-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.bright-badge-item:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.bright-badge-item i {
    font-size: 20px;
    color: var(--gold);
}

.bright-badge-item span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* ===== ECOSYSTEM EXPLAINER SECTION ===== */
.ecosystem-section {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #12121a 0%, #1a1a25 30%, #222230 60%, #1a1a25 100%);
}

/* Gold dots decoration */
.ecosystem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(212, 175, 55, 0.15) 0%, transparent 2%),
        radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.12) 0%, transparent 1.5%),
        radial-gradient(circle at 45% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 2%),
        radial-gradient(circle at 75% 65%, rgba(212, 175, 55, 0.18) 0%, transparent 1%),
        radial-gradient(circle at 25% 55%, rgba(212, 175, 55, 0.08) 0%, transparent 2.5%),
        radial-gradient(circle at 90% 85%, rgba(212, 175, 55, 0.14) 0%, transparent 1.5%),
        radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.1) 0%, transparent 2%),
        radial-gradient(circle at 60% 35%, rgba(212, 175, 55, 0.12) 0%, transparent 1%),
        radial-gradient(circle at 35% 10%, rgba(212, 175, 55, 0.15) 0%, transparent 1.8%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 3%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle glow accents */
.ecosystem-section::after {
    content: '';
    position: absolute;
    top: 400px;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
}

/* ===== PAN FREEDOM DEFINITION ===== */
.pf-definition {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.pf-def-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 35px;
}

.pf-def-badge i {
    color: var(--gold);
    font-size: 18px;
}

.pf-def-badge span {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pf-def-headline {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

/* Text Highlight Styles */
.highlight-gold {
    background: linear-gradient(135deg, var(--gold), #f0d060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-mint {
    background: linear-gradient(135deg, #22c55e, #38ef7d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.italic-elegant {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.text-glow {
    color: #60a5fa;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

.text-glow-gold {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-highlight {
    color: var(--gold);
    font-weight: 700;
}

.pf-def-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.pf-def-lead em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.pf-def-lead strong {
    color: white;
    font-weight: 600;
}

/* ===== PILLARS ===== */
.pf-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
}

.pillar-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border-color: rgba(212, 175, 55, 0.25);
}

.pillar-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: #0a0a12;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    background: linear-gradient(135deg, var(--gold), #c9a227);
    transform: scale(1.1) rotate(5deg);
}

.pillar-icon i {
    font-size: 32px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon i {
    color: #0a0a12;
}

.pillar-number {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.pillar-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.pillar-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.pillar-card p em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.pillar-card p strong {
    color: white;
    font-weight: 600;
}

.pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pillar-tags span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.pillar-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
}

.pillar-benefit i {
    color: #22c55e;
    font-size: 20px;
}

.pillar-benefit span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.pillar-benefit strong {
    color: #22c55e;
}

/* ===== FORMULA ===== */
.pf-formula {
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
}

.formula-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.formula-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.formula-item i {
    font-size: 24px;
    color: var(--gold);
}

.formula-plus,
.formula-equals {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}

.formula-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    color: #0a0a12;
}

.formula-result i {
    font-size: 26px;
    color: #0a0a12;
}

.formula-note {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.formula-note em {
    color: var(--gold);
    font-style: italic;
}

/* ===== DIFFERENTIATORS SECTION ===== */
.pf-differentiators {
    margin-bottom: 60px;
}

.diff-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 45px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.diff-item {
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.diff-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}

.diff-item.traditional {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.diff-item.traditional::before {
    background: linear-gradient(90deg, var(--gold), #c9a227);
}

.diff-item.modern {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.02));
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.diff-item.modern::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.diff-item.rewards {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.02));
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.diff-item.rewards::before {
    background: linear-gradient(90deg, #22c55e, #38ef7d);
}

.diff-item.growth {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.08), rgba(96, 165, 250, 0.02));
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.diff-item.growth::before {
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
}

.diff-item:hover {
    transform: translateY(-5px);
}

.diff-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.diff-item.traditional .diff-icon {
    background: rgba(212, 175, 55, 0.15);
}

.diff-item.traditional .diff-icon i {
    color: var(--gold);
}

.diff-item.modern .diff-icon {
    background: rgba(139, 92, 246, 0.15);
}

.diff-item.modern .diff-icon i {
    color: #8b5cf6;
}

.diff-item.rewards .diff-icon {
    background: rgba(34, 197, 94, 0.15);
}

.diff-item.rewards .diff-icon i {
    color: #22c55e;
}

.diff-item.growth .diff-icon {
    background: rgba(96, 165, 250, 0.15);
}

.diff-item.growth .diff-icon i {
    color: #60a5fa;
}

.diff-icon i {
    font-size: 28px;
}

.diff-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.diff-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.diff-item p strong {
    color: white;
    font-weight: 600;
}

.diff-item p em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

/* Pillar tags with icons */
.pillar-tags span i {
    margin-right: 5px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-title {
        font-size: 28px;
    }
}

/* ===== DREAM LIFE SECTION ===== */
.dream-life-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #fefefe 0%, #fff9e6 30%, #fef3cd 60%, #fff9e6 100%);
    overflow: hidden;
}

.dream-life-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 100%, rgba(212, 175, 55, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
}

/* Top border accent */
.dream-life-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Dream Layout - Split */
.dream-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.dream-content {
    position: relative;
}

/* Image Gallery */
.dream-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.dream-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.dream-img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.dream-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dream-img-1 {
    height: 200px;
}

.dream-img-2 {
    height: 200px;
}

.dream-img-3 {
    height: 180px;
}

.dream-img-4 {
    height: 180px;
}

.dream-img-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dream-img-label i {
    color: var(--gold);
    font-size: 14px;
}

.dream-life-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.dream-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #1a1a1a;
    border: 2px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dream-eyebrow i {
    color: var(--gold);
}

.dream-life-title {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 35px;
}

.dream-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #b8860b, var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
}

.dream-life-text {
    font-size: 19px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.dream-life-text em,
.dream-italic {
    font-style: italic;
    color: #333;
}

.dream-life-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

.dream-life-text .text-glow-gold {
    color: #b8860b;
    text-shadow: none;
    font-weight: 700;
}

/* Dream Stats */
.dream-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0;
    padding: 40px 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.dream-stat-value {
    display: block;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #b8860b, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.dream-stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dream CTA */
.dream-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.dream-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: #1a1a1a;
}

.dream-cta i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.dream-cta:hover i {
    transform: translateX(5px);
}

/* Responsive Dream Section */
@media (max-width: 992px) {
    .dream-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .dream-content {
        text-align: center;
    }
    
    .dream-gallery {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .dream-life-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .dream-gallery {
        grid-template-columns: 1fr;
    }
    
    .dream-img-1,
    .dream-img-2,
    .dream-img-3,
    .dream-img-4 {
        height: 200px;
    }
    
    .dream-stats {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
    }
    
    .dream-life-title {
        font-size: 28px;
    }
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    padding: 100px 0 120px;
    background: #0a0a12;
    position: relative;
    overflow: hidden;
}


/* Animated Neon Gradient Orbs */
.projects-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 25%);
    animation: neonOrbs 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.projects-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    animation: neonPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes neonOrbs {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(2%, 3%) rotate(5deg);
    }
    50% {
        transform: translate(-1%, 2%) rotate(-3deg);
    }
    75% {
        transform: translate(3%, -2%) rotate(3deg);
    }
}

@keyframes neonPulse {
    0% {
        opacity: 0.5;
        filter: blur(80px);
    }
    100% {
        opacity: 1;
        filter: blur(100px);
    }
}

/* Floating Particles */
.projects-section .neon-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.projects-section .neon-particle:nth-child(1) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation: floatParticle 15s ease-in-out infinite;
}

.projects-section .neon-particle:nth-child(2) {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    top: 60%;
    right: 0%;
    animation: floatParticle 18s ease-in-out infinite reverse;
}

.projects-section .neon-particle:nth-child(3) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation: floatParticle 12s ease-in-out infinite;
}

.projects-section .neon-particle:nth-child(4) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    top: 30%;
    right: 20%;
    animation: floatParticle 14s ease-in-out infinite reverse;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(30px, -40px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.5;
    }
}

/* Grid Lines Effect - Disabled to prevent overflow */
.projects-section .neon-grid {
    display: none;
}

.projects-section .container {
    position: relative;
    z-index: 1;
}

/* Ecosystem Intro */
.eco-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.eco-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.eco-intro-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
}

.eco-intro-title em {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.eco-intro-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.eco-intro-text strong {
    color: white;
    font-weight: 600;
}

.eco-intro-text em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.stat-gold {
    color: var(--gold);
    font-weight: 700;
}

/* Ecosystem Highlights */
.eco-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.eco-highlight {
    text-align: center;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.eco-highlight:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.eco-highlight-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), #f0d060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.eco-highlight-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Projects */
.featured-projects {
    text-align: center;
}

.featured-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
}

/* Logo Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.logo-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.logo-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-8px);
}

.logo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.logo-item:hover .logo-icon {
    background: linear-gradient(135deg, var(--gold), #c9a227);
    transform: scale(1.1) rotate(5deg);
}

.logo-icon i {
    font-size: 28px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.logo-item:hover .logo-icon i {
    color: #1a1a25;
}

.logo-item span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.logo-more {
    margin-top: 30px;
}

.logo-more span {
    display: inline-block;
    padding: 15px 35px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
}

/* Responsive Logo Grid */
@media (max-width: 1200px) {
    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .eco-intro-title {
        font-size: 32px;
    }
    
    .eco-highlights {
        gap: 20px;
    }
    
    .eco-highlight {
        padding: 20px 25px;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .pf-def-headline {
        font-size: 38px;
    }
    
    .pf-pillars {
        grid-template-columns: 1fr;
    }
    
    .pillar-card.featured::before {
        top: 15px;
        left: 15px;
        transform: none;
    }
    
    .formula-line {
        gap: 15px;
    }
    
    .formula-item {
        padding: 14px 22px;
        font-size: 15px;
    }
    
    .dream-life-title {
        font-size: 36px;
    }
    
    .dream-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pf-def-headline {
        font-size: 30px;
    }
    
    .pf-def-lead {
        font-size: 17px;
    }
    
    .formula-item {
        width: 100%;
        justify-content: center;
    }
    
    .formula-plus,
    .formula-equals {
        display: none;
    }
    
    .dream-life-title {
        font-size: 28px;
    }
    
    .dream-stat-value {
        font-size: 32px;
    }
}

/* Background Slider - Limited Height */
.eco-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 900px;
    z-index: 0;
}

.eco-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.eco-slide.active {
    opacity: 1;
}

/* Dark overlay on slider - lighter to show luxury images */
.eco-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 900px;
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.65) 0%, rgba(18, 16, 26, 0.6) 50%, rgba(13, 8, 22, 0.7) 100%);
    z-index: 1;
}

/* Gradient fade from slider to gradient background - smooth transition */
.eco-bg-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(18, 18, 26, 0.3) 30%,
        rgba(18, 18, 26, 0.6) 50%,
        rgba(18, 18, 26, 0.85) 70%,
        #12121a 100%);
    z-index: 2;
}

.eco-container {
    position: relative;
    z-index: 3;
}

/* Premium Header */
.eco-premium-header {
    text-align: center;
    margin-bottom: 80px;
}

.eco-badge-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.eco-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eco-chip i {
    font-size: 14px;
}

.eco-main-title {
    font-size: 72px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.text-shimmer {
    background: linear-gradient(90deg, var(--gold), #f0d060, var(--gold), #f0d060);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    to { background-position: 200% center; }
}

.eco-tagline {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 1px;
}

/* Story Content */
.eco-story-content {
    max-width: 1100px;
    margin: 0 auto;
}

.eco-story-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.eco-story-text {
    padding-right: 20px;
}

.story-headline {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: 30px;
}

.story-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.story-body {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-body strong {
    color: var(--gold);
    font-weight: 600;
}

/* Key Points */
.eco-key-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.key-point {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.key-point:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.key-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.key-point:hover .key-icon {
    background: linear-gradient(135deg, var(--gold), #c9a227);
}

.key-icon i {
    font-size: 24px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.key-point:hover .key-icon i {
    color: #0a0a12;
}

.key-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.key-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* How It Works Flow */
.eco-flow-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 50px;
}

.flow-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.flow-title i {
    color: var(--gold);
    font-size: 28px;
}

.eco-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.flow-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.flow-step:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
    transform: translateY(-8px);
}

.flow-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), #f0c850);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
}

.flow-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.flow-arrow {
    color: var(--gold);
    font-size: 24px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* ===== ECOSYSTEM PROJECTS SHOWCASE ===== */
.eco-projects {
    margin-top: 100px;
    text-align: center;
}

.projects-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.projects-title i {
    color: var(--gold);
    font-size: 40px;
}

.projects-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

/* Project Tabs */
.project-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.project-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-tab:hover,
.project-tab.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: white;
}

.tab-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tab-dot.live {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.tab-dot.coming {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.tab-dot.future {
    background: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.project-grid.hidden {
    display: none;
}

.project-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.03));
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.1);
}

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

.project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.project-img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    padding: 8px;
    transition: all 0.4s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.project-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.project-card:hover .project-logo {
    background: linear-gradient(135deg, var(--gold), #c9a227);
    transform: scale(1.05);
}

.project-logo i {
    font-size: 26px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.project-card:hover .project-logo i {
    color: #0a0a12;
}

.project-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
    opacity: 0.8;
}

.project-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.project-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pv-rate {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
}

.pv-rate i {
    font-size: 14px;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--gold);
}

.coming-tag,
.future-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.coming-tag {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.future-tag {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status i {
    font-size: 8px;
}

.project-status.live {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.project-status.live i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.project-status.coming {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.project-status.future {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* TBA Cards */
.project-card.tba-card {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px dashed rgba(139, 92, 246, 0.3);
}

.project-card.tba-card:hover {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.15), rgba(255, 255, 255, 0.05));
    border-color: rgba(139, 92, 246, 0.5);
}

.project-logo.tba {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
}

.project-logo.tba i {
    color: #8b5cf6;
}

.project-card.tba-card:hover .project-logo.tba {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.project-card.tba-card:hover .project-logo.tba i {
    color: white;
}

/* More Coming Card */
.project-card.more-coming-card {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
    border: 2px dashed rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 280px;
}

.project-card.more-coming-card:hover {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-color: var(--gold);
    transform: translateY(-10px);
}

.more-coming-content {
    padding: 20px;
}

.more-coming-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.project-card.more-coming-card:hover .more-coming-icon {
    background: linear-gradient(135deg, var(--gold), #c9a227);
    transform: scale(1.1) rotate(90deg);
}

.more-coming-icon i {
    font-size: 40px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.project-card.more-coming-card:hover .more-coming-icon i {
    color: #0a0a12;
}

.more-coming-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.more-coming-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 15px;
}

.more-coming-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: #0a0a12;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
}

.projects-footer {
    margin-top: 30px;
}

.project-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

/* ===== JOURNEY SECTION ===== */
.journey-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f6f0 50%, #fff9e6 100%);
    position: relative;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.journey-header {
    text-align: center;
    margin-bottom: 70px;
}

.journey-badge {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.journey-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.journey-subtitle {
    font-size: 18px;
    color: #666;
}

/* Journey Flow */
.journey-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.journey-step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    height: 300px;
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journey-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.journey-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.journey-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.journey-step:hover .journey-icon {
    background: linear-gradient(135deg, var(--gold), #c9a227);
    transform: scale(1.1);
}

.journey-icon i {
    font-size: 36px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.journey-step:hover .journey-icon i {
    color: white;
}

.journey-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.journey-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.journey-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.3));
    margin-top: 100px;
    flex-shrink: 0;
}

/* Journey CTA */
.journey-cta {
    text-align: center;
}

.btn-journey {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-journey:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: #1a1a1a;
}

.btn-journey i {
    font-size: 22px;
}

/* Responsive */
@media (max-width: 1200px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .journey-flow {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .journey-connector {
        display: none;
    }
    
    .journey-step {
        flex: 1 1 45%;
    }
    
    .journey-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .project-tabs {
        flex-wrap: wrap;
    }
    
    .journey-step {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .journey-section {
        padding: 80px 0;
    }
    
    .journey-title {
        font-size: 28px;
    }
    
    .btn-journey {
        padding: 16px 35px;
        font-size: 16px;
    }
}

/* Ecosystem Responsive */
@media (max-width: 992px) {
    .eco-main-title {
        font-size: 48px;
    }
    
    .eco-story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-headline {
        font-size: 32px;
    }
    
    .eco-flow {
        flex-wrap: wrap;
    }
    
    .flow-step {
        flex: 1 1 45%;
    }
    
    .flow-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .ecosystem-section {
        padding: 80px 0;
    }
    
    .eco-main-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .eco-tagline {
        font-size: 16px;
    }
    
    .eco-flow-section {
        padding: 30px 20px;
    }
    
    .flow-step {
        flex: 1 1 100%;
    }
    
    .eco-badge-row {
        gap: 10px;
    }
    
    .eco-chip {
        padding: 8px 14px;
        font-size: 11px;
    }
}

/* Benefits */
.eco-benefits {
    margin-bottom: 60px;
}

.eco-benefits-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 45px;
}

.eco-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.eco-benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.eco-benefit-card:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.eco-benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--gold), #c9a227);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 32px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.eco-benefit-card:hover .benefit-icon i {
    color: #0a0a12;
}

.eco-benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.eco-benefit-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* CTA */
.eco-cta {
    text-align: center;
}

.btn-gold-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--gold), #c9a227);
    color: #0a0a12;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-gold-large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

.btn-gold-large i {
    font-size: 22px;
}

.eco-cta-text {
    margin-top: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== DREAM JOURNEY SECTION ===== */
.dream-journey {
    margin-bottom: 0;
    padding: 100px 0 120px;
    background: #0a0a12;
    position: relative;
    overflow: hidden;
}

/* Animated Neon Gradient Orbs for Dream Journey */
.dream-journey::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 25%);
    animation: neonOrbs 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.dream-journey::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    animation: neonPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.dream-journey > * {
    position: relative;
    z-index: 1;
}

.dream-header {
    text-align: center;
    margin-bottom: 70px;
}

.dream-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
}

.dream-eyebrow::before,
.dream-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.dream-eyebrow::before {
    right: calc(100% + 15px);
    background: linear-gradient(90deg, transparent, var(--gold));
}

.dream-eyebrow::after {
    left: calc(100% + 15px);
    background: linear-gradient(90deg, var(--gold), transparent);
}

.dream-title {
    font-size: 44px;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.3;
}

.dream-intro {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Dream Story Flow */
.dream-story {
    max-width: 900px;
    margin: 0 auto;
}

.dream-chapter {
    display: flex;
    gap: 35px;
    margin-bottom: 15px;
    position: relative;
}

.chapter-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.chapter-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.dream-chapter:hover .chapter-icon {
    background: linear-gradient(135deg, var(--gold), #c9a227);
    border-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.chapter-icon i {
    font-size: 28px;
    color: var(--gold);
    transition: all 0.4s ease;
}

.dream-chapter:hover .chapter-icon i {
    color: #0a0a12;
}

.chapter-icon.gold-glow {
    background: linear-gradient(135deg, var(--gold), #c9a227);
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.chapter-icon.gold-glow i {
    color: #0a0a12;
}

.chapter-line {
    width: 2px;
    flex-grow: 1;
    min-height: 40px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.1));
    margin-top: 10px;
}

.final-chapter .chapter-line {
    display: none;
}

.chapter-content {
    padding-bottom: 40px;
    padding-top: 8px;
}

.chapter-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.chapter-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.chapter-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.chapter-content p strong {
    color: var(--gold);
    font-weight: 600;
}

/* Vision Items */
.dream-vision {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.vision-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.vision-item:hover {
    background: linear-gradient(135deg, var(--gold), #c9a227);
    border-color: var(--gold);
    color: #0a0a12;
    transform: translateY(-3px);
}

.vision-item i {
    font-size: 18px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.vision-item:hover i {
    color: #0a0a12;
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.4); }
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Dream Closing */
.dream-closing {
    margin: 80px auto 80px;
    padding: 0 40px;
    max-width: 900px;
    text-align: center;
}

.closing-inner {
    position: relative;
    padding: 50px 60px;
}

.closing-line-top,
.closing-line-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.closing-line-top {
    top: 0;
}

.closing-line-bottom {
    bottom: 0;
}

.closing-line-top::before,
.closing-line-bottom::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
}

.closing-line-top::before {
    top: -3px;
}

.closing-line-bottom::before {
    bottom: -3px;
}

.closing-text {
    display: block;
}

.quote-small {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.quote-main {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: white;
    line-height: 1.4;
}

.gradient-text-impact {
    background: linear-gradient(135deg, #d4af37 0%, #f7d774 30%, #fff 50%, #f7d774 70%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shineText 3s linear infinite;
    font-weight: 800;
    white-space: nowrap;
}

@keyframes shineText {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* Dream Journey Responsive */
@media (max-width: 768px) {
    .dream-title {
        font-size: 32px;
    }
    
    .dream-intro {
        font-size: 17px;
    }
    
    .dream-chapter {
        gap: 20px;
    }
    
    .chapter-icon {
        width: 55px;
        height: 55px;
    }
    
    .chapter-icon i {
        font-size: 22px;
    }
    
    .chapter-content h4 {
        font-size: 20px;
    }
    
    .chapter-content p {
        font-size: 15px;
    }
    
    .dream-vision {
        gap: 10px;
    }
    
    .vision-item {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .closing-text {
        font-size: 18px;
    }
    
    .dream-closing {
        padding: 0 20px;
    }
    
    .closing-inner {
        padding: 30px 20px;
    }
    
    .quote-small {
        font-size: 16px;
    }
    
    .quote-main {
        font-size: 24px;
    }
    
    .closing-line-top,
    .closing-line-bottom {
        width: 120px;
    }
    
    .dream-eyebrow::before,
    .dream-eyebrow::after {
        display: none;
    }
}

/* Ecosystem Responsive */
@media (max-width: 992px) {
    .eco-main-grid {
        grid-template-columns: 1fr;
    }
    
    .eco-title {
        font-size: 38px;
    }
    
    .eco-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ecosystem-section {
        padding: 80px 0;
    }
    
    .eco-about-card,
    .eco-steps {
        padding: 30px;
    }
    
    .eco-title {
        font-size: 32px;
    }
    
    .eco-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-gold-large {
        padding: 16px 35px;
        font-size: 16px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .bright-countries {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .bright-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bright-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .bright-trust-section {
        padding: 60px 0;
    }
    
    .bright-countries {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bright-trust-badges {
        gap: 15px;
    }
    
    .bright-badge-item {
        padding: 10px 18px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .bright-stats-row {
        grid-template-columns: 1fr;
    }
    
    .bright-countries {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .bright-title {
        font-size: 28px;
    }
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(20, 18, 25, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(30, 28, 35, 0.9);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.trust-icon {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 22px;
    color: #0a0a12;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.trust-text span {
    font-size: 12px;
    color: var(--text-muted);
}

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

.global-header {
    margin-bottom: 30px;
}

.global-title {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.global-title i {
    color: var(--gold);
    font-size: 32px;
}

.global-subtitle {
    color: var(--text-muted);
    font-size: 15px;
}

.world-map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.world-map {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.map-img {
    width: 100%;
    height: auto;
    opacity: 0.3;
    filter: invert(1) sepia(1) saturate(0.5) hue-rotate(10deg);
}

.dotted-world-map {
    width: 100%;
    height: 250px;
    position: relative;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
}

@keyframes mapPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.7; }
}

.map-dot.pulse {
    animation: mapPulse 2s ease-in-out infinite;
}

.map-dot.pulse:nth-child(2) { animation-delay: 0.2s; }
.map-dot.pulse:nth-child(3) { animation-delay: 0.4s; }
.map-dot.pulse:nth-child(4) { animation-delay: 0.6s; }
.map-dot.pulse:nth-child(5) { animation-delay: 0.8s; }
.map-dot.pulse:nth-child(6) { animation-delay: 1.0s; }
.map-dot.pulse:nth-child(7) { animation-delay: 1.2s; }
.map-dot.pulse:nth-child(8) { animation-delay: 1.4s; }

.map-dot {
    position: absolute;
    width: 14px;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    cursor: pointer;
}

.map-dot::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.country-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.country-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.country-stat:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.country-flag {
    font-size: 20px;
}

.country-name {
    font-size: 13px;
    color: var(--text-light);
}

.country-members {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
}

/* ============================================
   FOMO / LIVE ACTIVITY SECTION
============================================ */
.fomo-section {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, rgba(26, 16, 53, 0.5) 0%, rgba(10, 10, 18, 0.9) 100%);
}

.fomo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.fomo-left {
    padding-right: 30px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 20px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: live-blink 1s infinite;
}

@keyframes live-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.fomo-title {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.fomo-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    animation: slide-in 0.5s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.activity-item:nth-child(1) { animation-delay: 0s; }
.activity-item:nth-child(2) { animation-delay: 0.1s; }
.activity-item:nth-child(3) { animation-delay: 0.2s; }
.activity-item:nth-child(4) { animation-delay: 0.3s; }

@keyframes slide-in {
    to { opacity: 1; transform: translateX(0); }
}

.activity-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.activity-details {
    flex: 1;
    font-size: 14px;
    color: var(--text-light);
}

.activity-name {
    font-weight: 600;
    color: var(--white);
}

.activity-country {
    color: var(--gold);
}

.activity-amount {
    font-weight: 700;
    color: #10b981;
}

.activity-time {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

.fomo-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fomo-stats-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.fomo-stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fomo-stat-icon i {
    font-size: 24px;
    color: var(--gold);
}

.fomo-stat-value {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fomo-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

.fomo-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.fomo-cta-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.live-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.chain-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--purple-1);
}

.chain-verified-badge i {
    font-size: 14px;
}

.activity-item.verified {
    border-left: 3px solid var(--green-2);
}

.activity-item.achievement {
    border-left: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.03));
}

.activity-verified {
    margin-left: 8px;
    color: var(--green-2);
    font-size: 14px;
}

.activity-item.achievement .activity-verified {
    color: var(--gold);
}

.activity-avatar.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
}

.activity-amount.tier {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.panchain-info-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.05));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.panchain-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--purple-1);
}

.panchain-header i {
    font-size: 20px;
}

.panchain-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panchain-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panchain-benefits li:last-child {
    border-bottom: none;
}

.panchain-benefits li i {
    color: var(--green-2);
    font-size: 16px;
}

.panchain-benefits li strong {
    color: var(--white);
}

/* ============================================
   ENHANCED HERO - PANCHAIN BRANDING
============================================ */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(212, 175, 55, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.6), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(102, 126, 234, 0.7), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(212, 175, 55, 0.5), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(118, 75, 162, 0.6), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(3px 3px at 200px 50px, rgba(212, 175, 55, 0.7), transparent),
        radial-gradient(2px 2px at 250px 90px, rgba(102, 126, 234, 0.5), transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(212, 175, 55, 0.6), transparent),
        radial-gradient(2px 2px at 350px 30px, rgba(118, 75, 162, 0.5), transparent),
        radial-gradient(3px 3px at 400px 100px, rgba(212, 175, 55, 0.8), transparent),
        radial-gradient(2px 2px at 450px 60px, rgba(102, 126, 234, 0.6), transparent),
        radial-gradient(2px 2px at 500px 140px, rgba(212, 175, 55, 0.5), transparent),
        radial-gradient(2px 2px at 550px 80px, rgba(118, 75, 162, 0.7), transparent),
        radial-gradient(3px 3px at 600px 40px, rgba(212, 175, 55, 0.6), transparent);
    background-size: 650px 200px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 1;
    }
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    justify-content: center;
}

.hero-badge.blockchain-badge {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.4);
    color: var(--purple-1);
}

.hero-badge.free-badge {
    background: linear-gradient(135deg, rgba(56, 239, 125, 0.15), rgba(17, 153, 142, 0.1));
    border: 1px solid rgba(56, 239, 125, 0.4);
    color: var(--green-2);
}

.hero-title-line {
    display: block;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.hero-title-main {
    display: block;
    font-size: 56px;
    line-height: 1.1;
}

.panchain-text {
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-1), var(--cyan-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-value-props {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.value-prop i {
    color: var(--gold);
    font-size: 18px;
}

.shimmer-btn {
    position: relative;
    overflow: hidden;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--gold);
}

.hero-floating-card.verified-card {
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.verified-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--purple-1), var(--cyan-1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified-badge i {
    font-size: 14px;
    color: white;
}

.verified-label {
    display: block;
    font-size: 10px;
    color: var(--purple-1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-floating-card.card-3 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1s;
}

.hero-floating-card.blockchain-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.4);
}

.chain-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: var(--green-2);
    text-transform: uppercase;
    font-weight: 600;
}

.chain-dot {
    width: 6px;
    height: 6px;
    background: var(--green-2);
    border-radius: 50%;
    animation: live-blink 1s infinite;
}

/* ============================================
   REVENUE STREAMS SECTION
============================================ */
.revenue-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #faf8f5 0%, #f5f0e8 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Gradient Orbs for Bright Section */
.revenue-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.06) 0%, transparent 25%);
    animation: neonOrbs 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.revenue-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    animation: neonPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.revenue-section .container {
    position: relative;
    z-index: 1;
}

.revenue-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge.blockchain-badge {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.08));
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: var(--purple-1);
}

/* Revenue section specific overrides for bright background */
.revenue-section .section-title {
    color: #1a1a2e;
}

.revenue-section .section-subtitle {
    color: #555;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.revenue-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.revenue-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

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

.revenue-card.featured {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.03));
    border-color: rgba(212, 175, 55, 0.4);
}

.revenue-card.featured::before {
    opacity: 1;
}

.revenue-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.revenue-icon i {
    font-size: 28px;
    color: var(--gold);
}

.revenue-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.08);
    color: #666;
}

.revenue-badge.popular {
    background: linear-gradient(135deg, var(--green-1), var(--green-2));
    color: #000;
}

.revenue-badge.high {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
}

.revenue-badge.new {
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
    color: white;
}

.revenue-badge.legendary {
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: white;
}

.revenue-title {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.revenue-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.revenue-example {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
}

.example-label {
    font-size: 12px;
    color: #888;
}

.example-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

.revenue-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.blockchain-verification {
    display: flex;
    align-items: center;
    gap: 20px;
}

.chain-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chain-icon i {
    font-size: 24px;
    color: white;
}

.chain-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
    color: #1a1a2e;
}

.chain-text span {
    font-size: 13px;
    color: #666;
}

.chain-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--purple-1);
    font-size: 14px;
    font-weight: 600;
}

.chain-link:hover {
    color: var(--cyan-1);
}

/* ============================================
   FEATURED PROJECTS SECTION
============================================ */
.featured-projects {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.95) 0%, rgba(18, 8, 42, 0.9) 100%);
}

.featured-header {
    text-align: center;
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.project-card.upcoming {
    border-style: dashed;
    border-color: rgba(102, 126, 234, 0.3);
}

.project-card.upcoming::before {
    background: linear-gradient(90deg, var(--purple-1), var(--purple-2));
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.live {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: live-blink 1.5s infinite;
}

.status-dot.upcoming {
    background: var(--purple-1);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.project-logo {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.project-logo img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.project-logo.upcoming-logo {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px dashed rgba(102, 126, 234, 0.3);
}

.project-logo.upcoming-logo i {
    font-size: 32px;
    color: var(--purple-1);
}

.project-name {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.project-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.project-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 20px;
}

.project-stats span i {
    color: var(--gold);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--gold-light);
    gap: 10px;
}

.project-notify {
    padding: 10px 15px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    text-align: center;
}

.notify-text {
    font-size: 13px;
    color: var(--purple-1);
    font-weight: 500;
}

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

/* ============================================
   DASHBOARD PREVIEW SECTION
============================================ */
.dashboard-preview-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 10, 18, 0.95) 0%, rgba(13, 8, 22, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

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

.preview-header {
    text-align: center;
    margin-bottom: 60px;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.preview-mockup {
    background: linear-gradient(135deg, rgba(20, 15, 35, 0.9), rgba(10, 10, 18, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mockup-dots span:first-child { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:last-child { background: #27ca40; }

.mockup-url {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 20px;
    border-radius: 5px;
}

.mockup-body {
    display: flex;
    min-height: 350px;
}

.mockup-sidebar {
    width: 60px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-nav-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.mockup-nav-item.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
}

.mockup-main {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mockup-wallets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mockup-wallet {
    padding: 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.mockup-wallet.gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.mockup-wallet.purple {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.05));
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.mockup-wallet.green {
    background: linear-gradient(135deg, rgba(56, 239, 125, 0.15), rgba(17, 153, 142, 0.05));
    border: 1px solid rgba(56, 239, 125, 0.3);
}

.wallet-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wallet-value {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.mockup-wallet.gold .wallet-value { color: var(--gold); }
.mockup-wallet.purple .wallet-value { color: var(--purple-1); }
.mockup-wallet.green .wallet-value { color: var(--green-2); }

.wallet-tag {
    font-size: 10px;
    color: var(--text-muted);
}

.mockup-stats {
    display: flex;
    gap: 20px;
}

.mockup-stat {
    flex: 1;
}

.stat-title {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.stat-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.stat-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    animation: fillBar 2s ease-out forwards;
}

@keyframes fillBar {
    from { width: 0; }
}

.stat-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

.mockup-tree {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.tree-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
}

.tree-header span:first-child {
    font-weight: 600;
}

.tree-count {
    color: var(--gold);
}

.tree-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tree-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
    position: relative;
}

.tree-node.root {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.tree-node.root::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 2px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
}

.tree-branch {
    display: flex;
    gap: 60px;
    position: relative;
}

.tree-branch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.tree-node.left,
.tree-node.right {
    position: relative;
}

.tree-node.left::before,
.tree-node.right::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    width: 2px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
}

.preview-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: var(--gold);
}

.feature-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.feature-text span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.preview-cta {
    text-align: center;
    margin-top: 40px;
}

.preview-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ============================================
   LUXURY LIFESTYLE SHOWCASE
============================================ */
.luxury-showcase {
    padding: 100px 0;
    background: #0a0a12;
    position: relative;
    overflow: hidden;
}

/* Animated Neon Gradient Orbs for Luxury Showcase */
.luxury-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 25%);
    animation: neonOrbs 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.luxury-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    animation: neonPulse 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.luxury-showcase .luxury-header,
.luxury-showcase .luxury-videos,
.luxury-showcase .container {
    position: relative;
    z-index: 1;
}

.luxury-header {
    text-align: center;
    margin-bottom: 60px;
}

.gold-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.gold-badge i {
    color: var(--gold);
}

.luxury-videos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.luxury-video-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
}

.video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s ease;
}

.luxury-video-card:hover .image-container {
    transform: scale(1.1);
}

.luxury-video-card:hover video {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.7) 100%);
    transition: all 0.5s ease;
}

.luxury-video-card:hover .video-overlay {
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.0) 40%,
        rgba(0, 0, 0, 0.8) 100%);
}

.luxury-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.luxury-video-card:hover .luxury-content {
    transform: translateY(0);
}

.luxury-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.luxury-icon i {
    font-size: 24px;
    color: #000;
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.luxury-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.luxury-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-tag i {
    font-size: 12px;
}

.luxury-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.luxury-stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.luxury-stat-item .stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.luxury-cta {
    text-align: center;
    margin-top: 20px;
}

.luxury-cta p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* ============================================
   ENHANCED RESPONSIVE STYLES
============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    /* Enhanced Hero */
    .hero-title-main {
        font-size: 42px;
    }
    
    .hero-value-props {
        gap: 15px;
    }
    
    .value-prop {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    /* Revenue Section */
    .revenue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .revenue-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .blockchain-verification {
        flex-direction: column;
        text-align: center;
    }
    
    /* Ecosystem Categories */
    .eco-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Trust Section */
    .trust-items {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .trust-item {
        flex: 1 1 200px;
    }
    
    /* Rewards Section */
    .rewards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Dashboard Preview */
    .preview-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mockup-wallets {
        grid-template-columns: 1fr;
    }
    
    /* Luxury Showcase */
    .luxury-videos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .luxury-video-card {
        aspect-ratio: 4/5;
    }
    
    .luxury-stats {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .luxury-stat-item .stat-number {
        font-size: 40px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 40px 30px;
    }
    
    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    /* Ecosystem Categories */
    .eco-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .eco-cat-card {
        padding: 24px;
    }
    
    /* Projects Wall */
    .eco-projects-wall {
        margin-top: 40px;
    }
    
    .eco-mini-tile {
        min-width: 100px;
        padding: 10px 12px;
    }
    
    .eco-mini-tile img {
        width: 28px;
        height: 28px;
    }
    
    .eco-mini-tile span {
        font-size: 11px;
    }
    
    /* Trust Section */
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-items {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-item {
        width: 100%;
        max-width: 280px;
    }
    
    /* New Trust Section */
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        padding: 12px 18px;
        width: 100%;
        max-width: 320px;
    }
    
    .global-title {
        font-size: 22px;
        flex-direction: column;
        gap: 8px;
    }
    
    .country-stats {
        gap: 10px;
    }
    
    .country-stat {
        padding: 8px 14px;
    }
    
    /* FOMO Section */
    .fomo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fomo-left {
        padding-right: 0;
    }
    
    .fomo-title {
        font-size: 28px;
    }
    
    .fomo-stats-card {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 20px;
    }
    
    .fomo-stat-value {
        font-size: 24px;
    }
    
    .activity-item {
        padding: 12px 14px;
    }
    
    .activity-details {
        font-size: 13px;
    }
    
    /* Enhanced Hero Mobile */
    .hero-title-line {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .hero-title-main {
        font-size: 32px;
    }
    
    .hero-value-props {
        flex-direction: column;
        gap: 10px;
    }
    
    .value-prop {
        width: 100%;
        justify-content: center;
    }
    
    .hero-floating-card.card-3 {
        display: none;
    }
    
    /* Revenue Section Mobile */
    .revenue-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .revenue-card {
        padding: 25px 20px;
    }
    
    .revenue-title {
        font-size: 18px;
    }
    
    .revenue-footer {
        text-align: center;
    }
    
    .blockchain-verification {
        flex-direction: column;
    }
    
    /* Dashboard Preview Mobile */
    .mockup-sidebar {
        display: none;
    }
    
    .mockup-wallets {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .wallet-value {
        font-size: 18px;
    }
    
    .mockup-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .preview-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .mockup-tree {
        display: none;
    }
    
    /* Luxury Showcase Mobile */
    .luxury-showcase {
        padding: 60px 0;
    }
    
    .luxury-videos {
        grid-template-columns: 1fr;
    }
    
    .luxury-video-card {
        aspect-ratio: 16/10;
    }
    
    .luxury-content {
        padding: 20px;
    }
    
    .luxury-title {
        font-size: 20px;
    }
    
    .luxury-stats {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 40px 0;
    }
    
    .luxury-stat-item .stat-number {
        font-size: 36px;
    }
    
    .luxury-stat-item .stat-label {
        font-size: 12px;
    }
    
    .luxury-cta p {
        font-size: 16px;
    }
    
    /* Featured Projects */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        padding: 20px;
    }
    
    .project-name {
        font-size: 18px;
    }
    
    /* Rewards Section */
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .reward-card {
        padding: 30px 20px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-quote {
        font-size: 20px;
    }
    
    /* FAQ Page */
    .faq-header h1 {
        font-size: 32px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    /* Legal Pages */
    .legal-header h1 {
        font-size: 32px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section p, .legal-section li {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-logo-section {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-column h4 {
        font-size: 16px;
    }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-highlight {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary, .nav-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Hero Stats */
    .stat-value {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Why Join Cards */
    .why-card {
        padding: 25px 20px;
    }
    
    .why-card h3 {
        font-size: 20px;
    }
    
    .why-card p {
        font-size: 14px;
    }
    
    /* Ecosystem Section */
    .ecosystem-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .eco-more-text {
        font-size: 16px;
    }
    
    /* Video Section */
    .ecosystem-video-text {
        font-size: 24px;
        padding: 0 15px;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 14px;
    }
    
    /* FAQ */
    .faq-header h1 {
        font-size: 28px;
    }
    
    .faq-category h2 {
        font-size: 18px;
    }
    
    .faq-item {
        padding: 18px;
    }
    
    /* Legal & Info Pages */
    .legal-page,
    .info-page {
        padding: 90px 0 50px;
    }
    
    .legal-header h1,
    .info-header h1 {
        font-size: 26px;
    }
    
    .info-header p {
        font-size: 15px;
    }
    
    .legal-content {
        padding: 25px 18px;
    }
    
    .legal-section h2 {
        font-size: 18px;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 14px;
    }
    
    /* Steps Grid - Single Column on Mobile */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-card {
        padding: 35px 25px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 30px;
    }
    
    .step-card h3 {
        font-size: 18px;
    }
    
    /* Earnings */
    .earnings-breakdown h2 {
        font-size: 28px;
    }
    
    .earning-card {
        padding: 30px 20px;
    }
    
    .earning-card h4 {
        font-size: 18px;
    }
    
    /* Support Page */
    .support-card {
        padding: 30px 20px;
    }
    
    .support-icon {
        width: 65px;
        height: 65px;
    }
    
    .support-icon i {
        font-size: 28px;
    }
    
    .support-card h3 {
        font-size: 20px;
    }
    
    .help-topics h2 {
        font-size: 28px;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .topic-item {
        padding: 25px 20px;
    }
    
    /* Community Page */
    .community-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .community-channels h2,
    .community-values h2 {
        font-size: 28px;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .channel-card {
        padding: 30px 20px;
    }
    
    .channel-icon {
        width: 60px;
        height: 60px;
    }
    
    .channel-icon i {
        font-size: 26px;
    }
    
    .channel-card h3 {
        font-size: 18px;
    }
    
    .value-item {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 26px;
    }
    
    .value-item h4 {
        font-size: 18px;
    }
    
    /* CTA in Info Pages */
    .info-page .cta-section {
        padding: 35px 20px;
    }
    
    .info-page .cta-section h3 {
        font-size: 22px;
    }
    
    .info-page .cta-section p {
        font-size: 15px;
    }
    
    /* Navbar */
    .navbar .container {
        padding: 0 16px;
    }
    
    .logo-img {
        height: 38px !important;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-logo-img {
        height: 40px !important;
    }
}

/* ============================================
   ADDITIONAL MOBILE FIXES
============================================ */

/* Bright Trust Section — stat grid collapse */
@media (max-width: 768px) {
    .bright-trust-section {
        padding: 60px 0;
    }
    .bright-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }
    .bright-countries {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .bright-title {
        font-size: 32px;
    }
    .bright-subtitle {
        font-size: 15px;
    }
    .bright-section-header {
        margin-bottom: 36px;
    }
    .bright-stat-card {
        padding: 24px 16px;
    }
    .stat-icon-wrap {
        width: 54px;
        height: 54px;
    }
    .stat-icon-wrap i {
        font-size: 24px;
    }
    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .bright-trust-section {
        padding: 48px 0;
    }
    .bright-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 28px;
    }
    .bright-countries {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .bright-title {
        font-size: 26px;
    }
    .bright-stat-card {
        padding: 18px 12px;
    }
    .stat-number {
        font-size: 26px;
    }
    .stat-label {
        font-size: 11px;
    }
    .hero-value-props {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .bright-trust-badges {
        gap: 12px;
    }
    .bright-badge-item {
        padding: 12px 18px;
        font-size: 13px;
    }
}
