/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00ff41;
    --dark-green: #003b00;
    --matrix-bg: #0d0208;
    --text-white: #ffffff;
    --text-gray: #a8a8a8;
    --accent-red: #ff0000;
    --accent-orange: #ff6b35;
    --neon-blue: #00d9ff;
    --neon-pink: #ff006e;
    --neon-purple: #8338ec;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--matrix-bg);
    color: var(--text-white);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Matrix Canvas Background */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

/* Floating Crypto Particles */
.crypto-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--matrix-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.matrix-rain-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(transparent 0%, var(--matrix-bg) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.03) 2px, rgba(0, 255, 65, 0.03) 4px);
    animation: matrix-scroll 10s linear infinite;
    overflow: hidden;
}

.terminal-box {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid var(--primary-green);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 
        0 0 50px var(--primary-green),
        inset 0 0 50px rgba(0, 255, 65, 0.1);
    animation: terminal-glow 2s ease-in-out infinite;
}

@keyframes terminal-glow {
    0%, 100% {
        box-shadow: 
            0 0 50px var(--primary-green),
            inset 0 0 50px rgba(0, 255, 65, 0.1);
    }
    50% {
        box-shadow: 
            0 0 80px var(--primary-green),
            inset 0 0 80px rgba(0, 255, 65, 0.2);
    }
}

.terminal-header {
    background: linear-gradient(90deg, rgba(0, 255, 65, 0.2), rgba(0, 255, 65, 0.1));
    padding: 10px 15px;
    border-bottom: 2px solid var(--primary-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-dot.red {
    background: #ff5f56;
    box-shadow: 0 0 10px #ff5f56;
}

.terminal-dot.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 10px #ffbd2e;
}

.terminal-dot.green {
    background: #27c93f;
    box-shadow: 0 0 10px #27c93f;
}

.terminal-title {
    color: var(--primary-green);
    font-family: 'Courier New', monospace;
    font-size: 12px;
    margin-left: auto;
}

.terminal-body {
    padding: 30px;
    text-align: center;
}

.terminal-line {
    text-align: left;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.prompt {
    color: var(--primary-green);
    text-shadow: 0 0 5px var(--primary-green);
}

.command {
    color: var(--text-white);
}

.typing {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s steps(40, end);
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.loading-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.loading-cat {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 20px auto;
    animation: scream 0.5s ease-in-out infinite alternate, rotate-color 3s linear infinite;
    box-shadow: 0 0 50px var(--primary-green);
    border: 3px solid var(--primary-green);
}

@keyframes scream {
    0% {
        transform: scale(1) rotate(-2deg);
    }
    100% {
        transform: scale(1.05) rotate(2deg);
    }
}

@keyframes rotate-color {
    0% {
        box-shadow: 0 0 50px var(--primary-green);
        border-color: var(--primary-green);
    }
    33% {
        box-shadow: 0 0 50px var(--neon-blue);
        border-color: var(--neon-blue);
    }
    66% {
        box-shadow: 0 0 50px var(--neon-pink);
        border-color: var(--neon-pink);
    }
    100% {
        box-shadow: 0 0 50px var(--primary-green);
        border-color: var(--primary-green);
    }
}

.loading-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--primary-green);
    animation: pulse-text 1s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.loading-bar {
    width: 100%;
    max-width: 400px;
    height: 15px;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}

.loading-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--neon-blue), var(--neon-pink));
    width: 0%;
    animation: loading 2s ease-in-out forwards;
    box-shadow: 0 0 20px var(--primary-green);
    position: relative;
}

.loading-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(5px);
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-subtitle {
    font-size: 16px;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-top: 20px;
    font-weight: 600;
}

.loading-stats {
    margin-top: 30px;
    text-align: left;
    font-family: 'Courier New', monospace;
    font-size: 12px;
}

.stat-line {
    color: var(--primary-green);
    margin: 8px 0;
    opacity: 0;
    animation: fade-in-line 0.5s ease forwards;
}

.stat-line:nth-child(1) { animation-delay: 0.5s; }
.stat-line:nth-child(2) { animation-delay: 1s; }
.stat-line:nth-child(3) { animation-delay: 1.5s; }

@keyframes fade-in-line {
    to {
        opacity: 1;
    }
}

.stat-value {
    color: var(--text-white);
    font-weight: bold;
}

.blink {
    animation: blink-animation 1s infinite;
}

@keyframes blink-animation {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 2.5s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 2s infinite;
    color: #00ffff;
    z-index: -2;
}

