/* Pixel Art Font */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* CSS Variables */
:root {
    --primary-color: #00ff00;
    --secondary-color: #ff00ff;
    --accent-color: #00ffff;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-panel: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-color: #333333;
    --shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
    --glow: 0 0 10px var(--primary-color);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Press Start 2P', cursive;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Pixel Stars Background */
.pixel-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 60px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 90px 10px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 3s infinite;
    opacity: 0.5;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Pixel Navbar */
.pixel-nav {
    background-color: var(--bg-darker);
    border-bottom: 4px solid var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 0 var(--primary-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    image-rendering: pixelated;
}

.logo-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 0 var(--bg-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.7rem;
}

.nav-menu a.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.nav-menu a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
}

.nav-menu a.disabled::after {
    content: 'SOON';
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--bg-dark);
    font-size: 0.5rem;
    padding: 0.2rem 0.4rem;
    border: 2px solid var(--bg-dark);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Pixel Buttons */
.pixel-btn {
    font-family: 'Press Start 2P', cursive;
    padding: 0.8rem 1.5rem;
    border: 4px solid var(--text-primary);
    background-color: var(--bg-panel);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 0.7rem;
    text-transform: uppercase;
    box-shadow: var(--shadow);
    transition: all 0.1s;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.pixel-btn .btn-icon {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.pixel-btn svg.btn-icon {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    fill: currentColor;
}

.pixel-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    background-color: var(--border-color);
}

.pixel-btn:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

.pixel-btn-primary {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.pixel-btn-primary:hover {
    background-color: #00cc00;
    box-shadow: 0 0 20px var(--primary-color);
}

.pixel-btn-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.pixel-btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
}

.pixel-btn-secondary:hover .btn-icon {
    color: var(--bg-dark);
}

.pixel-btn-large {
    padding: 1.2rem 2rem;
    font-size: 0.9rem;
}

.pixel-btn-large .btn-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.pixel-btn-large svg.btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

.pixel-btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1rem;
}

.pixel-btn-xl .btn-icon {
    width: 1.8rem;
    height: 1.8rem;
}

.pixel-btn-xl svg.btn-icon {
    width: 1.8rem;
    height: 1.8rem;
    fill: currentColor;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pixel-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 4px 4px 0 var(--bg-dark);
    line-height: 1.5;
}

.pixel-title-large {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 6px 6px 0 var(--bg-dark);
    line-height: 1.3;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--secondary-color);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-color);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(random(100) + px, 9999px, random(100) + px, 0); }
    100% { clip: rect(random(100) + px, 9999px, random(100) + px, 0); }
}

.pixel-text {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-box {
    background-color: var(--bg-panel);
    border: 4px solid var(--border-color);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px var(--primary-color));
}

