:root {
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8960c;
    --crimson: #dc143c;
    --crimson-dark: #8b0000;
    --black: #050505;
    --dark: #0a0a0a;
    --darker: #080808;
    --gray-900: #111;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #444;
    --gray-400: #888;
    --white: #f5f5f5;
    --cyan: #00d4ff;
    --green: #00ff88;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans JP', -apple-system, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--black); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Animated Background */
.bg-grid {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-up 15s infinite;
    will-change: transform, opacity;
}

@keyframes float-up {
    0% { opacity: 0; transform: translateY(100vh) rotate(0deg); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100vh) rotate(720deg); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
}

.logo-kanji {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--crimson);
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
    transition: text-shadow 0.4s, transform 0.4s;
}

.logo:hover .logo-kanji {
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.7), 0 0 60px rgba(220, 20, 60, 0.3);
    transform: scale(1.08);
}

/* Diagonal katana slash separator */
.logo-slash {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: rotate(15deg);
    opacity: 0.5;
    transition: opacity 0.4s, height 0.4s;
}

.logo:hover .logo-slash {
    opacity: 1;
    height: 28px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    background: linear-gradient(
        90deg,
        var(--gold-dark) 0%,
        var(--gold-light) 25%,
        var(--gold) 50%,
        var(--gold-light) 75%,
        var(--gold-dark) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logo-shimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
    transition: filter 0.4s;
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.6));
    animation-duration: 1.5s;
}

@keyframes logo-shimmer {
    0%, 100% { background-position: 100% center; }
    50% { background-position: 0% center; }
}

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

.nav-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:not(.btn):hover { color: var(--white); }
.nav-links a:not(.btn):hover::after { width: 100%; }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px; height: 2px;
    background: var(--gold);
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 999;
}

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

.mobile-menu a {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--gray-800);
}

.mobile-menu a:last-child { border: none; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.btn-lg { padding: 1.125rem 2.5rem; font-size: 0.95rem; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badge .pulse {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-video-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold), var(--crimson), var(--gold));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.5;
}

.hero-video {
    width: 100%;
    display: block;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 50%, var(--white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite, fadeInUp 0.8s ease 0.4s both;
}

@keyframes shimmer { to { background-position: 200% center; } }

.hero .tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--crimson);
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 2px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto 0.5rem;
}

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

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

/* Live Stats Bar */
.live-stats {
    background: var(--gray-900);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-value .unit { font-size: 1rem; opacity: 0.7; }
.stat-value.online { color: var(--green); }

.stat-label {
    color: var(--gray-400);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* Section Styling */
section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

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

.section-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* What Is Section */
.what-is { background: linear-gradient(180deg, var(--black) 0%, var(--darker) 100%); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.feature-card p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.7; }

/* Games Section */
.games { background: var(--darker); }

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.game-card {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border: 1px solid var(--gray-700);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.15);
}

.game-card-header {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 2.5rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-700);
}

.game-icon { font-size: 4rem; margin-bottom: 1rem; display: block; }

.game-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.game-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--green);
    color: var(--black);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--black);
    border-radius: 50%;
}

.game-badge.coming-soon { background: var(--cyan); }
.game-card-body { padding: 2rem; }
.game-card p { color: var(--gray-400); margin-bottom: 1.5rem; font-size: 0.95rem; }
.game-features { list-style: none; }

.game-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.game-features li::before { content: '\2713'; color: var(--gold); font-weight: bold; }

/* Coming Soon Games */
.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.coming-soon-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--gray-700);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s, border-color 0.3s;
}

.coming-soon-card:hover { opacity: 1; border-color: var(--cyan); }
.coming-soon-card .game-icon { font-size: 2.5rem; filter: grayscale(0.5); }

.coming-soon-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.coming-soon-card .game-badge { font-size: 0.65rem; padding: 0.25rem 0.6rem; }

/* How It Works */
.how-it-works { background: var(--black); }

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%; right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gray-700), var(--gray-700), transparent);
}

.step { text-align: center; position: relative; }

.step-number {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step h3 { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; margin-bottom: 0.75rem; }
.step p { color: var(--gray-400); font-size: 0.95rem; max-width: 250px; margin: 0 auto; }

.step code {
    display: block;
    background: var(--gray-800);
    color: var(--cyan);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Developers Section */
.developers { background: linear-gradient(180deg, var(--darker) 0%, var(--black) 100%); }

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

.code-window {
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.code-header {
    background: var(--gray-800);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--gray-700);
}

.code-dot { width: 12px; height: 12px; border-radius: 50%; }
.code-dot.red { background: #ff5f56; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #27ca40; }

.code-title {
    margin-left: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.code-block { padding: 1.5rem; overflow-x: auto; }

.code-block pre {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--gray-400);
}

.code-block .comment { color: #6a737d; }
.code-block .keyword { color: #ff79c6; }
.code-block .string { color: #f1fa8c; }
.code-block .function { color: #50fa7b; }
.code-block .variable { color: #bd93f9; }
.code-block .number { color: #bd93f9; }

.dev-features h3 { font-family: 'Orbitron', sans-serif; font-size: 1.75rem; margin-bottom: 1rem; }
.dev-features > p { color: var(--gray-400); margin-bottom: 2rem; font-size: 1.05rem; }
.dev-features-list { display: grid; gap: 1.25rem; }
.dev-feature { display: flex; align-items: flex-start; gap: 1rem; }

.dev-feature-icon {
    width: 40px; height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.dev-feature h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.dev-feature p { font-size: 0.9rem; color: var(--gray-400); }

/* FAQ Section */
.faq { background: var(--darker); }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    transition: border-color 0.3s;
}

.faq-item:hover { border-color: var(--gray-700); }

.faq-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.faq-item p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.7; }

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(212, 175, 55, 0.1) 50%, rgba(0, 212, 255, 0.05) 100%);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta h2 { font-family: 'Orbitron', sans-serif; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.cta p { color: var(--gray-400); max-width: 500px; margin: 0 auto 2.5rem; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer {
    background: var(--black);
    border-top: 1px solid var(--gray-800);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p { color: var(--gray-400); font-size: 0.95rem; margin-top: 1rem; max-width: 300px; }

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }

.footer-col a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p { color: var(--gray-600); font-size: 0.85rem; }

.social-links { display: flex; gap: 1rem; }

.social-links a {
    width: 40px; height: 40px;
    background: var(--gray-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover { background: var(--gold); color: var(--black); }

/* Scroll-reveal elements (set by JS) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .dev-content { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .steps-container { grid-template-columns: 1fr; gap: 3rem; }
    .steps-container::before { display: none; }
    .games-grid { grid-template-columns: 1fr; }
    .coming-soon-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    section { padding: 5rem 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.5rem; }
    .hero .tagline { letter-spacing: 0.2em; }
    .coming-soon-grid { grid-template-columns: 1fr; }
}

/* Accessibility: respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .particle { display: none; }
    .hero h1 { animation: none; background-position: 0 center; }
}
