/* ===== CSS Variables ===== */
:root {
    --primary: #ff6b35;
    --primary-hover: #ff8555;
    --secondary: #1a1a2e;
    --accent: #00d4ff;
    --accent-2: #ffd93d;
    --background: #0f0f1a;
    --surface: #16162a;
    --surface-2: #1e1e3a;
    --surface-3: #252545;
    --text: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;
    --border: #2a2a4a;
    --success: #4ade80;
    --warning: #fbbf24;
    --error: #f87171;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-pixel: 'Press Start 2P', monospace;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
    
    --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

/* ===== Utility Classes ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    color: var(--text-secondary);
    background: transparent;
}

.btn-ghost:hover {
    color: var(--text);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

/* ===== Disclaimer Banner ===== */
.disclaimer-banner {
    background: var(--secondary);
    color: var(--text-secondary);
    font-size: 12px;
    padding: 8px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
}

.logo-icon {
    font-size: 28px;
}

.logo-accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: var(--surface);
}

.nav-link.highlight {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

main {
    padding-top: 70px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 180px 20px 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pixel-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: 0;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-2);
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Hero Visual - Arcade Cabinet */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.arcade-cabinet {
    position: relative;
    width: 320px;
    background: linear-gradient(180deg, #2a2a4a 0%, #1a1a2e 100%);
    border-radius: 20px 20px 10px 10px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.cabinet-screen {
    background: #000;
    border-radius: var(--radius-md);
    padding: 16px;
    border: 4px solid #333;
}

.screen-content {
    background: linear-gradient(180deg, #0a0a15 0%, #1a1a2e 100%);
    border-radius: var(--radius-sm);
    padding: 20px;
    min-height: 200px;
}

.game-preview {
    text-align: center;
}

.game-title {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--accent-2);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--accent-2);
}

.game-animation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    min-height: 60px;
    align-items: center;
}

.invader {
    font-size: 28px;
    animation: float 2s ease-in-out infinite;
}

.invader-1 { animation-delay: 0s; color: #4ade80; }
.invader-2 { animation-delay: 0.3s; color: #fbbf24; }
.invader-3 { animation-delay: 0.6s; color: #f87171; }

.ship {
    font-size: 24px;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-5px) translateX(5px); }
    50% { transform: translateY(0) translateX(10px); }
    75% { transform: translateY(5px) translateX(5px); }
}

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

.game-score {
    font-family: var(--font-pixel);
    font-size: 8px;
    color: var(--primary);
    text-shadow: 0 0 5px var(--primary);
}

.cabinet-controls {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.joystick {
    width: 50px;
    height: 50px;
    background: linear-gradient(180deg, #444 0%, #222 100%);
    border-radius: 50%;
    border: 3px solid #555;
    position: relative;
}

.joystick::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 30px;
    background: linear-gradient(180deg, #666 0%, #333 100%);
    border-radius: 5px;
}

.buttons-row {
    display: flex;
    gap: 15px;
}

.arcade-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
}

.arcade-btn.red {
    background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%);
    box-shadow: 0 4px 0 #7f1d1d, 0 0 20px rgba(239, 68, 68, 0.5);
}

.arcade-btn.blue {
    background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 4px 0 #1e3a8a, 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: floatCard 4s ease-in-out infinite;
}

.card-icon {
    font-size: 18px;
}

.card-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -60px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 40px;
    right: -40px;
    animation-delay: 2s;
}

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

/* ===== Section Styles ===== */
section {
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* ===== Categories Section ===== */
.categories {
    background: var(--surface);
}

.categories-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.category-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.category-link {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.category-link:hover {
    text-decoration: underline;
}

/* ===== Featured Games Section ===== */
.featured-games {
    background: var(--background);
}

.games-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.game-difficulty {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.game-difficulty.easy {
    background: rgba(74, 222, 128, 0.15);
    color: var(--success);
}

.game-difficulty.medium {
    background: rgba(251, 191, 36, 0.15);
    color: var(--warning);
}

.game-difficulty.hard {
    background: rgba(248, 113, 113, 0.15);
    color: var(--error);
}

.game-players {
    font-size: 12px;
    color: var(--text-muted);
}

.game-card-visual {
    margin-bottom: 20px;
}

.game-preview-mini {
    height: 120px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.space-theme {
    background: linear-gradient(180deg, #0a0a20 0%, #1a1a40 100%);
}

.platform-theme {
    background: linear-gradient(180deg, #0a200a 0%, #1a401a 100%);
}

.puzzle-theme {
    background: linear-gradient(180deg, #200a20 0%, #401a40 100%);
}

.game-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.game-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ===== How It Works Section ===== */
.how-it-works {
    background: linear-gradient(180deg, var(--background) 0%, var(--surface) 100%);
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Achievements Section ===== */
.achievements {
    background: var(--surface);
    text-align: center;
}

.achievements-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.achievement-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.achievement-card.locked {
    opacity: 0.7;
}

.achievement-card.locked::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
}

.achievement-card:hover {
    transform: translateY(-3px);
}

.achievement-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.achievement-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.achievement-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.achievement-reward {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.achievement-status {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== Blog Section ===== */
.blog {
    background: var(--background);
    text-align: center;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 160px;
}

.blog-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.retro-visual {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8555 100%);
}

.tips-visual {
    background: linear-gradient(135deg, var(--accent) 0%, #00a8cc 100%);
}

.update-visual {
    background: linear-gradient(135deg, var(--accent-2) 0%, #ffa500 100%);
}

.blog-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 700;
    color: var(--text);
}

.blog-content {
    padding: 20px;
}

.blog-content time {
    font-size: 12px;
    color: var(--text-muted);
}

.blog-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 8px 0 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.read-time {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 16px;
}

/* ===== Reviews Section ===== */
.reviews {
    background: var(--surface);
    text-align: center;
}

.reviews-grid {
    max-width: 1000px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: left;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: var(--surface-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info strong {
    display: block;
    font-size: 14px;
}

.review-stars {
    color: var(--accent-2);
    font-size: 12px;
}

.review-header time {
    font-size: 12px;
    color: var(--text-muted);
}

.review-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: var(--surface);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--surface-2);
}

.faq-icon {
    font-size: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8555 100%);
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.pixel-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,0,0,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icons {
    font-size: 32px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.cta .btn-primary:hover {
    transform: translateY(-2px);
}

.cta .btn-ghost {
    color: white;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-column a:hover {
    color: var(--text);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
}

.footer-disclaimer {
    background: var(--surface);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom > p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 40px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        margin-top: 0;
    }
    
    .disclaimer-banner {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .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);
    }
    
    .hero {
        padding: 120px 20px 60px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .arcade-cabinet {
        width: 260px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .stat {
        width: calc(50% - 12px);
    }
    
    .arcade-cabinet {
        width: 100%;
        max-width: 280px;
    }
}