/* Matrix Background Effect */
.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.03) 2px, rgba(0, 255, 65, 0.03) 4px);
    opacity: 0.3;
    pointer-events: none;
    animation: matrix-scroll 20s linear infinite;
}

@keyframes matrix-scroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 100vh; }
}

/* Animated Ticker */
.ticker-container {
    position: fixed;
    top: 94px;
    left: 0;
    width: 100%;
    background: rgba(0, 255, 65, 0.1);
    border-top: 2px solid var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
    z-index: 999;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.ticker-wrapper {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-text {
    white-space: nowrap;
    padding: 10px 0;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-green);
    text-shadow: 0 0 10px var(--primary-green);
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 2, 8, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-green);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 255, 65, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
    color: var(--primary-green);
    text-shadow: 0 0 10px var(--primary-green);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    box-shadow: 0 0 20px var(--primary-green);
    animation: rotate-glow 3s ease-in-out infinite;
}

@keyframes rotate-glow {
    0%, 100% {
        transform: rotate(0deg);
        box-shadow: 0 0 20px var(--primary-green);
    }
    50% {
        transform: rotate(5deg);
        box-shadow: 0 0 30px var(--primary-green);
    }
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 94px;
    left: 0;
    right: 0;
    background: rgba(13, 2, 8, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 999;
    border-bottom: 2px solid var(--primary-green);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    color: var(--text-white);
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu a:hover {
    color: var(--primary-green);
    border-left-color: var(--primary-green);
    background: rgba(0, 255, 65, 0.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 180px 20px 80px;
    overflow: hidden;
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    box-shadow: 0 0 20px var(--primary-green);
    animation: scanner-move 4s linear infinite;
    z-index: 3;
}

@keyframes scanner-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 65, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: grid-3d 10s ease-in-out infinite;
}

@keyframes grid-3d {
    0%, 100% {
        transform: rotateX(60deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotateX(60deg) scale(1.1);
        opacity: 0.5;
    }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slide-in-left 0.8s ease-out;
    position: relative;
    z-index: 10;
}

.neon-box {
    background: rgba(0, 255, 65, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--primary-green);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.neon-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 255, 65, 0.1) 50%,
        transparent 70%
    );
    animation: neon-rotate 3s linear infinite;
}

@keyframes neon-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.price-ticker {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.price-label {
    color: var(--text-gray);
}

.price-value {
    color: var(--primary-green);
    font-weight: bold;
    text-shadow: 0 0 10px var(--primary-green);
    animation: price-pulse 2s ease-in-out infinite;
}

@keyframes price-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.price-change {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
}

.price-change.up {
    background: rgba(0, 255, 65, 0.2);
    color: var(--primary-green);
    animation: flash-green 1s ease-in-out infinite;
}

@keyframes flash-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.mega-glitch {
    font-family: 'Press Start 2P', cursive;
    font-size: 80px;
    color: var(--primary-green);
    margin-bottom: 20px;
    position: relative;
    text-shadow: 
        0 0 10px var(--primary-green),
        0 0 20px var(--primary-green),
        0 0 30px var(--primary-green),
        0 0 40px var(--primary-green);
    animation: mega-glitch 3s infinite, color-shift 5s linear infinite;
}

@keyframes mega-glitch {
    0%, 100% { 
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    20% { 
        transform: translate(-5px, 5px);
        filter: hue-rotate(90deg);
    }
    40% { 
        transform: translate(-5px, -5px);
        filter: hue-rotate(180deg);
    }
    60% { 
        transform: translate(5px, 5px);
        filter: hue-rotate(270deg);
    }
    80% { 
        transform: translate(5px, -5px);
        filter: hue-rotate(360deg);
    }
}

@keyframes color-shift {
    0% { color: var(--primary-green); }
    33% { color: var(--neon-blue); }
    66% { color: var(--neon-pink); }
    100% { color: var(--primary-green); }
}

.neon-text {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
    text-shadow: 
        0 0 10px var(--primary-green),
        0 0 20px var(--primary-green),
        0 0 30px var(--primary-green);
    animation: neon-flicker 3s ease-in-out infinite;
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    10%, 30%, 50%, 70%, 90% { opacity: 0.95; }
    20%, 40%, 60%, 80% { opacity: 1; }
}

.hero-subtitle {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
    text-shadow: 
        0 0 10px var(--primary-green),
        0 0 20px var(--primary-green),
        0 0 30px var(--primary-green);
    animation: neon-flicker 3s ease-in-out infinite;
}

.hero-description {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 40px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 30px;
    border-radius: 10px;
    display: inline-block;
    border: 2px solid rgba(0, 255, 65, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-green); }
}

/* Live Chart Container */
.chart-container {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
    position: relative;
    overflow: hidden;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-green), var(--neon-blue), var(--neon-pink), var(--primary-green));
    border-radius: 20px;
    z-index: -1;
    animation: border-rotate 3s linear infinite;
    background-size: 300% 300%;
}

