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

:root {
    /* Colors */
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --tertiary-black: #2a2a2a;
    --gold: #FFD700;
    --gold-dark: #FFA500;
    --cyan: #00D4FF;
    --cyan-dark: #0099FF;
    --pink: #FF6B9D;
    --pink-dark: #C238A0;
    --green: #00FF88;
    --green-dark: #00CC66;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #cccccc;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 107, 157, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 20s ease infinite;
}

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

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        );
    pointer-events: none;
    z-index: 0;
    animation: gridMove 60s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(40px) translateX(40px);
    }
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ================================
   Typography
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--cyan), var(--pink));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

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

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--gold), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    transition: var(--transition-smooth);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ================================
   Buttons
   ================================ */
.cta-button {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-black);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.primary-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-black);
    padding: 18px 40px;
    font-size: 16px;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3);
}

.primary-cta:hover::before {
    width: 300px;
    height: 300px;
}

.secondary-cta {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 16px 38px;
    font-size: 16px;
}

.secondary-cta:hover {
    background: var(--white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.button-icon {
    font-size: 18px;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float3D 15s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 15%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: float3D 12s ease-in-out infinite reverse;
}

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

.floating-paw {
    position: absolute;
    font-size: 40px;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.paw-1 { top: 10%; left: 10%; animation-delay: 0s; }
.paw-2 { top: 60%; left: 80%; animation-delay: 5s; }
.paw-3 { top: 80%; left: 20%; animation-delay: 10s; }
.paw-4 { top: 30%; left: 70%; animation-delay: 15s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 20px) rotate(5deg); }
}

/* 3D Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbFloat 15s ease-in-out infinite;
    pointer-events: none;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 15%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 10%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.25) 0%, transparent 70%);
    animation-delay: 3s;
}

.orb-3 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, transparent 70%);
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.8;
    }
    66% {
        transform: translate(-50px, 50px) scale(0.8);
        opacity: 0.4;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-size: 72px;
    font-family: var(--font-display);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--light-gray);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-description {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.stat-number {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

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

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-decoration {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: spin3D 20s linear infinite;
    box-shadow: 
        inset 0 0 30px rgba(255, 215, 0, 0.1),
        0 0 40px rgba(255, 215, 0, 0.1);
}

.circle-1 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 215, 0, 0.3);
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
}

.circle-2 {
    width: 500px;
    height: 500px;
    border-color: rgba(0, 212, 255, 0.3);
    animation-direction: reverse;
    background: radial-gradient(circle at 70% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    box-shadow: 
        inset 0 0 30px rgba(0, 212, 255, 0.1),
        0 0 40px rgba(0, 212, 255, 0.1);
}

@keyframes spin3D {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(180deg) scale(1.05);
        opacity: 0.8;
    }
    100% { 
        transform: rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

.hero-logo {
    width: 350px;
    height: 350px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(255, 215, 0, 0.4));
    animation: bounce3D 3s ease-in-out infinite;
}

@keyframes bounce3D {
    0%, 100% { 
        transform: translateY(0) rotateY(0deg);
        filter: drop-shadow(0 20px 60px rgba(255, 215, 0, 0.4));
    }
    50% { 
        transform: translateY(-20px) rotateY(5deg);
        filter: drop-shadow(0 30px 80px rgba(255, 215, 0, 0.6));
    }
}

/* ================================
   Section Common Styles
   ================================ */
section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-size: 56px;
    font-family: var(--font-display);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ================================
   About Section
   ================================ */
.about {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--tertiary-black);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--cyan), var(--pink));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.2);
}

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

.feature-card:hover::after {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-25%, -25%) scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: translate(-25%, -25%) scale(1);
        opacity: 0.6;
    }
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

/* ================================
   Tokenomics Section
   ================================ */
.tokenomics {
    background: var(--secondary-black);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tokenomics-chart {
    display: flex;
    justify-content: center;
}

.chart-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.donut-chart {
    width: 100%;
    height: 100%;
    transform: scale(1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.chart-value {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tokenomics-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.token-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.token-color {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    flex-shrink: 0;
}

.token-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.token-percentage {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.token-description {
    font-size: 14px;
    color: var(--gray);
}

/* ================================
   Roadmap Section
   ================================ */
.roadmap {
    background: linear-gradient(180deg, var(--secondary-black) 0%, var(--primary-black) 100%);
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--cyan), var(--pink), var(--green));
    z-index: 0;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.timeline-marker {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--tertiary-black);
    border: 3px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.timeline-icon {
    font-size: 24px;
}

.timeline-item.completed .timeline-marker {
    border-color: var(--green);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.timeline-item.active .timeline-marker {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
}

.timeline-content {
    background: var(--tertiary-black);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.timeline-content:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.timeline-phase {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.timeline-list {
    list-style: none;
    text-align: left;
    flex: 1;
}

.timeline-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.timeline-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ================================
   Community Section
   ================================ */
.community {
    background: var(--secondary-black);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto 80px;
}

.social-card {
    background: var(--tertiary-black);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 280px;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: currentColor;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.social-card.twitter:hover { 
    color: #1DA1F2;
    box-shadow: 0 20px 60px rgba(29, 161, 242, 0.3);
}
.social-card.telegram:hover { 
    color: #0088cc;
    box-shadow: 0 20px 60px rgba(0, 136, 204, 0.3);
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 40px;
    height: 40px;
    transition: var(--transition-smooth);
}

.social-card:hover .social-icon svg {
    transform: scale(1.2);
}

.social-card h3 {
    font-size: 24px;
    margin: 0;
}

.social-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.social-stats {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
}

.join-community {
    background: linear-gradient(135deg, var(--gold), var(--cyan));
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

.join-community-content {
    max-width: 600px;
    margin: 0 auto;
}

.join-community-title {
    font-size: 36px;
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 900;
}

.join-community-description {
    font-size: 16px;
    color: rgba(10, 10, 10, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.join-community-button {
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    background: var(--primary-black);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-community-button:hover {
    background: var(--secondary-black);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--primary-black);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
    max-width: 400px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray);
    margin: 20px 0;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--tertiary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-list a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-list a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.copyright, .disclaimer {
    font-size: 13px;
    color: var(--gray);
    margin: 5px 0;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .timeline::before {
        display: none;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-logo {
        width: 250px;
        height: 250px;
    }
    
    .circle-1 {
        width: 300px;
        height: 300px;
    }
    
    .circle-2 {
        width: 350px;
        height: 350px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        width: 300px;
        height: 300px;
    }
    
    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
    }
    
    .timeline-icon {
        font-size: 20px;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .timeline-title {
        font-size: 20px;
    }
    
    .timeline-list li {
        font-size: 13px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .join-community {
        padding: 40px 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-column {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-title {
        font-size: 18px;
    }
}

