:root {
    /* PRIMARY COLORS - BLUE */
    --primary-blue: #0052FF;
    --blue-dark: #003DB8;
    --blue-light: #3D7DFF;
    --blue-accent: #1A66FF;
    
    /* SECONDARY COLORS - WHITE & BLACK */
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #F8F9FA;
    --gray-dark: #212529;
    
    /* TEXT COLORS */
    --text-dark: #000000;
    --text-light: #495057;
    --text-white: #FFFFFF;
    
    /* BALANCED GRADIENTS */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--blue-light));
    --gradient-hero: linear-gradient(135deg, var(--black) 0%, var(--blue-dark) 50%, var(--primary-blue) 100%);
    --gradient-section: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
    
    /* REFINED SHADOWS & EFFECTS */
    --shadow-primary: 0 10px 30px rgba(0, 82, 255, 0.3);
    --shadow-strong: 0 15px 40px rgba(0, 82, 255, 0.4);
    --glow-blue: 0 0 30px rgba(0, 82, 255, 0.6);
    --glow-soft: 0 0 20px rgba(0, 82, 255, 0.4);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--white);
    background: var(--primary-blue);
    overflow-x: hidden;
    font-weight: 500;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 82, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--white);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    font-family: 'Bakbak One', cursive;
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Mobile-first navigation */
.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 82, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
}

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

@media (min-width: 769px) {
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
        flex-direction: row;
        justify-content: flex-end;
        gap: 35px;
        transition: none;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1.2rem, 4vw, 0.9rem);
    display: block;
    padding: 12px 0;
    opacity: 0.9;
}

@media (min-width: 769px) {
    .nav-link {
        font-size: 14px;
        padding: 8px 0;
        opacity: 1;
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-bold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: var(--shadow-glow);
}

.nav-link:hover {
    color: var(--black);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

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

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 28px;
    height: 20px;
    justify-content: space-between;
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

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

.bar {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-blue);
    padding: 100px 16px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%);
    transform: skewX(-15deg);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: 'Bakbak One', cursive;
    font-size: clamp(2.5rem, 8vw, 7rem);
    line-height: 1.0;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: var(--glow-blue), 0 0 40px rgba(0, 82, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    line-height: 1.4;
    padding: 0 10px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
    align-items: center;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 3vw, 1.1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 200px;
}

.btn:not(button):not(a) {
    cursor: default;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-strong);
    border: 3px solid var(--primary-blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    padding: 18px 35px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--glow-blue);
    background: var(--primary-blue);
    border-color: var(--blue-light);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    padding: 18px 35px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-explosive);
    border-color: var(--primary-blue);
}

.hero-stats {
    display: flex;
    gap: 30px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Bakbak One', cursive;
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--blue-light);
    text-shadow: var(--glow-blue);
    font-weight: 900;
}

.stat-label {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.mascot-hero {
    max-width: min(300px, 80vw);
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(62, 39, 35, 0.2));
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid var(--electric-blue);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.6));
}

/* Sections */
section {
    padding: 60px 0;
    background: var(--primary-blue);
}

.tokenomics {
    background: var(--primary-blue);
}

.community {
    background: var(--primary-blue);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 16px;
}

.section-title {
    font-family: 'Bakbak One', cursive;
    font-size: clamp(2rem, 7vw, 4.5rem);
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
}

.section-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    background: var(--primary-blue);
    border-top: 4px solid var(--white);
    border-bottom: 4px solid var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.about-card {
    background: var(--black);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    margin: 0 16px;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.03);
    border: 2px solid var(--white);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    background: var(--black);
}

.card-icon {
    font-size: clamp(3rem, 8vw, 4rem);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 82, 255, 0.4));
}

