/* CSS Variables for consistent theming */

:root {
    --primary-green: #00FF00;
    --secondary-green: #00CC00;
    --dark-green: #004400;
    --bg-black: #000000;
    --bg-dark-blue: #001122;
    --accent-orange: #FF6B35;
    --accent-purple: #9D4EDD;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-dark-gray: #666666;
    --border-gray: #333333;
    --shadow-green: rgba(0, 255, 0, 0.3);
    --shadow-green-light: rgba(0, 255, 0, 0.1);
    --pixel-font: 'Press Start 2P', monospace;
}

/* Performance optimizations for animations */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Reset and Base Styles */

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

body {
    font-family: var(--pixel-font);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    font-size: 12px;
    overflow-x: hidden;
}

/* Scrollbar Styling */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-green);
}

/* Container */

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

/* Header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: none;
}

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

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

.logo-img {
    width: 64px;
    height: 64px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    will-change: transform;
}

.logo-img.glitch {
    animation: glitch 2.5s infinite linear;
    will-change: transform;
}

.logo-img.glitch::before,
.logo-img.glitch::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/cat.jpg') no-repeat center/cover;
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
    will-change: transform, opacity;
}

.logo-img.glitch::before {
    left: 2px;
    top: -2px;
    mix-blend-mode: lighten;
    filter: blur(1px) brightness(1.5);
    animation: glitch-1 0.5s infinite linear alternate;
}

.logo-img.glitch::after {
    left: -2px;
    top: 2px;
    mix-blend-mode: lighten;
    filter: blur(1px) brightness(1.5);
    animation: glitch-2 0.5s infinite linear alternate;
}

@keyframes glitch-1 {
    0% {
        opacity: 0.2;
    }
    20% {
        opacity: 0.7;
        transform: translate3d(2px, -2px, 0) scaleX(1.05);
    }
    40% {
        opacity: 0.4;
        transform: translate3d(-1px, 1px, 0) scaleY(1.05);
    }
    60% {
        opacity: 0.6;
        transform: translate3d(1px, -1px, 0) scaleX(0.98);
    }
    80% {
        opacity: 0.3;
        transform: translate3d(-2px, 2px, 0) scaleY(0.98);
    }
    100% {
        opacity: 0.2;
    }
}

@keyframes glitch-2 {
    0% {
        opacity: 0.2;
    }
    20% {
        opacity: 0.6;
        transform: translate3d(-2px, 2px, 0) scaleY(1.03);
    }
    40% {
        opacity: 0.3;
        transform: translate3d(1px, -1px, 0) scaleX(1.03);
    }
    60% {
        opacity: 0.5;
        transform: translate3d(-1px, 1px, 0) scaleY(0.97);
    }
    80% {
        opacity: 0.4;
        transform: translate3d(2px, -2px, 0) scaleX(0.97);
    }
    100% {
        opacity: 0.2;
    }
}

.logo .pixel-text {
    font-size: 24px;
    color: var(--primary-green);
    text-shadow: 2px 2px 0px var(--dark-green);
}

/* Logo打字效果 */

.logo-text {
    margin-left: 8px;
    display: flex;
    align-items: center;
    font-family: var(--pixel-font);
}

.logo-typing-text {
    font-size: 7px;
    color: var(--primary-green);
    text-shadow: 1px 1px 0px var(--dark-green);
    min-height: 1.2em;
    white-space: nowrap;
}

.meow-text {
    color: var(--text-white) !important;
    text-shadow: 1px 1px 0px #333333 !important;
}

.logo-cursor {
    font-size: 7px;
    color: var(--primary-green);
    margin-left: 1px;
    animation: blink-cursor 1s infinite;
    will-change: opacity;
}

@keyframes blink-cursor {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

.nav-menu {
    display: flex;
    gap: 30px;
}

/* 默认隐藏移动端菜单按钮 */

.menu-toggle {
    display: none;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
    border: 2px solid transparent;
    padding: 8px 12px;
    will-change: color, border-color, background-color;
}

.nav-link:hover {
    color: var(--primary-green);
    border-color: var(--primary-green);
    background-color: var(--shadow-green-light);
}

/* Hero Section */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 180px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 20% 20%, rgba(0, 255, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 17, 34, 0.3) 0%, transparent 50%), #000000;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.cat-logo-hero {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.hero-cat-img {
    width: 200px;
    height: 200px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    will-change: transform;
}

.hero-cat-img.glitch-large {
    animation: glitch-large 1.2s infinite linear;
    will-change: transform;
}

