/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0.7rem 1.8rem;
    border-radius: 15px;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.3s ease;
}

.navbar:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 6px 6px 0px #000;
}

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

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    margin-right: 0.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-links a {
    text-decoration: none;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover {
    background: #3b82f6;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #fff;
    transform: translateY(-1px);
}

.nav-links .social-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 3px solid #000;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 3px 3px 0px #000;
}

/* Ensure social buttons don't inherit gradient text styling */
.nav-links .social-btn,
.nav-links .social-btn i {
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #fff;
}

.nav-links .social-btn:hover,
.nav-links .social-btn:hover i {
    background: linear-gradient(135deg, #8a3fff 0%, #12d687 100%);
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #f1f1f122;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.social-nav {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.social-nav a {
    width: 32px;
    height: 32px;
    background: #ffffff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #000;
    font-size: 0.9rem;
}

.social-nav a:hover {
    background: #d4d4d4;
    transform: translateY(-2px);
    box-shadow: 2px 2px 0px rgba(237, 237, 237, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 15s cubic-bezier(0.4, 0, 0.2, 1), transform 15s cubic-bezier(0.4, 0, 0.2, 1), filter 15s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.02);
    filter: saturate(1.2) contrast(1.1) brightness(1.05);
    mix-blend-mode: multiply;
}

.hero-image.active {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1.3) contrast(1.15) brightness(1.1) hue-rotate(5deg);
    mix-blend-mode: normal;
}

.hero-image.morphing-out {
    opacity: 0;
    transform: scale(1);
    filter: saturate(1.3) contrast(1.15) brightness(1.1) hue-rotate(5deg);
    mix-blend-mode: normal;
}

.hero-image.morphing-in {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1.3) contrast(1.15) brightness(1.1) hue-rotate(5deg);
    mix-blend-mode: normal;
}