.about-card h3 {
    font-family: 'Bakbak One', cursive;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.about-card p {
    color: var(--white);
    line-height: 1.6;
    font-weight: 600;
    font-size: clamp(0.95rem, 3vw, 1.05rem);
}

/* Tokenomics Section */
.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.chart-container {
    width: min(280px, 80vw);
    height: min(280px, 80vw);
    margin: 0 auto;
}

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

.token-info h3 {
    font-family: 'Bakbak One', cursive;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.token-number {
    font-family: 'Bakbak One', cursive;
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    font-weight: 900;
}

.token-desc {
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 500;
    font-style: italic;
    font-size: clamp(0.9rem, 3vw, 1rem);
    padding: 0 10px;
}

.distribution-list {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 16px;
}

.distribution-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.dist-label {
    font-weight: 500;
    color: var(--white);
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.dist-percent {
    font-family: 'Bakbak One', cursive;
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    font-weight: 900;
}

/* Burn Mechanism */
.burn-mechanism {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    padding: 0 16px;
}

.burn-card {
    background: var(--black);
    padding: 30px 20px;
    border-radius: 20px;
    border: 3px solid var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    text-align: center;
    width: 100%;
}

.burn-card h3 {
    font-family: 'Bakbak One', cursive;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.burn-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.burn-number {
    display: block;
    font-family: 'Bakbak One', cursive;
    font-size: clamp(2rem, 6vw, 2.5rem);
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.burn-label {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.burn-desc {
    color: var(--white);
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

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

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 2px solid var(--white);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--white), #FFD700);
    border-radius: 8px;
    transition: width 0.8s ease;
}

.progress-text {
    color: var(--white);
    font-weight: 600;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Roadmap Section */
.roadmap {
    background: var(--primary-blue);
    color: var(--white);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 16px;
}

.roadmap .section-title {
    color: var(--white);
}

.roadmap .section-subtitle {
    color: var(--white);
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--white), rgba(255, 255, 255, 0.3));
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-marker {
    width: 85px;
    height: 85px;
    background: var(--primary-blue);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), inset 0 0 20px rgba(0, 82, 255, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    overflow: hidden;
}

.timeline-marker:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(255, 255, 255, 1), inset 0 0 30px rgba(0, 82, 255, 0.5);
}

.timeline-item.active .timeline-marker {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-color: #FF6B35;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8), inset 0 0 20px rgba(247, 147, 30, 0.3);
}

.timeline-item.active .timeline-marker:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(255, 107, 53, 1), inset 0 0 30px rgba(247, 147, 30, 0.5);
}

.timeline-item.completed .timeline-marker {
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.timeline-item.completed .timeline-marker:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(255, 255, 255, 1), inset 0 0 30px rgba(0, 0, 0, 0.2);
}


.timeline-item.completed .timeline-marker {
    background: var(--blue-neon);
    color: var(--white);
    box-shadow: var(--glow-chaos);
    border-color: var(--blue-neon);
}

.timeline-item.active .timeline-marker {
    background: var(--gradient-chaos);
    color: var(--white);
    animation: nuclearPulse 1.5s infinite;
    box-shadow: var(--glow-chaos);
    border-color: var(--blue-neon);
}

.marker-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    animation: iconPulse 2s ease-in-out infinite;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 40px;
    max-height: 40px;
    overflow: hidden;
}

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

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

.timeline-content {
    width: calc(42% - 40px);
    background: var(--black);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: var(--blue-light);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: calc(50% + 100px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    margin-left: calc(50% + 100px);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-left-color: var(--white);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-right-color: var(--white);
    transform: translateY(-50%);
}

.timeline-content h3 {
    font-family: 'Bakbak One', cursive;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.timeline-content p {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    line-height: 1.6;
    opacity: 0.9;
}

.timeline-status {
    display: inline-block;
    padding: 8px 20px;
    background: var(--white);
    color: var(--black);
    border-radius: 30px;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--white);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.timeline-status:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.6);
}

.timeline-item.completed .timeline-status {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-color: var(--white);
}

/* Community Section */
.community-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.community-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: var(--black);
    border-radius: 20px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    min-width: 130px;
    border: 2px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex: 1;
    max-width: 200px;
}

.community-link:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
}

.link-icon {
    font-size: clamp(2.5rem, 6vw, 3rem);
    color: var(--white);
    transition: color 0.3s ease;
}

.link-icon svg {
    width: clamp(32px, 6vw, 40px);
    height: clamp(32px, 6vw, 40px);
}

.community-link:hover .link-icon {
    color: var(--white);
}

.community-link.twitter:hover .link-icon {
    color: var(--white);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
}

.community-link span {
    font-weight: 600;
    font-size: clamp(1rem, 3vw, 1.1rem);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0 20px;
    text-align: center;
    border-top: 3px solid var(--white);
}

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

.footer-logo-img {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Bakbak One', cursive;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--white);
    text-shadow: var(--glow-blue);
    letter-spacing: 1px;
}

.footer-text {
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin-bottom: 20px;
    opacity: 0.9;
    padding: 0 16px;
}

.footer-disclaimer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 16px;
}

.footer-disclaimer p {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    opacity: 0.7;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

@keyframes nuclearPulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: var(--glow-blue);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        box-shadow: var(--glow-blue);
    }
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: var(--glow-blue);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: var(--glow-soft);
    }
    50% {
        text-shadow: var(--glow-blue);
    }
}

/* Mobile Navigation Animations */
@media (max-width: 768px) {
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Roadmap */
    .roadmap-timeline::before {
        left: 30px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: center;
        margin-bottom: 60px;
    }

    .timeline-marker {
        left: 30px;
        top: 20px;
        transform: translateX(-50%);
        width: 70px;
        height: 70px;
        position: absolute;
        overflow: hidden;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }

    .timeline-content::after {
        display: none !important;
    }

    .marker-icon {
        font-size: 1rem;
        max-width: 35px;
        max-height: 35px;
    }
}

/* Desktop Enhancements */
@media (min-width: 769px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        text-align: left;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: flex-start;
    }

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

    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    .about-card {
        margin: 0;
    }

    .burn-details {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .timeline-item {
        flex-direction: row;
        align-items: center;
        margin-bottom: 80px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .roadmap-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-marker {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 85px;
        height: 85px;
        overflow: hidden;
    }

    .timeline-content {
        width: calc(42% - 40px);
        padding: 30px 25px;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: auto;
        margin-right: calc(50% + 100px);
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-right: auto;
        margin-left: calc(50% + 100px);
    }

    .timeline-content::after {
        display: block;
    }

    .timeline-item:nth-child(odd) .timeline-content::after {
        right: -15px;
        border-width: 15px;
    }

    .timeline-item:nth-child(even) .timeline-content::after {
        left: -15px;
        border-width: 15px;
    }

    .community-links {
        flex-direction: row;
    }

    .community-link {
        flex: 0 1 auto;
        max-width: none;
        min-width: 150px;
    }

    section {
        padding: 100px 0;
    }

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

    .burn-mechanism {
        margin-top: 80px;
    }

    .burn-card {
        padding: 40px;
    }
}