.hero-cat-img.glitch-large::before,
.hero-cat-img.glitch-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/cat.jpg') no-repeat center/cover;
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
    will-change: transform, opacity;
}

.hero-cat-img.glitch-large::before {
    left: 8px;
    top: -8px;
    mix-blend-mode: lighten;
    filter: blur(2px) brightness(1.7);
    animation: glitch-large-1 0.4s infinite linear alternate;
}

.hero-cat-img.glitch-large::after {
    left: -8px;
    top: 8px;
    mix-blend-mode: lighten;
    filter: blur(2px) brightness(1.7);
    animation: glitch-large-2 0.4s infinite linear alternate;
}

@keyframes glitch-large {
    0% {
        transform: translate3d(0, 0, 0);
    }
    10% {
        transform: translate3d(-8px, 6px, 0) scale(1.04) rotate(-2deg);
    }
    20% {
        transform: translate3d(10px, -8px, 0) scale(1.06) rotate(2deg);
    }
    30% {
        transform: translate3d(-6px, 8px, 0) scale(0.98) rotate(-3deg);
    }
    40% {
        transform: translate3d(8px, -10px, 0) scale(1.08) rotate(3deg);
    }
    50% {
        transform: translate3d(-10px, 6px, 0) scale(1.02) rotate(-2deg);
    }
    60% {
        transform: translate3d(6px, -8px, 0) scale(1.04) rotate(2deg);
    }
    70% {
        transform: translate3d(-8px, 10px, 0) scale(1.06) rotate(-3deg);
    }
    80% {
        transform: translate3d(10px, -6px, 0) scale(1.08) rotate(3deg);
    }
    90% {
        transform: translate3d(-6px, 8px, 0) scale(1.02) rotate(-2deg);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes glitch-large-1 {
    0% {
        opacity: 0.2;
    }
    20% {
        opacity: 0.8;
        transform: translate3d(12px, -12px, 0) scaleX(1.12);
    }
    40% {
        opacity: 0.5;
        transform: translate3d(-8px, 8px, 0) scaleY(1.12);
    }
    60% {
        opacity: 0.7;
        transform: translate3d(8px, -8px, 0) scaleX(0.95);
    }
    80% {
        opacity: 0.3;
        transform: translate3d(-12px, 12px, 0) scaleY(0.95);
    }
    100% {
        opacity: 0.2;
    }
}

@keyframes glitch-large-2 {
    0% {
        opacity: 0.2;
    }
    20% {
        opacity: 0.7;
        transform: translate3d(-12px, 12px, 0) scaleY(1.09);
    }
    40% {
        opacity: 0.4;
        transform: translate3d(8px, -8px, 0) scaleX(1.09);
    }
    60% {
        opacity: 0.6;
        transform: translate3d(-8px, 8px, 0) scaleY(0.93);
    }
    80% {
        opacity: 0.4;
        transform: translate3d(12px, -12px, 0) scaleX(0.93);
    }
    100% {
        opacity: 0.2;
    }
}

.hero-cat-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--shadow-green);
}

.pixel-art {
    font-family: monospace;
    font-size: 10px;
    color: var(--primary-green);
    text-shadow: 0 0 10px var(--primary-green);
    animation: glow 2s ease-in-out infinite alternate;
    will-change: text-shadow;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px var(--primary-green), 0 0 10px var(--primary-green);
    }
    to {
        text-shadow: 0 0 10px var(--primary-green), 0 0 20px var(--primary-green), 0 0 30px var(--primary-green);
    }
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.glitch {
    position: relative;
    animation: glitch 3s infinite;
    will-change: transform;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    will-change: clip-path;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #0000ff;
    z-index: -2;
}

