:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --border-color: #2a2a2a;
    --accent-green: #7CFC00;
    --accent-green-dark: #5CBD00;
    --accent-orange: #FF6B00;
    --accent-gold: #FFD700;
    --text-primary: #FFFFFF;
    --text-secondary: #999999;
    --text-muted: #555555;
    --success: #4CAF50;
    --error: #F44336;
    --warning: #FFC107;
    --font-pixel: 'Press Start 2P', monospace;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
    --shadow: 0 12px 40px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 40px rgba(124,252,0,0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* Animated Grid Background */
.animated-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.pixel-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(124,252,0,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(255,107,0,0.04) 0%, transparent 50%);
}

.particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--accent-green);
    border-radius: var(--radius-full);
    opacity: 0.12;
    animation: particleFloat 25s infinite linear;
}
@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.12; transform: scale(1); }
    90% { opacity: 0.12; }
    100% { transform: translateY(-100px) scale(0); opacity: 0; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
    padding: 0 20px;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}
.logo:hover { transform: scale(1.03); }
.logo-img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.logo-text {
    font-family: var(--font-pixel);
    font-size: 13px;
    color: var(--accent-green);
    text-shadow: 0 0 20px var(--accent-green);
}

.nav-links { display: flex; gap: 4px; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
    transition: var(--transition);
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--accent-green); background: rgba(124,252,0,0.1); }
.nav-icon { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.support-link:hover { color: var(--accent-orange); }

.mobile-menu-btn {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    padding: 10px;
    cursor: pointer;
}
.mobile-menu-btn svg { width: 22px; height: 22px; fill: currentColor; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    padding: 16px;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    padding: 16px;
    color: var(--text-primary);
    text-decoration: none;
    background: var(--bg-card);
    border-radius: 12px;
    font-weight: 500;
}

/* Main */
.main-content { padding-top: 70px; min-height: calc(100vh - 200px); }
.section { display: none; animation: fadeIn 0.5s ease; }
.section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Hero */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    text-align: center;
}
.hero-logo { margin-bottom: 24px; }
.hero-logo-img {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}
.hero-title { margin-bottom: 14px; }
.title-line {
    display: block;
    font-family: var(--font-pixel);
    font-size: clamp(24px, 6vw, 50px);
    line-height: 1.2;
    color: var(--text-primary);
}
.title-line.accent {
    color: var(--accent-green);
    text-shadow: 0 0 40px var(--accent-green);
}
.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 36px;
    min-width: 160px;
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}
.stat-number {
    font-family: var(--font-pixel);
    font-size: 28px;
    color: var(--accent-green);
    text-shadow: 0 0 20px var(--accent-green);
    margin-bottom: 8px;
}
.stat-number::after {
    content: '+';
    font-size: 20px;
    color: var(--accent-gold);
    margin-left: 4px;
    animation: plusPulse 2s infinite;
}
@keyframes plusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.stat-number-year {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}
.stat-number-year span:first-child {
    font-family: var(--font-pixel);
    font-size: 28px;
    color: var(--accent-green);
    text-shadow: 0 0 20px var(--accent-green);
}
.stat-number-year span:first-child::after {
    content: none;
}
.year-text {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--accent-gold);
    animation: plusPulse 2s infinite;
}
.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}
.stat-sublabel {
    font-size: 11px;
    color: var(--accent-green);
    margin-top: 6px;
    font-weight: 600;
}
.stat-divider {
    width: 1px;
    background: var(--border-color);
    align-self: stretch;
}

/* Features */
.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
}
.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}
.feature:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.feature-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; fill: #000; }

/* Scroll Hint */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: bounce 2.5s infinite;
}
.scroll-hint span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.scroll-arrow {
    width: 48px; height: 48px;
    background: var(--bg-card);
    border: 2px solid var(--accent-green);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.scroll-arrow svg { width: 28px; height: 28px; fill: var(--accent-green); }
.scroll-hint:hover .scroll-arrow { background: var(--accent-green); }
.scroll-hint:hover .scroll-arrow svg { fill: #000; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Section Title */
.section-title {
    font-family: var(--font-pixel);
    font-size: clamp(13px, 2.5vw, 18px);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

/* Games */
.games-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.loading-placeholder {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
}
.loading-spinner {
    width: 48px; height: 48px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-green);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.game-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-orange), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition);
}
.game-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-8px);
    box-shadow: var(--shadow), var(--shadow-glow);
}
.game-card:hover::before { transform: scaleX(1); }

.game-icon-wrapper {
    width: 90px; height: 90px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: var(--transition);
}
.game-card:hover .game-icon-wrapper { transform: scale(1.1) rotate(3deg); }
.game-img { width: 100%; height: 100%; object-fit: cover; }

.game-name {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-align: center;
}
.game-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
}

