:root { --bg-dark: #09090b; --bg-panel: #121214; --border: #27272a; --accent: #f97316; --accent-hover: #ea580c; --text-main: #ffffff; --text-muted: #a1a1aa; --success: #10b981; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
body.no-scroll { overflow: hidden; }
main { flex: 1; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }

/* OCHRANNÉ OBALY - 1250px max šírka a vycentrovanie */
.main-container, .main-content, .page-wrapper, .detail-wrapper, .games-wrapper,
.order-hero-inner, .order-container, .contact-grid, .footer-container, .footer-bottom, .nav-container {
    width: 100%; max-width: 1250px; margin: 0 auto; padding-left: 20px; padding-right: 20px;
}

.page-header { text-align: center; margin-bottom: 50px; padding-top: 40px;}
.page-header h1 { font-family: 'Oswald', sans-serif; font-size: clamp(32px, 5vw, 48px); text-transform: uppercase; margin-bottom: 15px; letter-spacing: -1px; color: white;}
.page-header h1 span { color: var(--accent); }
.page-header p { color: var(--text-muted); font-size: 16px; max-width: 700px; margin: 0 auto; line-height: 1.6; }
.section-header { margin-bottom: 30px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 10px;}
.section-header h2 { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; text-transform: uppercase; display: flex; align-items: center; gap: 10px; color: white; margin: 0; }
.section-header h2::before { content: ''; display: block; width: 4px; height: 20px; background: var(--accent); }

/* MENU A PÄTA */
.beta-banner { background-color: var(--accent); color: white; text-align: center; padding: 10px 20px; font-size: 13px; font-weight: 600; z-index: 9999; }
nav { background: rgba(9, 9, 11, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo-new { display: flex; align-items: center; gap: 12px; font-size: 24px; font-weight: 800; color: white; letter-spacing: -1px; }
.logo-new span { color: var(--accent); }
.logo-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%); border: 1px solid rgba(249, 115, 22, 0.3); border-radius: 10px; color: var(--accent); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: #d4d4d8; font-weight: 500; font-size: 14px; position: relative; padding-bottom: 5px; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--accent); transition: 0.3s; }
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }
.btn-nav { background: var(--accent); color: white !important; padding: 10px 24px; border-radius: 8px; font-weight: 600; border: none; font-size: 14px; }
.btn-nav:hover { background: var(--accent-hover); transform: translateY(-2px); }
.mobile-menu-toggle { display: none; background: none; border: none; color: white; cursor: pointer; padding: 5px; z-index: 1001; }
.mobile-menu-wrapper { display: contents; }

.site-footer { margin-top: 50px; background-color: var(--bg-dark); background-image: radial-gradient(ellipse at top center, rgba(249, 115, 22, 0.08) 0%, transparent 70%); border-top: 1px solid rgba(249, 115, 22, 0.4); padding: 60px 0 20px; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 8px; font-size: 26px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 20px; color: white; }
.footer-brand .footer-logo svg { width: 28px !important; height: 28px !important; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 25px; max-width: 350px; }
.footer-socials { display: flex; gap: 15px; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--bg-panel); border: 1px solid var(--border); border-radius: 8px; color: var(--text-muted); transition: 0.3s; }
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: white; transform: translateY(-3px); }
.footer-links-col { display: flex; flex-direction: column; }
.footer-links-col h4 { color: white; font-size: 14px; font-weight: 800; text-transform: uppercase; margin-bottom: 25px; }
.footer-links-col a { color: var(--text-muted); font-size: 14px; font-weight: 500; margin-bottom: 15px; width: fit-content;}
.footer-links-col a:hover { color: var(--accent); transform: translateX(5px); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); padding-top: 25px;}

@media (max-width: 992px) {
    .mobile-menu-toggle { display: block; }
    .mobile-menu-wrapper { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(9, 9, 11, 0.98); backdrop-filter: blur(15px); z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s; overflow-y: auto; }
    .mobile-menu-wrapper.active { opacity: 1; visibility: visible; }
    .nav-links { display: flex; flex-direction: column; padding: 100px 20px 40px; gap: 25px; justify-content: center; }
}
@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-brand .footer-logo, .footer-socials { justify-content: center; }
    .footer-brand p { margin: 0 auto 25px; }
    .footer-links-col { align-items: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}