@keyframes glitch {
    0% {
        transform: translate3d(0, 0, 0);
    }
    20% {
        transform: translate3d(-2px, 2px, 0);
    }
    40% {
        transform: translate3d(-2px, -2px, 0);
    }
    60% {
        transform: translate3d(2px, 2px, 0);
    }
    80% {
        transform: translate3d(2px, -2px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes glitch-1 {
    0% {
        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);
    }
    100% {
        clip-path: inset(58% 0 43% 0);
    }
}

@keyframes glitch-2 {
    0% {
        clip-path: inset(25% 0 58% 0);
    }
    20% {
        clip-path: inset(54% 0 7% 0);
    }
    40% {
        clip-path: inset(58% 0 43% 0);
    }
    60% {
        clip-path: inset(40% 0 61% 0);
    }
    80% {
        clip-path: inset(92% 0 1% 0);
    }
    100% {
        clip-path: inset(43% 0 1% 0);
    }
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-white);
}

.hero-description {
    font-size: 14px;
    margin-bottom: 40px;
    color: var(--text-gray);
}

/* Contract Display */

.contract-display {
    margin: 40px 0;
    padding: 30px;
    border: none;
    background: linear-gradient(45deg, rgba(0, 255, 0, 0.1), rgba(0, 255, 0, 0.05), rgba(0, 255, 0, 0.1));
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    animation: contractPulse 3s ease-in-out infinite;
    will-change: transform, box-shadow;
}

.contract-display::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-green), var(--primary-green), var(--secondary-green));
    border-radius: 18px;
    z-index: -1;
    animation: contractBorder 4s linear infinite;
    will-change: background-position;
    background-size: 400% 400%;
}

.contract-display::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-black);
    border-radius: 16px;
    z-index: -1;
}

@keyframes contractPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(0, 255, 0, 0.6);
    }
}

@keyframes contractBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.contract-label {
    display: block;
    font-size: 14px;
    color: var(--primary-green);
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    text-shadow: 0 0 10px var(--primary-green);
    animation: labelGlow 2s ease-in-out infinite alternate;
    will-change: text-shadow;
}

@keyframes labelGlow {
    from {
        text-shadow: 0 0 5px var(--primary-green);
    }
    to {
        text-shadow: 0 0 20px var(--primary-green), 0 0 30px var(--primary-green);
    }
}

.contract-box,
.contract-display-alt {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contract-address,
.contract-text {
    font-family: monospace;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-green);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    padding: 15px 20px;
    margin: 0;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    display: inline-block;
    word-break: break-all;
    transition: all 0.3s ease;
    animation: addressShimmer 2.5s ease-in-out infinite;
    will-change: box-shadow, background;
}

@keyframes addressShimmer {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.6), inset 0 0 10px rgba(0, 255, 0, 0.1);
    }
}

.contract-address:hover,
.contract-text:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
    background: rgba(0, 255, 0, 0.1);
}

.copy-btn,
.copy-btn-alt {
    font-family: var(--pixel-font);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
    padding: 15px 25px;
    will-change: background-color, color, box-shadow, transform;
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
    color: var(--bg-black);
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: buttonBreath 2s ease-in-out infinite;
}

.copy-btn::before,
.copy-btn-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.copy-btn:hover::before,
.copy-btn-alt:hover::before {
    left: 100%;
}

@keyframes buttonBreath {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.7), 0 0 35px rgba(0, 255, 0, 0.3);
        transform: scale(1.05);
    }
}

.copy-btn:hover,
.copy-btn-alt:hover {
    background: linear-gradient(45deg, var(--secondary-green), var(--primary-green));
    color: var(--bg-black);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8), 0 0 50px rgba(0, 255, 0, 0.5);
    border-color: var(--secondary-green);
    transform: scale(1.1) translateY(-2px);
    animation: none;
}

.copy-btn:active,
.copy-btn-alt:active {
    transform: scale(0.95) translateY(1px);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

/* Buttons */

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-tertiary {
    display: inline-block;
    padding: 15px 25px;
    font-family: var(--pixel-font);
    font-size: 12px;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
    cursor: pointer;
    will-change: background-color, color, box-shadow;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--bg-black);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--bg-black);
    color: var(--primary-green);
    box-shadow: 0 0 20px var(--primary-green);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.btn-secondary:hover {
    background-color: var(--accent-orange);
    color: var(--bg-black);
    box-shadow: 0 0 20px var(--accent-orange);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--accent-purple);
    border-color: var(--accent-purple);
}

.btn-tertiary:hover {
    background-color: var(--accent-purple);
    color: var(--bg-black);
    box-shadow: 0 0 20px var(--accent-purple);
}

/* Sections */

.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-gray);
    position: relative;
    z-index: 2;
    background: var(--bg-black);
}

.section-alt {
    background-color: var(--bg-dark-blue);
}

.section-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-green);
    text-shadow: 2px 2px 0px var(--dark-green);
    position: relative;
    z-index: 3;
}

.content-grid {
    max-width: 800px;
    margin: 0 auto;
}

.text-content {
    font-size: 12px;
    line-height: 1.8;
}

.text-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

/* Quote Box */