/* Animated Price */
.game-price {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
}
.game-price::before {
    content: '% % % % % % % % % %';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(124,252,0,0.05);
    letter-spacing: 8px;
    animation: discountScroll 10s linear infinite;
}
@keyframes discountScroll {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}
.price-tag {
    position: relative;
    font-family: var(--font-pixel);
    font-size: 24px;
    color: var(--accent-green);
    text-shadow: 0 0 20px var(--accent-green);
    animation: priceGlow 2s ease-in-out infinite;
}
@keyframes priceGlow {
    0%, 100% { filter: brightness(1); transform: scale(1); }
    50% { filter: brightness(1.2); transform: scale(1.05); }
}

.game-btn { width: 100%; }

/* Buttons */
.pixel-btn {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    color: #000;
    box-shadow: 0 4px 20px rgba(124,252,0,0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124,252,0,0.35);
}
.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}
@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(124,252,0,0.25); }
    50% { box-shadow: 0 4px 30px rgba(124,252,0,0.5), 0 0 60px rgba(124,252,0,0.3); }
}
.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}
.btn-secondary:hover { border-color: var(--accent-orange); color: var(--accent-orange); }
.btn-small { font-size: 12px; padding: 10px 16px; }

/* How It Works */
.how-it-works {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.step {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
}
.step:hover { border-color: var(--accent-green); transform: translateY(-6px); }
.step-number {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    color: #000;
    font-family: var(--font-pixel);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}
.step-icon {
    width: 60px; height: 60px;
    margin: 14px auto;
    background: var(--bg-secondary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-icon svg { width: 28px; height: 28px; fill: var(--accent-green); }
.step h3 {
    font-family: var(--font-pixel);
    font-size: 11px;
    color: var(--accent-green);
    margin-bottom: 8px;
}
.step p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Orders */
.orders-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}
.orders-auth { display: flex; justify-content: center; padding: 40px 0; }
.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 44px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}
.auth-card:hover { border-color: var(--accent-green); }
.auth-icon {
    width: 72px; height: 72px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-icon svg { width: 36px; height: 36px; fill: #000; }
.auth-card h3 { font-family: var(--font-pixel); font-size: 13px; margin-bottom: 8px; }
.auth-card p { color: var(--text-secondary); margin-bottom: 22px; font-size: 14px; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }

.pixel-input {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    transition: var(--transition);
}
.pixel-input::placeholder { color: var(--text-muted); }
.pixel-input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(124,252,0,0.1);
}

.orders-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px 18px;
    background: var(--bg-card);
    border-radius: var(--radius);
}
.orders-email { color: var(--accent-green); font-weight: 500; }
.orders-cards { display: flex; flex-direction: column; gap: 16px; }

/* Order Card */
.order-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.order-card:hover { border-color: var(--accent-green); }

.order-id-badge {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,215,0,0.06);
    border-bottom: 1px solid var(--border-color);
}
.order-id-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.order-id-value {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-gold);
    flex: 1;
    min-width: 0;
    word-break: break-all;
}
.copy-btn-small {
    flex-shrink: 0;
    background: rgba(255,215,0,0.12);
    border: 1px solid var(--accent-gold);
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
    padding: 5px 10px;
    color: var(--accent-gold);
    transition: var(--transition);
}
.copy-btn-small:hover { background: var(--accent-gold); color: #000; }

.order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    background: var(--bg-secondary);
    flex-wrap: wrap;
    gap: 10px;
}
.order-game { display: flex; align-items: center; gap: 10px; }
.order-game-img {
    width: 40px; height: 40px;
    border-radius: 10px;
    object-fit: cover;
}
.order-game-name { font-family: var(--font-pixel); font-size: 11px; }
.order-timer {
    padding: 6px 12px;
    background: rgba(124,252,0,0.1);
    border: 1px solid var(--accent-green);
    border-radius: 8px;
    font-family: var(--font-pixel);
    font-size: 11px;
    color: var(--accent-green);
}
.order-timer.expiring { border-color: var(--warning); color: var(--warning); background: rgba(255,193,7,0.1); }

.order-body { padding: 14px; }
.account-data {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 14px;
}
.account-field {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}
.account-field:last-child { border-bottom: none; }
.field-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.field-value-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.field-value {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--accent-green);
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}
.field-value.instruction {
    display: block;
    color: var(--text-secondary);
    white-space: pre-line;
    font-weight: 400;
    line-height: 1.7;
    font-size: 13px;
}
.copy-btn {
    flex-shrink: 0;
    background: var(--accent-green);
    border: none;
    border-radius: 8px;
    color: #000;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-main);
    transition: var(--transition);
}
.copy-btn:hover { transform: scale(1.05); }

.order-footer {
    padding: 14px;
    background: var(--bg-secondary);
    text-align: center;
}
.order-support {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}
.order-support:hover { color: var(--accent-orange); }

.no-orders {
    text-align: center;
    padding: 60px 30px;
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
}
.no-orders h3 { font-family: var(--font-pixel); font-size: 13px; margin-bottom: 8px; color: var(--text-secondary); }
.no-orders p { color: var(--text-muted); margin-bottom: 20px; }

/* Results */
.result-container { max-width: 550px; margin: 0 auto; padding: 70px 20px; }
.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 44px;
    text-align: center;
}
.result-card.success { border-color: var(--success); }
.result-card.fail { border-color: var(--error); }
.result-icon {
    width: 72px; height: 72px;
    margin: 0 auto 22px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}