@keyframes border-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
}

.chart-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: var(--primary-green);
    text-shadow: 0 0 10px var(--primary-green);
}

.chart-status {
    color: var(--accent-red);
    font-size: 12px;
    font-weight: bold;
    animation: blink-animation 1.5s infinite;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    animation: stat-glow 3s linear infinite;
}

@keyframes stat-glow {
    0% { transform: translate(-25%, -25%) rotate(0deg); }
    100% { transform: translate(-25%, -25%) rotate(360deg); }
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
}

.stat-icon {
    font-size: 40px;
    position: relative;
    z-index: 1;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-info {
    position: relative;
    z-index: 1;
}

.stat-num {
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    color: var(--primary-green);
    text-shadow: 0 0 10px var(--primary-green);
}

.stat-label {
    font-size: 12px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
}

.glitch {
    font-family: 'Press Start 2P', cursive;
    font-size: 80px;
    color: var(--primary-green);
    margin-bottom: 20px;
    position: relative;
    text-shadow: 
        0 0 10px var(--primary-green),
        0 0 20px var(--primary-green),
        0 0 30px var(--primary-green);
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2.5s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 2s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(40% 0 61% 0); }
    20% { clip-path: inset(92% 0 1% 0); }
    40% { clip-path: inset(43% 0 1% 0); }
    60% { clip-path: inset(25% 0 58% 0); }
    80% { clip-path: inset(54% 0 7% 0); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(1% 0 92% 0); }
    20% { clip-path: inset(54% 0 7% 0); }
    40% { clip-path: inset(25% 0 58% 0); }
    60% { clip-path: inset(43% 0 1% 0); }
    80% { clip-path: inset(92% 0 1% 0); }
}

.hero-subtitle {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.hero-description {
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-green), #00cc33);
    color: var(--matrix-bg);
    box-shadow: 0 0 20px var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #00cc33, var(--primary-green));
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--primary-green);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-green);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--matrix-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.4);
}

.holographic {
    background: linear-gradient(
        45deg,
        rgba(0, 255, 65, 0.1),
        rgba(0, 217, 255, 0.1),
        rgba(255, 0, 110, 0.1),
        rgba(0, 255, 65, 0.1)
    );
    background-size: 300% 300%;
    animation: hologram-shift 3s ease-in-out infinite;
}

@keyframes hologram-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-accent {
    background: var(--accent-orange);
    color: var(--text-white);
    box-shadow: 0 0 20px var(--accent-orange);
}

.btn-accent:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 30px var(--accent-red);
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--primary-green);
    }
    50% {
        box-shadow: 0 0 40px var(--primary-green);
    }
}

.mega-pulse {
    animation: mega-pulse 1.5s ease-in-out infinite;
}

@keyframes mega-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px var(--primary-green),
            0 0 40px var(--primary-green);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 40px var(--primary-green),
            0 0 60px var(--primary-green),
            0 0 80px var(--primary-green);
        transform: scale(1.05);
    }
}

.ca-display {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 100;
    flex-wrap: wrap;
}

.ca-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.2), transparent);
    animation: scan-across 3s linear infinite;
}

@keyframes scan-across {
    0% { left: -100%; }
    100% { left: 100%; }
}

.terminal-style {
    font-family: 'Courier New', monospace;
    width: 100%;
}

.terminal-prompt {
    color: var(--primary-green);
    font-size: 12px;
    margin-bottom: 8px;
    text-shadow: 0 0 5px var(--primary-green);
    display: block;
}

.ca-display code {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: var(--text-white);
    word-break: break-all;
    position: relative;
    z-index: 1;
    background: rgba(0, 255, 65, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    display: block;
    width: 100%;
}

.cursor-blink {
    color: var(--primary-green);
    animation: blink-animation 1s infinite;
    font-size: 20px;
    display: inline-block;
}

.hero-image {
    animation: slide-in-right 0.8s ease-out;
}

.hologram-container {
    position: relative;
    display: inline-block;
}

.hologram-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-green);
    border-radius: 20px;
    transform: translate(-50%, -50%);
    animation: hologram-pulse 3s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes hologram-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.2;
    }
}