/* Van Gogh-inspired color overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(33, 150, 243, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(255, 152, 0, 0.08) 0%, 
            rgba(255, 193, 7, 0.06) 25%, 
            rgba(139, 195, 74, 0.05) 50%, 
            rgba(33, 150, 243, 0.07) 75%, 
            rgba(63, 81, 181, 0.09) 100%
        );
    z-index: 2;
    pointer-events: none;
    animation: vanGoghColorShift 120s ease-in-out infinite;
}

/* Van Gogh color shifting animation */
@keyframes vanGoghColorShift {
    0% {
        background: 
            radial-gradient(circle at 30% 20%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(33, 150, 243, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 20% 70%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
            linear-gradient(135deg, 
                rgba(255, 152, 0, 0.08) 0%, 
                rgba(255, 193, 7, 0.06) 25%, 
                rgba(139, 195, 74, 0.05) 50%, 
                rgba(33, 150, 243, 0.07) 75%, 
                rgba(63, 81, 181, 0.09) 100%
            );
    }
    25% {
        background: 
            radial-gradient(circle at 60% 30%, rgba(255, 87, 34, 0.18) 0%, transparent 50%),
            radial-gradient(circle at 40% 70%, rgba(156, 39, 176, 0.14) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.12) 0%, transparent 50%),
            linear-gradient(135deg, 
                rgba(255, 87, 34, 0.1) 0%, 
                rgba(233, 30, 99, 0.08) 25%, 
                rgba(156, 39, 176, 0.06) 50%, 
                rgba(63, 81, 181, 0.09) 75%, 
                rgba(33, 150, 243, 0.07) 100%
            );
    }
    50% {
        background: 
            radial-gradient(circle at 20% 60%, rgba(76, 175, 80, 0.16) 0%, transparent 50%),
            radial-gradient(circle at 80% 40%, rgba(255, 193, 7, 0.13) 0%, transparent 50%),
            radial-gradient(circle at 50% 80%, rgba(33, 150, 243, 0.11) 0%, transparent 50%),
            linear-gradient(135deg, 
                rgba(139, 195, 74, 0.09) 0%, 
                rgba(76, 175, 80, 0.07) 25%, 
                rgba(0, 188, 212, 0.06) 50%, 
                rgba(33, 150, 243, 0.08) 75%, 
                rgba(103, 58, 183, 0.1) 100%
            );
    }
    75% {
        background: 
            radial-gradient(circle at 70% 20%, rgba(233, 30, 99, 0.17) 0%, transparent 50%),
            radial-gradient(circle at 30% 80%, rgba(255, 152, 0, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 90% 60%, rgba(63, 81, 181, 0.12) 0%, transparent 50%),
            linear-gradient(135deg, 
                rgba(233, 30, 99, 0.08) 0%, 
                rgba(255, 87, 34, 0.07) 25%, 
                rgba(255, 152, 0, 0.06) 50%, 
                rgba(255, 193, 7, 0.08) 75%, 
                rgba(139, 195, 74, 0.09) 100%
            );
    }
    100% {
        background: 
            radial-gradient(circle at 30% 20%, rgba(255, 193, 7, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(33, 150, 243, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 20% 70%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
            linear-gradient(135deg, 
                rgba(255, 152, 0, 0.08) 0%, 
                rgba(255, 193, 7, 0.06) 25%, 
                rgba(139, 195, 74, 0.05) 50%, 
                rgba(33, 150, 243, 0.07) 75%, 
                rgba(63, 81, 181, 0.09) 100%
            );
    }
}

/* Additional Van Gogh-inspired texture overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 193, 7, 0.02) 2px,
            rgba(255, 193, 7, 0.02) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 3px,
            rgba(33, 150, 243, 0.015) 3px,
            rgba(33, 150, 243, 0.015) 6px
        );
    z-index: 2;
    pointer-events: none;
    opacity: 0.6;
    animation: textureShift 45s ease-in-out infinite;
}

@keyframes textureShift {
    0%, 100% { 
        opacity: 0.6;
        transform: translateX(0) translateY(0);
    }
    50% { 
        opacity: 0.4;
        transform: translateX(2px) translateY(1px);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80vh;
}

.hero-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0px #fff;
    transform: rotate(-2deg);
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0px #fff;
    transform: rotate(-2deg);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 3px solid #000;
    box-shadow: 4px 4px 0px #000;
}

.btn-primary {
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: linear-gradient(135deg, #8a3fff 0%, #12d687 100%);
}

.btn-secondary {
    background: #fff;
    color: #000;
}

.btn-secondary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: #f0f0f0;
}

/* Platform-specific button styles */
.btn-pump-fun {
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    color: #fff;
}

.btn-pump-fun:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: linear-gradient(135deg, #8a3fff 0%, #12d687 100%);
}

.btn-pump-swap {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
}

.btn-pump-swap:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: linear-gradient(135deg, #e55a2b 0%, #e0841a 100%);
}

.btn-dextools {
    background: linear-gradient(135deg, #05a3b4 0%, #0891a6 100%);
    color: #fff;
}

.btn-dextools:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: linear-gradient(135deg, #048a99 0%, #077a8a 100%);
}

.btn-mexc {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: #fff;
}

.btn-mexc:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: linear-gradient(135deg, #00c299 0%, #00a085 100%);
}

.btn-okx {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #fff;
}

.btn-okx:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
}

/* Platform button icons */
.btn-pump-fun i {
    color: #fff;
}

.btn-pump-swap i {
    color: #fff;
}

.btn-dextools i {
    color: #fff;
}

.btn-mexc i {
    color: #fff;
}

.btn-okx i {
    color: #fff;
}

/* Favicon icon styling */
.favicon-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 0px #000);
}

.favicon-icon-large {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(4px 4px 0px #000);
    margin: 1rem 0;
}

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

.meme-character {
    position: relative;
    animation: bounce 2s ease-in-out infinite;
}

.israel-flag {
    font-size: 12rem;
    filter: drop-shadow(8px 8px 0px #000);
    animation: wiggle 3s ease-in-out infinite;
}

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

@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Ticker */
.ticker {
    background: #000;
    color: #60a5fa;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.ticker-content {
    display: inline-block;
    animation: scroll 60s linear infinite;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

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

/* About Section */
.about {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Main grid */
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(200, 200, 200, 0.4) 100px, rgba(200, 200, 200, 0.4) 101px),
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(200, 200, 200, 0.4) 100px, rgba(200, 200, 200, 0.4) 101px),
        /* Secondary grid */
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(180, 180, 180, 0.25) 50px, rgba(180, 180, 180, 0.25) 50.5px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(180, 180, 180, 0.25) 50px, rgba(180, 180, 180, 0.25) 50.5px);
    z-index: 1;
    pointer-events: none;
    animation: gridShift 20s ease-in-out infinite;
}

@keyframes gridShift {
    0%, 100% { 
        opacity: 0.6;
        transform: translateX(0) translateY(0);
    }
    50% { 
        opacity: 0.8;
        transform: translateX(2px) translateY(1px);
    }
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.meme-box {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 8px 8px 0px #000;
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chart-placeholder {
    position: relative;
    width: 150px;
    height: 100px;
    background: #e8f5e8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.chart-placeholder i {
    font-size: 2rem;
    color: #4caf50;
}

.chart-bars {
    position: absolute;
    bottom: 10px;
    left: 20px;
    display: flex;
    gap: 5px;
    align-items: end;
}

.bar {
    width: 8px;
    background: #4caf50;
    border-radius: 2px;
}

.bar:nth-child(1) { height: 20px; }
.bar:nth-child(2) { height: 35px; }
.bar:nth-child(3) { height: 25px; }
.bar:nth-child(4) { height: 40px; }

.character-trading {
    font-size: 4rem;
    animation: bounce 2s ease-in-out infinite;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #2E60C3;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Network Section */
.network {
    background: #fff;
    padding: 5rem 0;
    text-align: center;
}

.network h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.network p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.exchange-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.exchange-item {
    background: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.3s ease;
}

.exchange-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
}

.exchange-item img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 5rem 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-image {
    display: flex;
    justify-content: center;
}

.poster {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 8px 8px 0px #000;
    width: 300px;
    text-align: center;
    transform: rotate(-3deg);
    position: relative;
    animation: posterFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.poster:hover {
    transform: rotate(-3deg) scale(1.05);
    box-shadow: 12px 12px 0px #000;
    animation-play-state: paused;
}

@keyframes posterFloat {
    0%, 100% { 
        transform: rotate(-3deg) translateY(0px);
    }
    25% { 
        transform: rotate(-2deg) translateY(-5px);
    }
    50% { 
        transform: rotate(-4deg) translateY(-10px);
    }
    75% { 
        transform: rotate(-1deg) translateY(-5px);
    }
}

.army-helmet {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background: #fff;
    border: 3px solid #000;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 0px #000;
    animation: helmetBounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes helmetBounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateX(-50%) translateY(-3px) rotate(-2deg);
    }
    50% { 
        transform: translateX(-50%) translateY(-8px) rotate(0deg);
    }
    75% { 
        transform: translateX(-50%) translateY(-3px) rotate(2deg);
    }
}

.poster:hover .army-helmet {
    animation: helmetSpin 1s ease-in-out infinite;
}

@keyframes helmetSpin {
    0% { transform: translateX(-50%) rotate(0deg); }
    25% { transform: translateX(-50%) rotate(-10deg) scale(1.1); }
    50% { transform: translateX(-50%) rotate(0deg) scale(1.2); }
    75% { transform: translateX(-50%) rotate(10deg) scale(1.1); }
    100% { transform: translateX(-50%) rotate(0deg); }
}

.poster-content {
    margin-top: 1rem;
}

.poster-content h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #3676E2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    animation: textPulse 3s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 2px 2px 0px #000;
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 3px 3px 0px #000;
    }
}

.poster-character {
    font-size: 6rem;
    margin: 1rem 0;
    animation: characterWiggle 2.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes characterWiggle {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
    }
    25% { 
        transform: rotate(-3deg) scale(1.02);
    }
    50% { 
        transform: rotate(0deg) scale(1.05);
    }
    75% { 
        transform: rotate(3deg) scale(1.02);
    }
}

.poster-text {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { 
        text-shadow: 2px 2px 0px #3b82f6;
        transform: scale(1);
    }
    100% { 
        text-shadow: 4px 4px 0px #3b82f6, 2px 2px 0px #000;
        transform: scale(1.02);
    }
}

.cta-text h2 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 4px 4px 0px #000;
}

.cta-text p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* How to Buy Section */
.how-to-buy {
    background: #ffffff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-to-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Main grid */
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(200, 200, 200, 0.4) 100px, rgba(200, 200, 200, 0.4) 101px),
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(200, 200, 200, 0.4) 100px, rgba(200, 200, 200, 0.4) 101px),
        /* Secondary grid */
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(180, 180, 180, 0.25) 50px, rgba(180, 180, 180, 0.25) 50.5px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(180, 180, 180, 0.25) 50px, rgba(180, 180, 180, 0.25) 50.5px);
    z-index: 0;
    pointer-events: none;
    animation: circuitPulse 15s ease-in-out infinite;
}

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