.success-icon { background: rgba(76,175,80,0.15); }
.success-icon svg { width: 42px; height: 42px; fill: var(--success); }
.fail-icon { background: rgba(244,67,54,0.15); }
.fail-icon svg { width: 42px; height: 42px; fill: var(--error); }
.result-card h2 { font-family: var(--font-pixel); font-size: 16px; margin-bottom: 10px; }
.result-card.success h2 { color: var(--success); }
.result-card.fail h2 { color: var(--error); }
.result-card p { color: var(--text-secondary); margin-bottom: 22px; }
.result-card .pixel-btn { margin: 8px; }
.order-details { margin-top: 28px; text-align: left; }

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal.active { display: flex; }
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
}
.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    max-width: 440px;
    width: 100%;
    animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95) translateY(-20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}
.modal-close:hover { color: var(--error); }
.modal-header { padding: 28px 28px 18px; text-align: center; }
.modal-game-img {
    width: 70px; height: 70px;
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.modal-header h2 { font-family: var(--font-pixel); font-size: 14px; }
.modal-body { padding: 0 28px 22px; }

/* Modal Price with pattern */
.modal-price {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
}
.price-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(124,252,0,0.02) 10px,
        rgba(124,252,0,0.02) 20px
    );
    animation: patternMove 20s linear infinite;
}
@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}
.price-label { color: var(--text-secondary); font-weight: 500; position: relative; z-index: 1; }
.price-value {
    font-family: var(--font-pixel);
    font-size: 20px;
    color: var(--accent-green);
    position: relative;
    z-index: 1;
}
.animated-price {
    animation: priceGlow 2s ease-in-out infinite;
}

.modal-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(124,252,0,0.08);
    border-radius: var(--radius);
    color: var(--accent-green);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
}
.modal-duration svg { width: 18px; height: 18px; fill: var(--accent-green); }
.modal-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.modal-form .pixel-input { width: 100%; }
.input-hint { font-size: 12px; color: var(--text-muted); margin-top: 8px; }
.modal-footer { display: flex; gap: 12px; padding: 0 28px 28px; }
.modal-footer .pixel-btn { flex: 1; }

/* Notifications */
.notifications { position: fixed; top: 86px; right: 20px; z-index: 3000; display: flex; flex-direction: column; gap: 8px; }
.notification {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    animation: notifIn 0.3s ease;
    box-shadow: var(--shadow);
}
@keyframes notifIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }
.notification.success { border-color: var(--success); }
.notification.error { border-color: var(--error); }
.notification-icon { font-size: 18px; }
.notification-text { flex: 1; font-size: 13px; font-weight: 500; }

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 40px 20px;
    margin-top: 70px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}
.footer-content { max-width: 700px; margin: 0 auto; }
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-pixel);
    font-size: 13px;
    color: var(--accent-green);
    margin-bottom: 20px;
}
.footer-logo-img { width: 38px; height: 38px; border-radius: 10px; }
.footer-social { margin-bottom: 20px; }
.footer-telegram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(124,252,0,0.1);
    border: 1px solid var(--accent-green);
    border-radius: 10px;
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}
.footer-telegram:hover { background: var(--accent-green); color: #000; }
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 20px;
    margin-bottom: 16px;
}
.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
}
.footer-legal a:hover { color: var(--text-primary); }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 40px 16px 30px; }
    .hero-logo-img { width: 120px; height: 120px; }
    .hero-subtitle { font-size: 15px; }
    .stats-section { gap: 12px; }
    .stat-card { padding: 18px 24px; min-width: 140px; }
    .stat-number { font-size: 22px; }
    .stat-number::after { font-size: 16px; }
    .stat-number-year span:first-child { font-size: 22px; }
    .year-text { font-size: 12px; }
    .stat-divider { display: none; }
    .hero-features { flex-direction: column; align-items: center; }
    .feature { width: 100%; max-width: 320px; justify-content: center; }
    .games-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .modal-footer { flex-direction: column; }
    .notifications { left: 16px; right: 16px; }
    .notification { min-width: auto; }
    .field-value-row { flex-direction: column; align-items: stretch; gap: 10px; }
    .copy-btn { width: 100%; text-align: center; }
    .footer-legal { gap: 4px 14px; }
}

@media (max-width: 480px) {
    .hero-logo-img { width: 100px; height: 100px; }
    .stat-card { padding: 14px 18px; min-width: 120px; }
    .stat-number { font-size: 18px; }
    .stat-number::after { font-size: 14px; }
    .stat-number-year span:first-child { font-size: 18px; }
    .stat-label { font-size: 11px; }
    .steps-grid { grid-template-columns: 1fr; }
    .result-card, .auth-card { padding: 30px 20px; }
    .order-game-img { width: 34px; height: 34px; }
    .order-game-name { font-size: 10px; }
    .game-card { padding: 22px; }
    .game-icon-wrapper { width: 75px; height: 75px; }
    .game-name { font-size: 12px; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-green); }
::selection { background: var(--accent-green); color: #000; }