.image-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('gallery/banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    mix-blend-mode: screen;
    animation: image-glitch-anim 5s infinite;
}

@keyframes image-glitch-anim {
    0%, 90%, 100% {
        opacity: 0;
        transform: translate(0);
    }
    91%, 93%, 95%, 97% {
        opacity: 0.7;
        transform: translate(5px, 5px);
    }
    92%, 94%, 96%, 98% {
        opacity: 0.7;
        transform: translate(-5px, -5px);
    }
}

.hero-cat {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    border: 3px solid var(--primary-green);
    box-shadow: 0 0 50px var(--primary-green);
    position: relative;
    z-index: 1;
}

.rotating {
    animation: floating 3s ease-in-out infinite, rotate-subtle 10s linear infinite;
}

@keyframes rotate-subtle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: var(--primary-green);
    margin-top: 10px;
    letter-spacing: 2px;
    animation: fade-pulse 2s ease-in-out infinite;
}

@keyframes fade-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin: 0 auto;
}

.mouse.glow {
    box-shadow: 0 0 20px var(--primary-green);
    animation: mouse-glow 2s ease-in-out infinite;
}

@keyframes mouse-glow {
    0%, 100% {
        box-shadow: 0 0 20px var(--primary-green);
    }
    50% {
        box-shadow: 0 0 30px var(--primary-green);
    }
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Sections */
.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-green);
    text-shadow: 0 0 20px var(--primary-green);
    position: relative;
    width: 100%;
}

.cyber-title {
    background: linear-gradient(
        90deg,
        var(--primary-green),
        var(--neon-blue),
        var(--neon-pink),
        var(--primary-green)
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s linear infinite;
    display: block;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.title-bracket {
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue);
    animation: bracket-pulse 2s ease-in-out infinite;
}

@keyframes bracket-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.glitch-text-subtle {
    position: relative;
    animation: subtle-glitch 5s infinite;
}

@keyframes subtle-glitch {
    0%, 90%, 100% { transform: translate(0); }
    91%, 95% { transform: translate(-2px, 2px); }
    93%, 97% { transform: translate(2px, -2px); }
}

.section-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0, 255, 65, 0.05),
        transparent 70%
    );
    pointer-events: none;
    animation: bg-pulse 5s ease-in-out infinite;
}

@keyframes bg-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 40px;
    margin-top: -40px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    width: auto;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    padding: 100px 20px;
    position: relative;
}

/* Special Announcement */
.special-announcement {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 0, 110, 0.2));
    border: 3px solid var(--accent-orange);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 50px rgba(255, 107, 53, 0.5),
        inset 0 0 50px rgba(255, 107, 53, 0.1);
    animation: announcement-pulse 2s ease-in-out infinite;
}

@keyframes announcement-pulse {
    0%, 100% {
        box-shadow: 
            0 0 50px rgba(255, 107, 53, 0.5),
            inset 0 0 50px rgba(255, 107, 53, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 80px rgba(255, 107, 53, 0.8),
            inset 0 0 80px rgba(255, 107, 53, 0.2);
        transform: scale(1.02);
    }
}

.announcement-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 107, 53, 0.3) 50%,
        transparent 70%
    );
    animation: announcement-rotate 3s linear infinite;
}

@keyframes announcement-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.announcement-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce-hog 1s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes bounce-hog {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.announcement-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: var(--text-white);
    text-shadow: 
        0 0 10px var(--accent-orange),
        0 0 20px var(--accent-orange),
        0 0 30px var(--accent-orange);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.announcement-subtext {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    color: var(--accent-orange);
    text-shadow: 0 0 10px var(--accent-orange);
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    animation: blink-animation 1.5s infinite;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.about-card {
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.4);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        var(--primary-green),
        var(--neon-blue),
        var(--neon-pink),
        var(--primary-green)
    );
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
    animation: glow-rotate 3s linear infinite;
}

.card-3d:hover .card-glow {
    opacity: 0.7;
}

@keyframes glow-rotate {
    0% { filter: blur(10px) hue-rotate(0deg); }
    100% { filter: blur(10px) hue-rotate(360deg); }
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, var(--primary-green), var(--neon-blue)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-3d:hover .card-border {
    opacity: 1;
}

.card-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.card-icon-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: var(--text-white);
    background: var(--primary-green);
    padding: 15px 25px;
    border-radius: 10px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    animation: pulse-glow 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px var(--primary-green);
    font-weight: bold;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px var(--primary-green);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 50px var(--primary-green);
        transform: scale(1.05);
    }
}

