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

:root {
    --accent:  #46aed0;
    --bg:      #0a0a18;
    --bg2:     #0d0d20;
    --bg3:     #111128;
    --text:    #d8d8ec;
    --muted:   #9a9ab5;
    --border:  #1e1e3a;
    --nav-h:   64px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }

/* ── Top Navigation ──────────────────────────────────────────────────────── */
.topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(8, 8, 22, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.topnav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.topnav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.topnav-brand:hover { text-decoration: none; }

.topnav-brand img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
}

.topnav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.steam-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: .4px;
}

.steam-nav-btn:hover {
    background: #3498b8;
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.lang-switcher span { color: var(--border); }

.lang-switcher a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.lang-switcher a:hover,
.lang-switcher a.active { color: var(--accent); }

/* ── Hero Banner ─────────────────────────────────────────────────────────── */
.hero-banner {
    margin-top: var(--nav-h);
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.72));
}

/* Steam button — top left */
.hero-steam {
    position: absolute;
    top: 28px;
    left: 30px;
    z-index: 10;
}

.hero-steam img {
    height: 54px;
    width: auto;
    transition: transform 0.25s;
}

.hero-steam:hover img { transform: scale(1.06); }

/* Social buttons — bottom right */
.hero-socials {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.45);
    color: #fff !important;
    font-size: 16px;
    transition: all 0.25s;
    text-decoration: none;
}

.hero-socials a:hover { transform: translateY(-3px); text-decoration: none; }
.hero-socials a.youtube:hover   { background: rgba(255,0,0,0.3);       border-color: #ff0000; }
.hero-socials a.tiktok:hover    { background: rgba(0,0,0,0.5);          border-color: #69c9d0; }
.hero-socials a.instagram:hover { background: rgba(225,48,108,0.25);    border-color: #e1306c; }
.hero-socials a.twitter:hover   { background: rgba(0,0,0,0.5);          border-color: #fff; }
.hero-socials a.reddit:hover    { background: rgba(255,69,0,0.25);      border-color: #ff4500; }
.hero-socials a.facebook:hover  { background: rgba(59,89,152,0.25);     border-color: #3b5998; }

/* Game logo — bottom left */
.hero-logo {
    position: absolute;
    bottom: 28px;
    left: 30px;
    z-index: 10;
    max-width: 300px;
    width: 45%;
}

.hero-logo img { width: 100%; height: auto; }

/* ── Mobile buttons strip ────────────────────────────────────────────────── */
.mobile-buttons {
    display: none;
    background: #111120;
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.mobile-steam { display: inline-block; margin-bottom: 14px; }
.mobile-steam img { height: 48px; width: auto; }

.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.07);
    color: #fff !important;
    font-size: 17px;
    transition: all 0.25s;
    text-decoration: none;
}

.mobile-socials a.youtube:hover   { background: rgba(255,0,0,0.3);       border-color: #ff0000; }
.mobile-socials a.tiktok:hover    { background: rgba(0,0,0,0.5);          border-color: #69c9d0; }
.mobile-socials a.instagram:hover { background: rgba(225,48,108,0.3);     border-color: #e1306c; }
.mobile-socials a.twitter:hover   { background: rgba(0,0,0,0.5);          border-color: #fff; }
.mobile-socials a.reddit:hover    { background: rgba(255,69,0,0.3);       border-color: #ff4500; }
.mobile-socials a.facebook:hover  { background: rgba(59,89,152,0.3);      border-color: #3b5998; }

/* ── Main content ────────────────────────────────────────────────────────── */
.main-content { max-width: 1100px; margin: 0 auto; padding: 0 32px 80px; }

.content-section { padding: 70px 0 0; }

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
}

.section-title.left-align { text-align: left; }

.section-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 820px;
    margin: 0 auto;
}

.section-text b { color: var(--text); }

/* ── About section ───────────────────────────────────────────────────────── */
.about-section .section-text { text-align: left; }

/* ── Features two-column ─────────────────────────────────────────────────── */
.two-col {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.two-col-text { flex: 1; }

.two-col-text .section-text { margin: 0; max-width: 100%; }

.two-col-image {
    flex: 0 0 280px;
    text-align: center;
}

.two-col-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.5);
}

/* ── Screenshots slider ──────────────────────────────────────────────────── */
.screenshots-section .section-title { margin-bottom: 28px; }

.slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    max-width: 860px;
    margin: 0 auto;
}

.slider-container {
    display: flex;
    transition: transform 0.45s ease;
}

.slider-container img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    cursor: pointer;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover { background: var(--accent); }
.slide-btn.prev  { left: 14px; }
.slide-btn.next  { right: 14px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #333358;
    cursor: pointer;
    transition: background 0.25s;
}

.dot.active { background: var(--accent); }

/* ── Press Kit ───────────────────────────────────────────────────────────── */
.presskit-section {
    background: var(--bg3);
    border-left: 4px solid var(--accent);
    padding: 48px 44px;
    border-radius: 0 8px 8px 0;
    text-align: center;
    margin-top: 70px;
}

.presskit-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.presskit-section p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 26px;
}

.presskit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 36px;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: .5px;
    text-decoration: none;
    transition: all 0.25s;
}

.presskit-btn:hover {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
    background: #060612;
    border-top: 1px solid var(--border);
    padding: 48px 24px 40px;
    text-align: center;
}

.footer-inner { max-width: 700px; margin: 0 auto; }

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}

.footer-socials a {
    color: var(--muted);
    font-size: 18px;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-socials a:hover { color: #fff; }

.footer-copy {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 6px;
}

.footer-by {
    color: #555570;
    font-size: 12px;
}

.footer-by a { color: var(--accent); text-decoration: none; }
.footer-by a:hover { text-decoration: underline; }

/* ── Lightbox ────────────────────────────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    justify-content: center;
    align-items: center;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 92%;
    max-height: 90vh;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    user-select: none;
}

.lightbox-close:hover { color: var(--accent); }

/* ── Cookie banner ───────────────────────────────────────────────────────── */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8000;
    background: #111128;
    border-top: 1px solid var(--border);
    padding: 14px 20px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}

.cookie-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-inner p {
    flex: 1;
    font-size: 13px;
    color: var(--muted);
    min-width: 220px;
}

.cookie-inner p a { color: var(--accent); }

.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }

.cookie-btns button {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    background: var(--accent);
    color: #fff;
    transition: background 0.2s;
}

.cookie-btns button:hover { background: #3498b8; }

.cookie-btns button.decline {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
}

.cookie-btns button.decline:hover { background: rgba(255,255,255,0.05); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-steam,
    .hero-socials { display: none !important; }
    .mobile-buttons { display: block; }

    .hero-banner { height: 320px; }
    .hero-logo   { max-width: 220px; width: 55%; left: 18px; bottom: 18px; }
}

@media (max-width: 768px) {
    .main-content { padding: 0 20px 60px; }
    .section-title { font-size: 24px; }

    .two-col { flex-direction: column; gap: 36px; }
    .two-col-image { flex: none; width: 100%; max-width: 320px; margin: 0 auto; }

    .presskit-section { padding: 36px 24px; }

    .topnav-brand span { display: none; }
    .steam-nav-btn span { display: none; }
}

@media (max-width: 480px) {
    .hero-banner { height: 240px; }
    .hero-logo { max-width: 180px; }
    .slide-btn { width: 38px; height: 38px; font-size: 14px; }
}