.quote-box {
    background-color: var(--shadow-green-light);
    border-left: 4px solid var(--primary-green);
    padding: 20px;
    margin: 30px 0;
}

.quote-box p {
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 15px;
}

.quote-box p:last-child {
    margin-bottom: 0;
}

/* Terminal Window */

.terminal-window {
    background-color: #1a1a1a;
    border: 2px solid var(--primary-green);
    border-radius: 0;
    margin: 40px 0;
    box-shadow: 0 0 20px var(--shadow-green);
}

.terminal-header {
    background-color: var(--primary-green);
    color: var(--bg-black);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-title {
    font-size: 12px;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border: 1px solid var(--bg-black);
    background-color: var(--text-gray);
}

.control.close {
    background-color: #ff0000;
}

.control.maximize {
    background-color: #ffff00;
}

.control.minimize {
    background-color: var(--primary-green);
}

.terminal-content {
    padding: 20px;
    font-family: monospace;
    font-size: 12px;
}

.terminal-line {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.prompt {
    color: var(--primary-green);
    flex-shrink: 0;
}

.command {
    color: var(--text-white);
    flex: 1;
}

.typing-text {
    animation: typing 4s steps(40, end) infinite;
    overflow: hidden;
    white-space: nowrap;
    will-change: width;
}

@keyframes typing {
    0% {
        width: 0;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 100%;
    }
}

.cursor {
    color: var(--primary-green);
    animation: blink 1s infinite;
    will-change: opacity;
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

/* Token Info */

.token-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.token-card {
    background-color: var(--shadow-green-light);
    border: 2px solid var(--primary-green);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
}

.token-card.full-width {
    grid-column: 1 / -1;
}

.token-card h3 {
    font-size: 14px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.token-card p {
    font-size: 12px;
    color: var(--text-white);
}

.contract-display-alt {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contract-text {
    font-family: monospace;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-green);
    background: rgba(0, 255, 0, 0.08);
    border: 2px solid var(--primary-green);
    border-radius: 6px;
    padding: 12px 18px;
    margin: 10px 0;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    display: inline-block;
    word-break: break-all;
    transition: box-shadow 0.3s;
    will-change: box-shadow, background;
}

.contract-text:hover {
    box-shadow: 0 0 24px rgba(0, 255, 0, 0.6);
    background: rgba(0, 255, 0, 0.15);
}

.copy-btn-alt {
    background-color: var(--accent-orange);
    color: var(--bg-black);
    border: none;
    padding: 8px 12px;
    font-family: var(--pixel-font);
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    will-change: background-color, box-shadow;
}

.copy-btn-alt:hover {
    background-color: var(--text-white);
    box-shadow: 0 0 10px var(--accent-orange);
}

/* External Links */

.external-links {
    text-align: center;
}

.external-links h3 {
    font-size: 16px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-orange);
    text-decoration: none;
    font-size: 10px;
    transition: all 0.3s ease;
    will-change: background-color, color, box-shadow;
}

.link-btn:hover {
    background-color: var(--accent-orange);
    color: var(--bg-black);
    box-shadow: 0 0 15px var(--accent-orange);
}

/* Roadmap */

.roadmap {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
    will-change: border-color, background-color, box-shadow;
}

.roadmap-item.completed {
    border-color: var(--primary-green);
    background-color: var(--shadow-green-light);
}

.roadmap-item.active {
    border-color: var(--accent-orange);
    background-color: rgba(255, 107, 53, 0.05);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.roadmap-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.roadmap-content h3 {
    font-size: 14px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.roadmap-content p {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.status {
    display: inline-block;
    font-size: 10px;
    padding: 4px 8px;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    background-color: var(--shadow-green-light);
}

.roadmap-item.active .status {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    background-color: rgba(255, 107, 53, 0.1);
}

/* Social Links */

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 2px solid var(--primary-green);
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
    min-width: 120px;
    will-change: background-color, box-shadow;
}

.social-link:hover {
    background-color: var(--shadow-green-light);
    box-shadow: 0 0 20px var(--shadow-green);
}

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

/* Footer */

.footer {
    background-color: var(--bg-dark-blue);
    padding: 40px 0 20px;
    border-top: 2px solid var(--primary-green);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 14px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 10px;
    color: var(--text-gray);
    word-break: break-word;
}

.footer-bottom {
    border-top: 1px solid var(--border-gray);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 10px;
    color: var(--text-dark-gray);
}

/* Copy Notification */

.copy-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: var(--primary-green);
    color: var(--bg-black);
    padding: 20px 30px;
    font-size: 14px;
    border: 2px solid var(--text-white);
    z-index: 10000;
    transition: all 0.3s ease;
    will-change: transform;
}

.copy-notification.show {
    transform: translate(-50%, -50%) scale(1);
    animation: copySuccess 0.6s ease;
}

@keyframes copySuccess {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

/* Responsive Design */

@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        position: relative;
    }
    .logo {
        flex-direction: row;
        gap: 10px;
    }
    .logo-text {
        margin-left: 8px;
    }
    .logo-typing-text {
        font-size: 7px;
    }
    .logo-cursor {
        font-size: 7px;
        margin-left: 1px;
    }
    .menu-toggle {
        display: block;
        font-family: var(--pixel-font);
        font-size: 16px;
        color: var(--primary-green);
        background: transparent;
        border: none;
        border-radius: 6px;
        padding: 6px 10px;
        margin-left: auto;
        margin-right: 0;
        box-shadow: none;
        letter-spacing: 0;
        cursor: pointer;
        z-index: 1200;
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
        width: 40px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        will-change: background, color, box-shadow;
    }
    .menu-toggle:active,
    .menu-toggle:focus,
    .menu-toggle:hover {
        background: var(--shadow-green-light);
        color: var(--text-white);
        box-shadow: 0 0 10px var(--shadow-green);
        outline: none;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        background: rgba(0, 17, 34, 0.98);
        border-radius: 0 0 16px 16px;
        box-shadow: 0 8px 32px rgba(0, 255, 0, 0.2);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0 0 20px 0;
        transition: all 0.3s;
    }
    .nav-menu.mobile-active {
        display: flex;
    }
    .nav-link {
        font-size: 16px;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border: none;
        background: none;
        color: var(--primary-green);
        border-bottom: 1px dashed var(--primary-green);
        margin: 0;
        transition: background 0.2s, color 0.2s;
        will-change: background, color;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
    .nav-link:hover {
        background: var(--bg-dark-blue);
        color: var(--text-white);
    }
    .hero {
        padding-top: 180px;
        padding-bottom: 80px;
    }
    .hero-cat-img {
        width: 150px;
        height: 150px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 300px;
    }
    .contract-box,
    .contract-display-alt {
        flex-direction: column;
        text-align: center;
    }
    .contract-address,
    .contract-text {
        font-size: 14px;
        padding: 8px 10px;
    }
    .copy-btn,
    .copy-btn-alt {
        font-size: 12px;
        padding: 8px 14px;
        border-radius: 0 8px 8px 0;
    }
    .section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 18px;
        margin-bottom: 40px;
    }
    .terminal-line {
        flex-direction: column;
        gap: 5px;
    }
    .roadmap-item {
        flex-direction: column;
        text-align: center;
    }
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .logo-img {
        width: 54px;
        height: 54px;
    }
    /* Timeline Mobile */
    .timeline {
        padding-left: 60px;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item::before {
        left: -55px;
        font-size: 8px;
        padding: 3px 6px;
        top: -6px;
    }
    .timeline-icon {
        left: -35px;
        width: 30px;
        height: 30px;
        font-size: 16px;
        top: 18px;
    }
    .timeline-content {
        max-width: none;
    }
    /* Story Cards Mobile */
    .story-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .story-card {
        padding: 20px;
    }
    .story-icon {
        font-size: 28px;
    }
    /* Quotes Mobile */
    .quotes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .quote-mark {
        font-size: 36px;
    }
    /* Banner Mobile */
    .movement-banner {
        padding: 20px;
    }
    .banner-content h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 10px;
    }
    .container {
        padding: 0 15px;
    }
    .logo-img {
        width: 44px;
        height: 44px;
    }
    .logo-text {
        margin-left: 6px;
    }
    .logo-typing-text {
        font-size: 7px;
    }
    .logo-cursor {
        font-size: 7px;
        margin-left: 1px;
    }
    .hero-cat-img {
        width: 120px;
        height: 120px;
    }
    .hero-title {
        font-size: 24px;
    }
    .hero-subtitle {
        font-size: 14px;
    }
    .pixel-art {
        font-size: 8px;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-link {
        font-size: 14px;
        padding: 12px 10px;
    }
    .contract-address,
    .contract-text {
        font-size: 12px;
        padding: 6px 6px;
    }
    .copy-btn,
    .copy-btn-alt {
        font-size: 10px;
        padding: 6px 8px;
        border-radius: 0 8px 8px 0;
    }
    .token-img-caption {
        font-size: 12px;
    }
    .token-image-block {
        padding: 10px 2vw 8px 2vw;
    }
    /* Timeline Mobile 480px */
    .timeline {
        padding-left: 50px;
    }
    .timeline::before {
        left: 15px;
    }
    .timeline-item::before {
        left: -45px;
        font-size: 7px;
        padding: 2px 4px;
        top: -5px;
    }
    .timeline-icon {
        left: -28px;
        width: 26px;
        height: 26px;
        font-size: 14px;
        top: 15px;
    }
    .timeline-content h3 {
        font-size: 12px;
    }
    .timeline-content p {
        font-size: 10px;
    }
}

/* Token Images Section */

.token-images {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.token-image-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 17, 34, 0.7);
    border: 3px solid var(--primary-green);
    border-radius: 12px;
    padding: 24px 18px 18px 18px;
    box-shadow: 0 0 24px rgba(0, 255, 0, 0.2);
    max-width: 480px;
    min-width: 260px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
}

.token-img {
    width: 100%;
    max-width: 420px;
    min-width: 180px;
    height: auto;
    image-rendering: pixelated;
    border: 2px solid var(--primary-green);
    background: var(--bg-black);
    border-radius: 8px;
    margin-bottom: 18px;
    box-shadow: 0 0 16px rgba(0, 255, 0, 0.2);
    transition: box-shadow 0.3s, transform 0.3s;
    will-change: transform, box-shadow;
}

.token-img:hover {
    box-shadow: 0 0 40px var(--primary-green);
    transform: scale(1.03) rotate(-2deg);
}

.token-img-caption {
    font-family: var(--pixel-font);
    font-size: 16px;
    color: var(--primary-green);
    text-align: center;
    margin-top: 8px;
    text-shadow: 1px 1px 0 var(--bg-dark-blue);
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .token-images {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .token-image-block {
        max-width: 95vw;
        min-width: 0;
        padding: 16px 6vw 12px 6vw;
    }
    .token-img {
        max-width: 90vw;
    }
}

@media (max-width: 480px) {
    .token-img-caption {
        font-size: 12px;
    }
    .token-image-block {
        padding: 10px 2vw 8px 2vw;
    }
}

/* Timeline Styles - Simplified */

.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-left: 80px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    will-change: opacity, transform;
}

.timeline-item::before {
    content: attr(data-date);
    position: absolute;
    left: -70px;
    top: -8px;
    background: var(--primary-green);
    color: var(--bg-black);
    padding: 4px 8px;
    font-size: 9px;
    font-family: var(--pixel-font);
    border-radius: 10px;
    white-space: nowrap;
    z-index: 10;
}

.timeline-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: var(--shadow-green-light);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: absolute;
    left: -50px;
    top: 25px;
    z-index: 5;
}

.timeline-content {
    flex: 1;
    background: rgba(0, 17, 34, 0.7);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 20px;
    margin-left: 0;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
}

.timeline-content h3 {
    font-size: 14px;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-family: var(--pixel-font);
}

.timeline-content p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Story Cards */

.story-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.story-card {
    background: rgba(0, 17, 34, 0.7);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform, border-color, box-shadow;
}

.story-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.story-card.highlight {
    border-color: var(--primary-green);
    background: var(--shadow-green-light);
}

.story-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), var(--primary-green));
}

.story-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.story-card h3 {
    font-size: 14px;
    color: var(--primary-green);
    margin-bottom: 16px;
    font-family: var(--pixel-font);
}

.story-card p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Quote Section */

.quote-section {
    margin: 60px 0;
}

.quote-title {
    font-size: 18px;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--pixel-font);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.quote-card {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
}

.quote-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.quote-mark {
    font-size: 48px;
    color: var(--accent-orange);
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: serif;
}

.quote-card p {
    font-size: 12px;
    color: var(--text-white);
    font-style: italic;
    margin-top: 20px;
    line-height: 1.6;
}

/* Movement Banner */

.movement-banner {
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.movement-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient( 45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
    animation: slide 20s linear infinite;
    will-change: transform;
}

@keyframes slide {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h3 {
    font-size: 18px;
    color: var(--bg-black);
    margin-bottom: 12px;
    font-family: var(--pixel-font);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.banner-content p {
    font-size: 12px;
    color: var(--bg-black);
    font-weight: bold;
}

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

.timeline-item:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.8s;
}