.emoji-3d {
    transform: rotateY(0deg);
    animation: rotate-3d 5s ease-in-out infinite;
    display: inline-block;
}

@keyframes rotate-3d {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(180deg) rotateX(10deg); }
    50% { transform: rotateY(360deg) rotateX(0deg); }
    75% { transform: rotateY(540deg) rotateX(-10deg); }
}

.about-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-white);
    font-weight: 700;
    text-shadow: 0 0 10px var(--primary-green);
    background: rgba(0, 255, 65, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-green);
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.3);
    position: relative;
}

.holographic-border {
    border: 3px solid;
    border-image: linear-gradient(
        45deg,
        var(--primary-green),
        var(--neon-blue),
        var(--neon-pink),
        var(--primary-green)
    ) 1;
    animation: border-animation 3s linear infinite;
}

@keyframes border-animation {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 255, 65, 0.1),
        rgba(0, 217, 255, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    z-index: 3;
    opacity: 0.3;
}

.meme-video {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 100px 20px;
    background: rgba(0, 255, 65, 0.02);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tokenomics-card {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 255, 65, 0.05) 100%);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.tokenomics-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.3);
}

.stat-number {
    font-family: 'Press Start 2P', cursive;
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 15px;
    text-shadow: 0 0 20px var(--primary-green);
}

.stat-label {
    font-size: 18px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tokenomics-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-box {
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 30px;
}

.info-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-white);
    font-weight: 700;
    text-shadow: 0 0 10px var(--primary-green);
}
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
}

/* How to Buy Section */
.how-to-buy-section {
    padding: 100px 20px;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    margin-bottom: 60px;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--matrix-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px var(--primary-green);
}

.step-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-white);
    font-weight: 700;
    text-shadow: 0 0 10px var(--primary-green);
    background: rgba(0, 255, 65, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
}

.step-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
}

.step-arrow {
    font-size: 48px;
    color: var(--primary-green);
    text-align: center;
    animation: arrow-pulse 2s ease-in-out infinite;
    min-width: 60px;
}

@keyframes arrow-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(10px);
    }
}

.buy-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 50px;
    font-size: 20px;
}

/* Memes Section */
.memes-section {
    padding: 100px 20px;
    background: rgba(0, 255, 65, 0.02);
}

.memes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.meme-card {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
    cursor: pointer;
    height: auto;
}

.meme-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.5);
}

.meme-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Community Section */
.community-section {
    padding: 100px 20px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-card {
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.3);
    background: rgba(0, 255, 65, 0.1);
}

.social-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.social-icon-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 48px;
    color: var(--text-white);
    background: var(--primary-green);
    padding: 20px 30px;
    border-radius: 15px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--primary-green);
    font-weight: bold;
}

.social-card:hover .social-icon-text {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 0 50px var(--primary-green);
}

.social-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: 700;
}

.social-card p {
    font-size: 16px;
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 500;
}

.twitter:hover {
    border-color: #1DA1F2;
    box-shadow: 0 10px 40px rgba(29, 161, 242, 0.3);
}

.discord:hover {
    border-color: #5865F2;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.3);
}

.chart:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 20px 30px;
    border-top: 2px solid var(--primary-green);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    color: var(--primary-green);
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
}

.footer-text {
    flex: 1;
    text-align: center;
}

.footer-text p {
    margin-bottom: 15px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
}

.disclaimer {
    font-size: 14px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.footer-bottom p {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
}

.footer-bottom a {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    text-shadow: 0 0 10px var(--primary-green);
}

/* Animations */
@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-up {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fade-in 0.8s ease-out;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-cat {
        max-width: 400px;
        margin: 0 auto;
    }

    .glitch {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .hero-description {
        font-size: 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .glitch {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-description {
        font-size: 18px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 16px;
    }

    .btn-large {
        padding: 18px 40px;
        font-size: 18px;
    }

    .loading-cat {
        width: 150px;
        height: 150px;
    }

    .loading-text {
        font-size: 18px;
    }

    .loading-bar {
        width: 250px;
    }

    .about-grid,
    .tokenomics-grid,
    .social-links {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .ca-display code {
        font-size: 12px;
    }

    .announcement-text {
        font-size: 20px;
    }

    .announcement-icon {
        font-size: 60px;
    }

    .announcement-subtext {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .glitch {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .memes-grid {
        grid-template-columns: 1fr;
    }

    .ca-display {
        padding: 15px;
    }

    .ca-display code {
        font-size: 10px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