.how-to-buy .container {
    position: relative;
    z-index: 1;
}

.how-to-buy h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: #fff;
    border: 3px solid #000;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #fff;
}

.logo-mono-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(249, 202, 36, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.tokenomics .container {
    position: relative;
    z-index: 2;
}

.tokenomics-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tokenomics-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tokenomics-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tokenomics-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.supply-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.supply-card {
    background: #fff;
    border: 3px solid #000;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 6px 6px 0px #000;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.supply-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px #000;
}

.supply-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border: 3px solid #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 3px 3px 0px #000;
}

.supply-details h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 0.5rem;
}

.supply-details p {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.distribution-chart {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

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

.pie-chart-container {
    width: 280px;
    height: 280px;
    position: relative;
    border: 4px solid #000;
    border-radius: 50%;
    box-shadow: 8px 8px 0px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}

.pie-chart-container canvas {
    border-radius: 50%;
    max-width: 100%;
    max-height: 100%;
}

.distribution-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.breakdown-item {
    background: #fff;
    border: 3px solid #000;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.3s ease;
}

.breakdown-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
}

.breakdown-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.color-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #000;
    box-shadow: 2px 2px 0px #000;
}

.percentage {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
    min-width: 50px;
}

.category {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breakdown-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-left: 3rem;
}

