* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #9333ea;
    --primary-dark: #7c3aed;
    --secondary: #3b82f6;
    --accent: #fbbf24;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0a0a0f;
    --dark-lighter: #13131d;
    --dark-card: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dim: rgba(255, 255, 255, 0.5);
    --border: rgba(255, 255, 255, 0.1);
    --glow: 0 0 40px rgba(147, 51, 234, 0.5);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Premium Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.1) 0%, 
        rgba(59, 130, 246, 0.05) 25%, 
        rgba(16, 185, 129, 0.05) 50%, 
        rgba(147, 51, 234, 0.1) 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-5%) translateY(5%); }
    50% { transform: translateX(5%) translateY(-5%); }
    75% { transform: translateX(-5%) translateY(-5%); }
}

#particleCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.4), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Premium Navigation Bar */
.navbar.premium {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #9333ea, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text);
}

.nav-link.highlight {
    color: var(--accent);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav-play {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.btn-nav-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

.btn-nav-play.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(147, 51, 234, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3); }
}

.nav-mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Dual Layout */
.hero-dual {
    min-height: 100vh;
    padding: 120px 0 60px;
    position: relative;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Left - Token Info */
.hero-left {
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* MASSIVE Revenue Share Announcement */
.revenue-share-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(251, 191, 36, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.5);
    border-radius: 20px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 3s ease infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.4),
                    inset 0 0 20px rgba(16, 185, 129, 0.1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.6),
                    inset 0 0 30px rgba(16, 185, 129, 0.2);
    }
}

.revenue-badge-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.badge-percentage {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    animation: scaleNumber 2s ease infinite;
}

@keyframes scaleNumber {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.revenue-headline {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--accent);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.revenue-subheadline {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.revenue-subheadline .check {
    color: var(--success);
    font-weight: 700;
    margin-right: 0.3rem;
}

/* Revenue Flow Visual */
.revenue-flow-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--dark-card);
    border-radius: 15px;
    padding: 1rem;
    margin: 1.5rem 0;
    border: 1px solid var(--border);
}

.flow-item {
    text-align: center;
    flex: 1;
}

.flow-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.flow-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary);
    margin: 0 1rem;
    animation: slideArrow 2s ease infinite;
}

@keyframes slideArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Value Props */
.value-props {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.value-card.highlighted {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
}

.value-card h3 {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.value-card p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

.value-card .earnings {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--success);
    margin: 0.4rem 0;
}

.value-card .note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

.value-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.stat-item {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Clear Lead Text */
.lead-clear {
    font-size: 1rem;
    line-height: 1.6;
    background: var(--dark-card);
    border-left: 4px solid var(--success);
    padding: 0.75rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.lead-clear strong {
    color: var(--accent);
    font-weight: 700;
}

/* Massive CTA Button */
.btn-primary-massive {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
}

.btn-primary-massive:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.5);
}

.glow-intense {
    animation: intenseGlow 2s ease infinite;
}

@keyframes intenseGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4),
                    0 0 20px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 15px 50px rgba(16, 185, 129, 0.6),
                    0 0 40px rgba(16, 185, 129, 0.5);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.gradient-text-animated {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #9333ea, #3b82f6, #10b981, #9333ea);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientAnimation 5s ease infinite;
    display: block;
    margin-bottom: 0.3rem;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid var(--border);
    flex: 1;
}

.highlight-item.glow {
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(147, 51, 234, 0.3); }
    50% { border-color: rgba(147, 51, 234, 0.6); }
}

.highlight-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.highlight-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-pill {
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--success);
}