/* Floating Animation */
@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.pixel-title-section {
    font-size: 2rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0 var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.pixel-text-center {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

/* Story Section */
.story-section {
    background-color: var(--bg-darker);
}

.comic-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: var(--bg-panel);
    border: 4px solid var(--border-color);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.comic-panel.reverse {
    direction: rtl;
}

.comic-panel.reverse > * {
    direction: ltr;
}

.panel-image {
    display: flex;
    align-items: center;
}

.comic-img {
    width: 100%;
    height: auto;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.panel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.panel-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 0 var(--bg-dark);
}

.panel-subtitle {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-style: italic;
}

.panel-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.panel-text p {
    font-size: 0.7rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.panel-text strong {
    color: var(--primary-color);
}

.panel-text em {
    color: var(--accent-color);
}

/* Collection Section */
.collection-section {
    background-color: var(--bg-dark);
}

/* NFT Gallery - Main Display */
.nft-gallery-section {
    margin-bottom: 6rem;
}

.nft-gallery-section .pixel-subtitle {
    font-size: 1.8rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0 var(--bg-dark);
}

.gallery-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
}

/* Traits Section - Secondary */
.traits-section {
    margin-bottom: 4rem;
    padding-top: 3rem;
    border-top: 4px solid var(--border-color);
}

.traits-section .pixel-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.traits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.trait-card {
    background-color: var(--bg-panel);
    border: 4px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.trait-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 0 var(--primary-color);
}

.trait-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trait-icon-svg {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
}

.trait-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trait-desc {
    font-size: 0.6rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.rarity-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 4px solid var(--border-color);
}

.rarity-section .pixel-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.pixel-subtitle {
    font-size: 1.5rem;
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.rarity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.rarity-box {
    padding: 1.5rem;
    border: 4px solid;
    text-align: center;
    box-shadow: var(--shadow);
}

.rarity-box.common { border-color: #888888; background-color: rgba(136, 136, 136, 0.1); }
.rarity-box.uncommon { border-color: #00ff00; background-color: rgba(0, 255, 0, 0.1); }
.rarity-box.rare { border-color: #0088ff; background-color: rgba(0, 136, 255, 0.1); }
.rarity-box.epic { border-color: #aa00ff; background-color: rgba(170, 0, 255, 0.1); }
.rarity-box.legendary { border-color: #ffaa00; background-color: rgba(255, 170, 0, 0.1); }

.rarity-name {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rarity-desc {
    font-size: 0.6rem;
    color: var(--text-secondary);
}

/* NFT Gallery */
.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.nft-card {
    background-color: var(--bg-panel);
    border: 4px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.nft-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 12px 0 var(--primary-color);
}

.nft-image-container {
    width: 100%;
    height: 280px;
    background-color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.nft-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.nft-id-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    border: 2px solid var(--bg-dark);
    box-shadow: 2px 2px 0 var(--bg-dark);
}

.nft-info {
    padding: 1.5rem;
}

.nft-name {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.nft-traits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nft-trait {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    padding: 0.5rem;
    background-color: var(--bg-darker);
    border: 2px solid var(--border-color);
}

.trait-type {
    color: var(--text-secondary);
}

.trait-value {
    color: var(--accent-color);
    font-weight: bold;
}

.nft-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.pixel-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 0;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nft-loading p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Roadmap Section */
.roadmap-section {
    background-color: var(--bg-darker);
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    padding-left: 4rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--border-color);
}

.roadmap-item {
    position: relative;
    background-color: var(--bg-panel);
    border: 4px solid var(--border-color);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.roadmap-item.completed {
    border-color: var(--primary-color);
}

.roadmap-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
}

.roadmap-marker {
    position: absolute;
    left: -4.5rem;
    top: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--bg-panel);
    border: 4px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.marker-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.roadmap-item.completed .roadmap-marker {
    border-color: var(--primary-color);
}

.roadmap-item.completed .marker-icon {
    color: var(--primary-color);
}

.roadmap-item.active .roadmap-marker {
    border-color: var(--accent-color);
}

.roadmap-item.active .marker-icon {
    color: var(--accent-color);
}

.roadmap-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.roadmap-date {
    font-size: 0.65rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

.roadmap-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.roadmap-list li {
    font-size: 0.7rem;
    color: var(--text-secondary);
    padding-left: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.list-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.roadmap-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--bg-panel);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.roadmap-note i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.roadmap-note p {
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    background-color: var(--bg-dark);
}

/* Whitelist Section */
.whitelist-section {
    background-color: var(--bg-darker);
}

/* Whitelist Page (separate page) */
.whitelist-page {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding-top: 100px;
}

.whitelist-header {
    text-align: center;
    margin-bottom: 3rem;
}

.whitelist-header .pixel-title-large {
    margin-bottom: 1rem;
}

.whitelist-header .pixel-text-large {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.whitelist-back {
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 4rem;
}

/* Mint Page */
.mint-page {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding-top: 100px;
    position: relative;
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.coming-soon-content {
    max-width: 800px;
    text-align: center;
    background-color: var(--bg-panel);
    border: 4px solid var(--accent-color);
    padding: 4rem 3rem;
    box-shadow: 0 0 50px var(--accent-color);
}

.coming-soon-icon {
    margin-bottom: 2rem;
}

.coming-soon-icon i {
    width: 6rem;
    height: 6rem;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

.coming-soon-title {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0 var(--bg-dark);
}

.coming-soon-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 3rem;
}

.coming-soon-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.coming-soon-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.info-box i {
    width: 2rem;
    height: 2rem;
    color: var(--accent-color);
}

.info-box p {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.mint-disabled {
    opacity: 0.3;
    pointer-events: none;
    filter: blur(5px);
}

.mint-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mint-header .pixel-title-large {
    margin-bottom: 1rem;
}

.mint-header .pixel-text-large {
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Mint Status Banner */
.mint-status-banner {
    text-align: center;
    margin-bottom: 3rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--bg-panel);
    border: 4px solid var(--primary-color);
    padding: 1rem 2rem;
    box-shadow: 0 0 20px var(--primary-color);
}

.status-dot {
    width: 1rem;
    height: 1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.status-dot.pulsing {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.status-text {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Mint Container */
.mint-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Mint Preview */
.mint-preview {
    background-color: var(--bg-panel);
    border: 4px solid var(--border-color);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.mint-section-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mint-section-title i {
    width: 1.5rem;
    height: 1.5rem;
}

.preview-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--bg-darker);
    border: 4px solid var(--border-color);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

.preview-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    background-color: var(--bg-darker);
    border: 2px solid var(--border-color);
}

.info-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.info-value {
    font-size: 0.7rem;
    color: var(--primary-color);
}

/* Mint Controls */
.mint-controls {
    background-color: var(--bg-panel);
    border: 4px solid var(--border-color);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.wallet-section {
    text-align: center;
    padding: 2rem 0;
}

.wallet-status {
    margin-bottom: 2rem;
}

.wallet-icon {
    width: 4rem;
    height: 4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.wallet-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Mint Interface */
.mint-interface {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.connected-wallet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: rgba(0, 255, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wallet-icon-success {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
}

.wallet-details {
    text-align: left;
}

.wallet-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.wallet-address {
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Mint Amount */
.mint-amount {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mint-label {
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mint-label i {
    width: 1.2rem;
    height: 1.2rem;
}

.amount-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.amount-btn {
    width: 3rem;
    height: 3rem;
    background-color: var(--bg-darker);
    border: 4px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.amount-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.amount-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.amount-input {
    flex: 1;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    text-align: center;
    padding: 1rem;
    background-color: var(--bg-darker);
    border: 4px solid var(--border-color);
    color: var(--primary-color);
}

.amount-note {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Price Breakdown */
.price-breakdown {
    background-color: var(--bg-darker);
    border: 2px solid var(--border-color);
    padding: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--primary-color);
}

.price-row.total .price-label,
.price-row.total .price-value {
    font-size: 1rem;
    color: var(--primary-color);
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.price-value {
    font-size: 0.8rem;
    color: var(--text-primary);
}

/* Mint Status */
.mint-status {
    padding: 1.5rem;
    background-color: rgba(0, 255, 255, 0.1);
    border: 2px solid var(--accent-color);
    text-align: center;
}

.status-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.status-spinner {
    width: 3rem;
    height: 3rem;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--accent-color);
    animation: spin 1s linear infinite;
}

.status-message {
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* Mint Stats */
.mint-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Mint FAQ */
.mint-faq {
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background-color: var(--bg-panel);
    border: 4px solid var(--border-color);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-question i {
    width: 1.2rem;
    height: 1.2rem;
}

.faq-answer {
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.mint-back {
    text-align: center;
    padding-bottom: 4rem;
}

/* Success Modal */
.mint-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.success-icon-large {
    margin-bottom: 2rem;
}

.success-icon-large i {
    width: 6rem;
    height: 6rem;
    color: var(--primary-color);
}

.success-title-large {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.success-text-large {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 2rem;
    text-align: center;
}

.success-image {
    margin: 2rem 0;
    border: 4px solid var(--primary-color);
    overflow: hidden;
}

.celebration-image {
    width: 100%;
    height: auto;
    display: block;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .mint-container {
        grid-template-columns: 1fr;
    }
    
    .mint-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mint-stats {
        grid-template-columns: 1fr;
    }
    
    .amount-selector {
        flex-direction: column;
    }
    
    .amount-btn {
        width: 100%;
    }
    
    .coming-soon-content {
        padding: 3rem 2rem;
    }
    
    .coming-soon-title {
        font-size: 1.5rem;
    }
    
    .coming-soon-info {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-actions {
        flex-direction: column;
    }
}

.whitelist-hero {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.video-container {
    width: 100%;
    max-width: 900px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 30px var(--primary-color);
    overflow: hidden;
}

.video-container-enhanced {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 30px var(--primary-color), 0 0 60px rgba(0, 255, 0, 0.3);
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-panel);
}

.hero-video-enhanced {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.7);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.7) 100%
    );
    pointer-events: none;
}

.twitter-cta {
    text-align: center;
    padding: 2rem;
    pointer-events: all;
}

.cta-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.cta-username {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px var(--accent-color);
}

.promo-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 30px var(--primary-color), 0 0 60px rgba(0, 255, 0, 0.3);
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-panel);
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    animation: promoGlow 3s ease-in-out infinite;
}

@keyframes promoGlow {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 10px rgba(0, 255, 0, 0.3)); 
    }
    50% { 
        filter: brightness(1.05) drop-shadow(0 0 25px rgba(0, 255, 0, 0.6)); 
    }
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

.animated-image {
    animation: subtleFloat 4s ease-in-out infinite, subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes subtleGlow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 10px rgba(0, 255, 0, 0.3)); }
    50% { filter: brightness(1.1) drop-shadow(0 0 20px rgba(0, 255, 0, 0.5)); }
}

/* Whitelist Benefits */
.whitelist-benefits {
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--bg-panel);
    border: 4px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 0 var(--primary-color);
}

.benefit-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.benefit-icon-svg {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
}

.benefit-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.benefit-desc {
    font-size: 0.6rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Whitelist CTA */
.whitelist-cta {
    text-align: center;
    margin: 4rem 0;
}

/* Whitelist Stats */
.whitelist-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* Whitelist Modal */
.whitelist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    background-color: var(--bg-panel);
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 50px var(--primary-color);
    overflow-y: auto;
    z-index: 1;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-color: var(--text-primary);
}

.modal-close:hover {
    border-color: #ff0000;
    background-color: #ff0000;
    color: var(--bg-dark);
}

.modal-close i {
    width: 1.5rem;
    height: 1.5rem;
}

.modal-content {
    padding: 3rem;
}

.modal-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.modal-title i {
    width: 2rem;
    height: 2rem;
}

.modal-subtitle {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Whitelist Form (in modal) */

.form-wrapper {
    margin: 0 auto;
}

.whitelist-form {
    background-color: var(--bg-darker);
    border: 2px solid var(--border-color);
    padding: 2rem;
    box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.form-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.form-step:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 2px 2px 0 var(--bg-dark);
}

.step-title {
    font-size: 1rem;
    color: var(--primary-color);
}

.step-content {
    padding-left: 4rem;
}

.step-desc {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.input-prefix {
    background-color: var(--bg-darker);
    border: 4px solid var(--border-color);
    border-right: none;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.pixel-input {
    font-family: 'Press Start 2P', cursive;
    width: 100%;
    padding: 1rem 1.5rem;
    border: 4px solid var(--border-color);
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-size: 0.7rem;
    box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
}

.pixel-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.3), 0 0 10px var(--primary-color);
}

.pixel-input::placeholder {
    color: var(--border-color);
}

.pixel-input:invalid:not(:placeholder-shown) {
    border-color: #ff0000;
}

.pixel-input:valid:not(:placeholder-shown) {
    border-color: var(--primary-color);
}

.twitter-btn {
    margin-bottom: 1rem;
}

.step-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.step-check input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}

.step-check label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.pixel-btn-small {
    padding: 0.6rem 1rem;
    font-size: 0.6rem;
}

.pixel-btn-small .btn-icon {
    width: 1rem;
    height: 1rem;
}

.connect-wallet-btn {
    margin-top: 0.5rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-status {
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
    font-size: 0.7rem;
    border: 2px solid transparent;
}

.form-status.success {
    background-color: rgba(0, 255, 0, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.form-status.error {
    background-color: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
    color: #ff0000;
}

/* Success Message */
.success-message {
    background-color: var(--bg-darker);
    border: 4px solid var(--primary-color);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 30px var(--primary-color);
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon i {
    width: 5rem;
    height: 5rem;
    color: var(--primary-color);
}

.success-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 2rem;
}

.success-video {
    margin: 2rem 0;
    border: 4px solid var(--primary-color);
    overflow: hidden;
}

.celebration-video {
    width: 100%;
    height: auto;
    display: block;
    animation: celebrationPulse 2s ease-in-out infinite;
}

@keyframes celebrationPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.2); }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .step-content {
        padding-left: 0;
    }
    
    .whitelist-stats {
        grid-template-columns: 1fr;
    }
}

/* Team Section Styles */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-card {
    background-color: var(--bg-panel);
    border: 4px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.team-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 12px 0 var(--primary-color);
}

.team-image-container {
    width: 100%;
    height: 320px;
    background-color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.team-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.6rem;
    border: 2px solid;
    box-shadow: 2px 2px 0 var(--bg-dark);
    font-weight: bold;
}

.team-badge.founder {
    background-color: var(--primary-color);
    border-color: var(--bg-dark);
    color: var(--bg-dark);
}

.team-badge.artist {
    background-color: var(--secondary-color);
    border-color: var(--bg-dark);
    color: var(--bg-dark);
}

.team-badge.developer {
    background-color: var(--accent-color);
    border-color: var(--bg-dark);
    color: var(--bg-dark);
}

.team-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-name {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-align: center;
}

.team-role {
    font-size: 0.7rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.team-bio {
    font-size: 0.6rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid var(--border-color);
    background-color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.social-link i {
    width: 1.2rem;
    height: 1.2rem;
}

.social-link svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}

.social-link:hover svg {
    fill: var(--bg-dark);
}

.team-cta {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-panel);
    border: 4px solid var(--border-color);
    box-shadow: var(--shadow);
}

.team-cta-text {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.pixel-text-large {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--text-secondary);
    margin: 2rem 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Footer */
.pixel-footer {
    background-color: var(--bg-darker);
    border-top: 4px solid var(--primary-color);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.6rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-size: 0.6rem;
    color: var(--text-secondary);
}

.inline-icon {
    width: 0.8rem;
    height: 0.8rem;
    display: inline-block;
    vertical-align: middle;
}

/* Mobile Connect Wallet - Hidden on Desktop */
.mobile-connect-wallet {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .comic-panel {
        grid-template-columns: 1fr;
    }
    
    /* Show hamburger, hide desktop menu */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-darker);
        border-left: 4px solid var(--primary-color);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0, 255, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 0.8rem;
        padding: 1rem;
    }
    
    /* Hide desktop connect wallet, show mobile version */
    .nav-container > .pixel-btn-primary {
        display: none;
    }
    
    /* Mobile Connect Wallet inside menu */
    .nav-menu .mobile-connect-wallet {
        display: block;
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .pixel-title-large {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .pixel-btn-large {
        padding: 1rem 1.5rem;
        font-size: 0.7rem;
    }
    
    .nav-menu {
        width: 90%;
    }
    
    .logo-text {
        font-size: 0.8rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
}