.tokenomics-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.feature-card {
    background: #fff;
    border: 3px solid #000;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 6px 6px 0px #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px #000;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f9ca24 0%, #f59e0b 100%);
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #000;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
}

/* Donation Section */
.donation {
    background: #ffffff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Main grid */
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(200, 200, 200, 0.4) 100px, rgba(200, 200, 200, 0.4) 101px),
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(200, 200, 200, 0.4) 100px, rgba(200, 200, 200, 0.4) 101px),
        /* Secondary grid */
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(180, 180, 180, 0.25) 50px, rgba(180, 180, 180, 0.25) 50.5px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(180, 180, 180, 0.25) 50px, rgba(180, 180, 180, 0.25) 50.5px);
    z-index: 0;
    pointer-events: none;
    animation: networkFlow 25s ease-in-out infinite;
}

@keyframes networkFlow {
    0%, 100% { 
        opacity: 0.6;
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    33% { 
        opacity: 0.8;
        transform: translateX(1px) translateY(-1px) rotate(0.5deg);
    }
    66% { 
        opacity: 0.7;
        transform: translateX(-1px) translateY(1px) rotate(-0.5deg);
    }
}

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

.donation h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.donation > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Single Donation Card Container */
.donation-card-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.donation-card {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    box-shadow: 8px 8px 0px #000;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.donation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    border-radius: 16px;
}

.donation-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px #000;
}

/* Card Header */
.card-header {
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.network-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.network-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #9945ff;
    box-shadow: 4px 4px 0px #000;
    animation: iconPulse 3s ease-in-out infinite;
}

.network-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

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

.network-details h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 0.3rem 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.network-details p {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 0.5rem 0;
    opacity: 0.9;
}

.network-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #4caf50;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 0 4px rgba(76, 175, 80, 0);
    }
}