.hero-description {
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.lead strong {
    color: var(--accent);
    font-weight: 700;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
}

.btn-secondary-large {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.btn-secondary-large:hover {
    background: var(--dark-card);
    border-color: var(--primary);
}

/* Hero Right - Games Showcase */
.hero-right {
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.games-showcase-hero {
    background: var(--dark-lighter);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.games-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.game-card-hero {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}

.game-card-hero:hover {
    transform: translateX(5px);
    border-color: var(--primary);
}

.game-card-hero.live {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(16, 185, 129, 0.05);
}

.live-badge, .coming-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.live-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.coming-badge {
    background: rgba(251, 191, 36, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.game-hero-content {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.game-hero-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.game-hero-icon.placeholder {
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.game-hero-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.game-hero-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.game-stats-mini {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.game-eta {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-game-play, .btn-game-notify {
    width: 100%;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-game-play {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    text-decoration: none;
    display: block;
}

.btn-game-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.btn-game-notify {
    background: var(--dark);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-game-notify:hover {
    background: var(--dark-card);
    color: var(--text);
}

.more-games-teaser {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.game-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

/* Presale Section */
.presale-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(147, 51, 234, 0.05), transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.presale-main-card {
    background: var(--dark-lighter);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
}

.presale-status {
    text-align: center;
    margin-bottom: 3rem;
}

.status-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.time-unit {
    text-align: center;
}

.time-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.time-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.presale-stages {
    margin-bottom: 3rem;
}

.presale-stages h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.stage-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stage-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
}

.stage-header {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stage-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stage-allocation {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.stage-bonus {
    padding: 0.25rem 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.stage-card.final .stage-bonus {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: var(--accent);
}

.presale-info {
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.info-item {
    text-align: center;
    padding: 1rem;
    background: var(--dark-card);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.info-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.presale-cta {
    text-align: center;
}

.btn-presale-main {
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    color: var(--dark);
    font-size: 1.2rem;
    padding: 1rem 3rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn-presale-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.presale-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Revenue Section Enhanced */
.revenue-section.premium {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.05), transparent);
}

.section-title.massive {
    font-size: 3.5rem;
}

.revenue-visualization {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.revenue-chart-container {
    background: var(--dark-lighter);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.revenue-breakdown {
    background: var(--dark-lighter);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.revenue-breakdown h3 {
    margin-bottom: 1.5rem;
}

.breakdown-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breakdown-bar {
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.breakdown-item.holders .breakdown-bar {
    background: linear-gradient(135deg, #10b981, #059669);
}

.breakdown-item.buyback .breakdown-bar {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.breakdown-item.team .breakdown-bar {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.breakdown-item.marketing .breakdown-bar {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.breakdown-info {
    flex: 1;
}

.percentage {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.label {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.description {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Revenue Calculator */
.revenue-calculator-section {
    margin-bottom: 3rem;
}

.revenue-calculator-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.calculator-card {
    background: var(--dark-lighter);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
}

.calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-weight: 600;
    color: var(--text-muted);
}

.input-group input,
.input-group select {
    padding: 0.75rem;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 1rem;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.calc-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.result-item {
    text-align: center;
}

.result-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.result-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--success);
}

/* Revenue Sources */
.revenue-sources-grid {
    margin-bottom: 3rem;
}

.revenue-sources-grid h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.sources-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.source-card {
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.source-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.source-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.source-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.source-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.source-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--success);
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(147, 51, 234, 0.03), transparent);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.token-card {
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.token-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.token-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.supply-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.supply-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.supply-item.main {
    font-size: 1.2rem;
    font-weight: 700;
}

.distribution-legend {
    margin-top: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.legend-item .color {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.color.presale {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
}

.color.revenue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.color.marketing {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.color.team {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.utility-list {
    list-style: none;
}

.utility-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.utility-list li:last-child {
    border-bottom: none;
}

.utility-list .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.utility-list strong {
    display: block;
    margin-bottom: 0.25rem;
}

.utility-list p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Games Section Enhanced */
.games-section.premium {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.03), transparent);
}

.games-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.game-main-card {
    background: var(--dark-lighter);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.game-status {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--success);
    border-radius: 20px;
    color: var(--success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 2s infinite;
}

.game-main-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.game-preview {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.game-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-preview:hover .play-overlay {
    opacity: 1;
}

.play-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.game-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.game-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.game-features .feature {
    padding: 0.5rem 1rem;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.9rem;
}

.game-stats-live {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: var(--dark-card);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.upcoming-games h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.upcoming-card {
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.upcoming-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.upcoming-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.upcoming-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.upcoming-card p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.eta {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 15px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
}

.roadmap-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-marker {
    width: 60px;
    height: 60px;
    background: var(--dark-lighter);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.roadmap-item.completed .roadmap-marker {
    background: var(--success);
    border-color: var(--success);
}

.roadmap-item.active .roadmap-marker {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    animation: pulse 2s infinite;
}

.roadmap-content {
    width: 45%;
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
}

.roadmap-item:nth-child(even) .roadmap-content {
    margin-left: auto;
}

.roadmap-date {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--dark-card);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.roadmap-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.roadmap-content ul {
    list-style: none;
}

.roadmap-content li {
    padding: 0.5rem 0;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(147, 51, 234, 0.03), transparent);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.faq-item p {
    line-height: 1.8;
    color: var(--text-muted);
}

/* Community Section */
.community-section {
    padding: 100px 0;
}

.community-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.community-card {
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.community-card h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.community-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.card-action {
    color: var(--primary);
    font-weight: 600;
}

.newsletter-signup {
    background: var(--dark-lighter);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border);
}

.newsletter-signup h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.newsletter-signup p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 25px;
    color: var(--text);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-subscribe {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.3);
}

/* Footer */
.footer.premium {
    background: var(--dark-lighter);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.footer-brand h3 {
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sources-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .revenue-flow-visual {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .revenue-visualization {
        grid-template-columns: 1fr;
    }
    
    .game-main-content {
        grid-template-columns: 1fr;
    }
    
    .upcoming-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .community-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: block;
    }
    
    .gradient-text-animated {
        font-size: 2.5rem;
    }
    
    .revenue-subheadline {
        font-size: 0.85rem;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stages-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sources-cards {
        grid-template-columns: 1fr;
    }
    
    .calc-inputs {
        grid-template-columns: 1fr;
    }
    
    .calc-results {
        grid-template-columns: 1fr;
    }
    
    .roadmap-item {
        flex-direction: column !important;
    }
    
    .roadmap-content {
        width: 100%;
        margin: 2rem 0 !important;
    }
    
    .timeline-line {
        display: none;
    }
    
    .roadmap-marker {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .community-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-highlights {
        flex-direction: column;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}