.recommended-badge {
    background: #fff;
    border: 3px solid #000;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ff6b35;
    text-transform: uppercase;
    box-shadow: 4px 4px 0px #000;
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.recommended-badge i {
    color: #ffeb3b;
    font-size: 1rem;
}

/* Card Body */
.card-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.donation-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.donation-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Amount Selection */
.amount-selection label {
    display: block;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.amount-btn {
    padding: 1rem;
    border: 3px solid #000;
    border-radius: 12px;
    background: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #000;
}

.amount-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: #f8f9fa;
}

.amount-btn.active {
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    color: #fff;
    border-color: #000;
    box-shadow: 4px 4px 0px #000;
}

.amount-btn.active:hover {
    box-shadow: 6px 6px 0px #000;
    background: linear-gradient(135deg, #8a3fff 0%, #12d687 100%);
}

.custom-btn {
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    font-weight: 800;
    color: #fff;
}

.custom-btn:hover {
    background: linear-gradient(135deg, #8a3fff 0%, #12d687 100%);
}

/* Wallet Info */
.wallet-info label {
    display: block;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.address-container {
    display: flex;
    gap: 0.5rem;
}

.wallet-address {
    flex: 1;
    padding: 1rem;
    border: 3px solid #000;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    background: #f9f9f9;
    color: #333;
    box-shadow: 3px 3px 0px #000;
    font-weight: 600;
}

.copy-btn {
    padding: 1rem;
    border: 3px solid #000;
    border-radius: 12px;
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #000;
    font-size: 1rem;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: linear-gradient(135deg, #8a3fff 0%, #12d687 100%);
}

.copy-btn.copied {
    background: #4caf50;
    color: #fff;
    animation: copySuccess 0.5s ease;
}

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

/* QR Code Section */
.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qr-code canvas {
    border-radius: 8px;
}

.generate-qr-btn {
    padding: 0.8rem 1.5rem;
    border: 3px solid #000;
    border-radius: 12px;
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.generate-qr-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: linear-gradient(135deg, #8a3fff 0%, #12d687 100%);
}

.generate-qr-btn i {
    font-size: 1.1rem;
}

/* Card Footer */
.card-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-top: 3px solid #000;
}

.donation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border: 3px solid #000;
    border-radius: 12px;
    box-shadow: 3px 3px 0px #000;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #000;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* Community Footer */
.community-footer {
    background: #fff;
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid #000;
}

.community-footer p {
    font-size: 1rem;
    color: #000;
    margin: 0;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

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

.footer-logo span {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer p {
    margin: 2rem 0;
    line-height: 1.6;
    color: #ccc;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #fff;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    backdrop-filter: blur(5px);
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 1000;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    border-left: 4px solid #000;
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #000;
}

.mobile-nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #000;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    border: 3px solid #000;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 3px 3px 0px #000;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: #3b82f6;
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px #000;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 3px solid #000;
}

.mobile-social-links a {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 3px solid #000;
    font-size: 1.2rem;
    box-shadow: 3px 3px 0px #000;
}

.mobile-social-links a:hover {
    background: #000;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .navbar {
        top: 10px;
        padding: 0.6rem 1.5rem;
        max-width: 95%;
    }

    .nav-container {
        gap: 1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-overlay.active {
        display: block;
    }

    .mobile-nav-menu {
        display: block;
    }

    /* Hero Section Mobile */
    .hero-container {
        padding: 0 15px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: 4.5rem;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 0px #fff;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 0px #fff;
        line-height: 1.2;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 300px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 0.9rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Ticker Mobile */
    .ticker {
        padding: 0.8rem 0;
    }

    .ticker-content {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    /* About Section Mobile */
    .about {
        padding: 3rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .about-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }

    .about-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .poster {
        width: 250px;
        padding: 1.5rem;
        transform: rotate(-2deg);
    }

    .army-helmet {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
        top: -20px;
    }

    .poster-content h3 {
        font-size: 1.2rem;
    }

    .poster-character {
        font-size: 4rem;
    }

    .poster-text {
        font-size: 1.5rem;
    }

    /* How to Buy Mobile */
    .how-to-buy {
        padding: 3rem 0;
    }

    .how-to-buy h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .step h3 {
        font-size: 1.1rem;
    }

    .step p {
        font-size: 0.95rem;
    }

    /* Tokenomics Mobile */
    .tokenomics {
        padding: 4rem 0;
    }

    .tokenomics-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .tokenomics-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .tokenomics-overview {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .supply-info {
        order: 2;
    }

    .distribution-chart {
        order: 1;
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .chart-visual {
        order: 1;
    }

    .distribution-breakdown {
        order: 2;
    }

    .pie-chart {
        width: 220px;
        height: 220px;
    }

    .center-logo {
        font-size: 2.8rem;
        width: 80px;
        height: 80px;
    }

    .supply-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .supply-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .supply-details h3 {
        font-size: 1.5rem;
    }

    .breakdown-item {
        padding: 1.2rem;
    }

    .breakdown-header {
        gap: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .percentage {
        font-size: 1rem;
        min-width: 40px;
    }

    .category {
        font-size: 0.95rem;
    }

    .breakdown-description {
        font-size: 0.85rem;
        margin-left: 2.2rem;
    }

    .tokenomics-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Donation Section Mobile */
    .donation {
        padding: 3rem 0;
    }

    .donation h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .donation > p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .donation-card-container {
        padding: 0 0.5rem;
    }

    .donation-card {
        border-radius: 15px;
        box-shadow: 6px 6px 0px #000;
    }

    .card-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .card-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .network-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .network-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .network-details h3 {
        font-size: 1.2rem;
    }

    .network-details p {
        font-size: 0.9rem;
    }

    .recommended-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }

    .recommended-badge i {
        font-size: 0.8rem;
    }

    .amount-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .amount-btn {
        padding: 0.8rem;
        font-size: 0.8rem;
    }

    .wallet-address {
        font-size: 0.7rem;
        padding: 0.8rem;
    }

    .copy-btn {
        padding: 0.8rem;
        min-width: 45px;
        font-size: 0.9rem;
    }

    .qr-code {
        width: 120px;
        height: 120px;
    }

    .qr-code canvas {
        width: 114px;
        height: 114px;
    }

    .generate-qr-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .donation-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .card-footer {
        padding: 1rem;
    }

    /* Community Footer Mobile */
    .community-footer {
        padding: 1.5rem 0;
    }

    .community-footer p {
        font-size: 0.9rem;
    }

    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .navbar {
        padding: 0.5rem 1rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        max-width: 280px;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    .about-text h2,
    .how-to-buy h2,
    .tokenomics h2,
    .donation h2,
    .community h2 {
        font-size: 1.8rem;
    }

    .poster {
        width: 220px;
        padding: 1.2rem;
    }

    .poster-character {
        font-size: 3.5rem;
    }

    .pie-chart {
        width: 200px;
        height: 200px;
    }

    .center-logo {
        font-size: 2.5rem;
        width: 80px;
        height: 80px;
    }

    .step {
        padding: 1.2rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .community-character {
        display: none;
    }

    .ticker-content {
        font-size: 1rem;
    }

    /* Mobile donation adjustments */
    .amount-buttons {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .address-container {
        flex-direction: column;
        gap: 0.8rem;
    }

    .wallet-address {
        font-size: 0.65rem;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .donation-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .stat-item {
        padding: 0.6rem;
    }

    .stat-value {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}

/* Remove focus outlines */
button:focus,
input:focus,
a:focus,
.btn:focus,
.social-btn:focus,
.amount-btn:focus,
.copy-btn:focus,
.generate-qr-btn:focus,
.mobile-nav-links a:focus,
.mobile-social-links a:focus,
.nav-links a:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .social-btn,
    .amount-btn,
    .copy-btn,
    .generate-qr-btn {
        min-height: 44px;
        min-width: 44px;
    }

    .mobile-nav-links a {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step:hover,
    .donation-card:hover,
    .poster:hover {
        transform: none;
        box-shadow: 4px 4px 0px #000;
    }

    .btn:hover,
    .social-btn:hover {
        transform: none;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-container {
        min-height: 70vh;
        padding: 1rem 15px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        width: auto;
        min-width: 140px;
    }

    .mobile-nav-menu {
        width: 250px;
        padding: 1.5rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title,
    .hero-subtitle {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* NFT Gallery Section */
.nft-gallery {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.nft-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Main grid */
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(200, 200, 200, 0.4) 100px, rgba(200, 200, 200, 0.4) 101px),
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(200, 200, 200, 0.4) 100px, rgba(200, 200, 200, 0.4) 101px),
        /* Secondary grid */
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(180, 180, 180, 0.25) 50px, rgba(180, 180, 180, 0.25) 50.5px),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(180, 180, 180, 0.25) 50px, rgba(180, 180, 180, 0.25) 50.5px);
    z-index: 1;
    pointer-events: none;
    animation: galleryShimmer 30s ease-in-out infinite;
}

@keyframes galleryShimmer {
    0%, 100% { 
        opacity: 0.7;
        transform: translateX(0) translateY(0);
    }
    25% { 
        opacity: 0.9;
        transform: translateX(1px) translateY(-1px);
    }
    50% { 
        opacity: 0.8;
        transform: translateX(-1px) translateY(1px);
    }
    75% { 
        opacity: 0.85;
        transform: translateX(1px) translateY(1px);
    }
}

.nft-gallery .container {
    position: relative;
    z-index: 2;
}

.nft-gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.nft-gallery-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nft-gallery-header p {
    font-size: 1.2rem;
    color: #242424;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.nft-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.nft-card {
    background: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 8px 8px 0px #000;
    transition: all 0.3s ease;
    position: relative;
    animation: nftFloat 6s ease-in-out infinite;
}

.nft-card:nth-child(2) {
    animation-delay: -1.5s;
}

.nft-card:nth-child(3) {
    animation-delay: -3s;
}

.nft-card:nth-child(4) {
    animation-delay: -4.5s;
}

@keyframes nftFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-8px) rotate(0.5deg);
    }
    50% { 
        transform: translateY(-15px) rotate(0deg);
    }
    75% { 
        transform: translateY(-8px) rotate(-0.5deg);
    }
}

.nft-card:hover {
    transform: translate(-4px, -4px) scale(1.02);
    box-shadow: 12px 12px 0px #000;
    animation-play-state: paused;
}

.nft-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.nft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: saturate(1.1) contrast(1.05);
}

.nft-card:hover .nft-image img {
    transform: scale(1.1);
    filter: saturate(1.3) contrast(1.1) brightness(1.05);
}

.nft-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(30, 58, 138, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.nft-card:hover .nft-overlay {
    opacity: 1;
}

.nft-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.nft-link {
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border: 3px solid #000;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #000;
    transform: translateY(20px);
}

.nft-card:hover .nft-link {
    transform: translateY(0px);
}

.nft-link:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000;
    background: #f0f0f0;
}

.nft-info {
    padding: 1.5rem;
    text-align: center;
}

.nft-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nft-price {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f9ca24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.nft-gallery-footer {
    text-align: center;
    margin-top: 3rem;
}

.nft-marketplace-btn {
    background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 4px solid #000;
    border-radius: 15px;
    box-shadow: 6px 6px 0px #000;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.nft-marketplace-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nft-marketplace-btn:hover::before {
    left: 100%;
}

.nft-marketplace-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0px #000;
    background: linear-gradient(135deg, #8a3fff 0%, #12d687 100%);
}

.nft-marketplace-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nft-marketplace-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Mobile Responsive for NFT Gallery */
@media (max-width: 768px) {
    .nft-gallery {
        padding: 4rem 0;
    }

    .nft-gallery-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .nft-gallery-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .nft-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .nft-card {
        border-radius: 15px;
        box-shadow: 6px 6px 0px #000;
    }

    .nft-card:hover {
        transform: translate(-2px, -2px) scale(1.01);
        box-shadow: 8px 8px 0px #000;
    }

    .nft-image {
        height: 220px;
    }

    .nft-info {
        padding: 1.2rem;
    }

    .nft-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .nft-price {
        font-size: 1rem;
    }

    .nft-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .nft-marketplace-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.6rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .nft-marketplace-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nft-gallery-header h2 {
        font-size: 2rem;
    }

    .nft-cards-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .nft-card {
        margin: 0 0.5rem;
    }

    .nft-image {
        height: 200px;
    }

    .nft-info {
        padding: 1rem;
    }

    .nft-info h3 {
        font-size: 1rem;
    }

    .nft-price {
        font-size: 0.9rem;
    }

    .nft-marketplace-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        max-width: 280px;
    }
}

/* Animation utilities */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Poster interaction animations */
@keyframes explosionEffect {
    0% {
        transform: translateX(-50%) scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.5) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scale(2) rotate(360deg);
        opacity: 0;
    }
}

@keyframes posterShake {
    0%, 100% { 
        transform: rotate(-3deg) translateX(0px);
    }
    10% { 
        transform: rotate(-3deg) translateX(-5px);
    }
    20% { 
        transform: rotate(-3deg) translateX(5px);
    }
    30% { 
        transform: rotate(-3deg) translateX(-5px);
    }
    40% { 
        transform: rotate(-3deg) translateX(5px);
    }
    50% { 
        transform: rotate(-3deg) translateX(-3px);
    }
    60% { 
        transform: rotate(-3deg) translateX(3px);
    }
    70% { 
        transform: rotate(-3deg) translateX(-2px);
    }
    80% { 
        transform: rotate(-3deg) translateX(2px);
    }
    90% { 
        transform: rotate(-3deg) translateX(-1px);
    }
}
