/* =========================================================
   bestcheats — modern black & grey theme
   ========================================================= */

:root {
    /* Core palette — black & grey focused */
    --bg:            #0a0a0b;
    --bg-2:          #0f1011;
    --surface:       #141517;
    --surface-2:     #1a1c1f;
    --surface-3:     #212327;
    --border:        #26282c;
    --border-soft:   #1d1f23;

    --text:          #f3f4f6;
    --text-muted:    #9ca3af;
    --text-dim:      #6b7280;

    /* Subtle accent — desaturated cool grey-white with a hint of life */
    --accent:        #e5e7eb;
    --accent-glow:   rgba(160, 170, 185, 0.20);
    --accent-line:   #3a3d44;

    --radius:        16px;
    --radius-sm:     11px;
    --radius-lg:     24px;

    --shadow:        0 10px 40px -12px rgba(0, 0, 0, 0.7);
    --shadow-lg:     0 30px 70px -24px rgba(0, 0, 0, 0.85);

    --container:     1180px;
    --ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.accent {
    color: #fff;
    background: linear-gradient(120deg, #ffffff 0%, #aab0bd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- Background decoration ---------- */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
    pointer-events: none;
}

.glow-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}
.glow-1 {
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(90,100,120,0.5), transparent 70%);
    top: -180px; left: -120px;
}
.glow-2 {
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(70,75,90,0.45), transparent 70%);
    top: 30%; right: -160px;
}
.glow-3 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(50,55,68,0.4), transparent 70%);
    bottom: -160px; left: 30%;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease),
                border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(180deg, #f6f7f9 0%, #d7dae0 100%);
    color: #0a0a0b;
    box-shadow: 0 6px 22px -8px rgba(220, 225, 235, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -10px rgba(220, 225, 235, 0.5);
}
.btn-secondary {
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border-color: var(--border);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.07);
    border-color: #3a3d44;
    transform: translateY(-2px);
}
.btn-sm { padding: 10px 18px; font-size: 0.85rem; width: 100%; }
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }

/* ---------- Header ---------- */
#site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10,10,11,0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s, padding 0.3s;
}
#site-header.scrolled {
    border-bottom-color: var(--border-soft);
    background: rgba(10,10,11,0.85);
    padding: 11px 0;
}
#site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}
.logo i {
    display: grid;
    place-items: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: #fff;
    font-size: 1rem;
}
nav ul { display: flex; gap: 6px; }
nav ul li a {
    display: block;
    padding: 8px 14px;
    border-radius: 9px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.93rem;
    transition: color 0.2s, background 0.2s;
}
nav ul li a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
nav ul li a.active { color: var(--text); background: rgba(255,255,255,0.06); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.mobile-menu-btn span {
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections shared ---------- */
section { padding: 100px 0; position: relative; }

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    text-align: center;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 620px;
    margin: 16px auto 56px;
    font-size: 1.05rem;
}
.section-subtitle.align-left { text-align: left; margin-left: 0; }

/* ---------- Hero ---------- */
.hero {
    padding-top: 70px;
    padding-bottom: 70px;
}
.hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px;
    border-radius: 100px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    margin-bottom: 26px;
}
.tag-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px 1px rgba(255,255,255,0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}
.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    margin-bottom: 22px;
}
.hero-content > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 540px;
    margin-bottom: 34px;
}
.cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.compatibility {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.92rem;
    font-weight: 500;
}
.compatibility i { color: #cfd3da; }

.hero-video-frame {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 8px;
    background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.hero-video-frame video {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 8px);
    background: var(--surface);
}
.hero-video-badge {
    position: absolute;
    top: 20px; left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(10,10,11,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}
.hero-video-badge i { font-size: 0.5rem; color: #ff5a5a; animation: pulse 1.6s infinite; }

/* ---------- Features ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feature-card {
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 30px;
    transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--mx, 50%) 0%, rgba(255,255,255,0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: #34373d;
    box-shadow: var(--shadow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    display: grid;
    place-items: center;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--surface-3);
    border: 1px solid var(--border);
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 22px;
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); }

/* ---------- Catalog ---------- */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.game-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.game-card:hover {
    transform: translateY(-6px);
    border-color: #34373d;
    box-shadow: var(--shadow);
}
.game-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.game-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
    filter: saturate(0.9) brightness(0.92);
}
.game-card:hover .game-image img { transform: scale(1.06); filter: saturate(1) brightness(1); }
.game-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,21,23,0.55), transparent 55%);
}
.game-tag {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    padding: 5px 11px;
    border-radius: 7px;
    background: rgba(10,10,11,0.78);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text);
}
.game-tag.accent-tag {
    background: #fff;
    color: #0a0a0b;
    border-color: #fff;
}
.game-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.game-info h3 { font-size: 1.2rem; margin-bottom: 10px; }
.game-info > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 18px;
    flex: 1;
}
.game-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 500;
}
.game-meta i { color: var(--text-muted); margin-right: 4px; }

.price-tabs {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-2);
}
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 14px;
    font-size: 0.88rem;
    background: var(--surface);
    transition: background 0.2s;
}
.price-row + .price-row { border-top: 1px solid var(--border-soft); }
.price-row:hover { background: var(--surface-2); }
.price-row span { color: var(--text-muted); font-weight: 500; }
.price-row span em {
    font-style: normal;
    color: var(--text-dim);
    font-size: 0.78rem;
    font-weight: 500;
}
.price-row strong {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text);
    font-weight: 600;
}

.more-games {
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    background: var(--bg-2);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 30px;
    transition: border-color 0.35s, background 0.35s;
}
.more-games:hover { border-color: #44474e; background: var(--surface); }
.more-games-content i { font-size: 2.2rem; color: var(--text-dim); margin-bottom: 14px; }
.more-games-content h3 { font-size: 1.3rem; margin-bottom: 8px; }
.more-games-content p { color: var(--text-muted); margin-bottom: 20px; }

/* ---------- How to install ---------- */
.how-to-install .container {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
}
.install-content .section-title { text-align: left; }
.steps { display: flex; flex-direction: column; gap: 18px; margin: 36px 0; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-number {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}
.step-content h3 { font-size: 1.1rem; margin-bottom: 4px; }
.step-content p { color: var(--text-muted); font-size: 0.95rem; }
.install-image img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: var(--surface);
}

/* ---------- Testimonials ---------- */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial {
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: transform 0.35s var(--ease), border-color 0.35s;
}
.testimonial:hover { transform: translateY(-5px); border-color: #34373d; }
.testimonial-content { position: relative; }
.quote-icon { color: #2c2f35; font-size: 1.6rem; margin-bottom: 12px; display: block; }
.testimonial-content p { color: var(--text); font-size: 0.98rem; }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
}
.author-avatar {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--surface-3);
    border: 1px solid var(--border);
    color: var(--text-muted);
}
.author-info h4 { font-size: 0.98rem; }
.author-info p { color: var(--text-dim); font-size: 0.82rem; }
.rating { margin-left: auto; color: #d6b85a; font-size: 0.9rem; letter-spacing: 1px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.active { border-color: #3a3d44; }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    cursor: pointer;
}
.faq-question h3 { font-size: 1.05rem; font-weight: 600; }
.faq-question i { color: var(--text-dim); transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--text); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}
.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.96rem;
}

/* ---------- CTA ---------- */
.cta { padding: 60px 0 110px; }
.cta-content {
    position: relative;
    text-align: center;
    padding: 64px 40px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(600px circle at 50% 0%, rgba(255,255,255,0.06), transparent 70%),
        linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--border);
    overflow: hidden;
}
.cta-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%);
}
.cta-content > * { position: relative; }
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-content p { color: var(--text-muted); max-width: 520px; margin: 0 auto 30px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
footer {
    border-top: 1px solid var(--border-soft);
    background: var(--bg-2);
    padding: 70px 0 30px;
}
.footer-middle {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-top .logo { margin-bottom: 16px; }
.footer-blurb { color: var(--text-muted); font-size: 0.93rem; max-width: 300px; }
.footer-discord {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
}
.footer-discord i { color: #8b93f0; font-size: 1.05rem; }
.footer-discord:hover {
    color: var(--text);
    border-color: #3a3d44;
    background: var(--surface-3);
    transform: translateY(-2px);
}
.footer-nav h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 11px; }
.footer-nav ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--text); }
.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border-soft);
    text-align: center;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.88rem; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    padding: 26px 0 0;
}
.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-dim);
}
.breadcrumbs ul li { display: flex; align-items: center; gap: 10px; }
.breadcrumbs ul li:not(:last-child)::after {
    content: "/";
    color: var(--border);
}
.breadcrumbs a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--text); }

/* ---------- Terms / content page ---------- */
.terms-content { padding: 40px 0 100px; }
.content-card {
    max-width: 860px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 56px);
    box-shadow: var(--shadow);
}
.content-card > h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}
.content-card > h1 + .terms-section { margin-top: 26px; }
.terms-section { margin-top: 34px; }
.terms-section h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    padding-left: 14px;
    border-left: 2px solid var(--accent-line);
}
.terms-section p { color: var(--text-muted); margin-bottom: 12px; }
.terms-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-left: 4px;
}
.terms-section ul li {
    position: relative;
    padding-left: 22px;
    color: var(--text-muted);
}
.terms-section ul li::before {
    content: "";
    position: absolute;
    left: 2px; top: 11px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--text-dim);
}
.terms-section a {
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.2s, color 0.2s;
}
.terms-section a:hover { border-color: var(--text); }

/* ---------- Status page ---------- */
.status-page { padding: 40px 0 100px; }
.status-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 920px;
    margin: 0 auto 28px;
    padding: 30px 34px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(600px circle at 0% 0%, rgba(70,170,110,0.10), transparent 60%),
        linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.status-pulse {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: rgba(63,185,113,0.10);
    border: 1px solid rgba(63,185,113,0.30);
}
.status-pulse span {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #3fb971;
    box-shadow: 0 0 0 0 rgba(63,185,113,0.6);
    animation: status-ping 2s infinite;
}
@keyframes status-ping {
    0%   { box-shadow: 0 0 0 0 rgba(63,185,113,0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(63,185,113,0); }
    100% { box-shadow: 0 0 0 0 rgba(63,185,113,0); }
}
.status-banner-text { flex: 1; min-width: 200px; }
.status-banner-text h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 6px; }
.status-banner-text p { color: var(--text-muted); }
.status-banner-text strong { color: #6fd79b; font-weight: 600; }
.status-uptime { text-align: right; }
.status-uptime-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}
.status-uptime-label { color: var(--text-dim); font-size: 0.82rem; }

.status-list {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.status-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.3s;
}
.status-row:hover { border-color: #34373d; transform: translateY(-2px); }
.status-game { display: flex; align-items: center; gap: 14px; }
.status-game h3 { font-size: 1.05rem; }
.status-game p { color: var(--text-dim); font-size: 0.85rem; }
.status-dot {
    flex-shrink: 0;
    width: 11px; height: 11px;
    border-radius: 50%;
    display: inline-block;
}
.status-dot.ok   { background: #3fb971; box-shadow: 0 0 8px 1px rgba(63,185,113,0.5); }
.status-dot.warn { background: #d6b85a; box-shadow: 0 0 8px 1px rgba(214,184,90,0.4); }
.status-dot.down { background: #d65a5a; box-shadow: 0 0 8px 1px rgba(214,90,90,0.4); }
.status-state {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}
.status-state.ok {
    background: rgba(63,185,113,0.10);
    border: 1px solid rgba(63,185,113,0.30);
    color: #6fd79b;
}
.status-since {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
    min-width: 44px;
    text-align: right;
}
.status-legend {
    max-width: 920px;
    margin: 26px auto 0;
    color: var(--text-dim);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

@media (max-width: 560px) {
    .status-row { grid-template-columns: 1fr auto; }
    .status-since { grid-column: 2; text-align: right; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .features-grid, .catalog-grid, .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
    .hero .container, .how-to-install .container { grid-template-columns: 1fr; gap: 44px; }
    .hero-content > p { max-width: none; }
    .footer-middle { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(300px, 84vw);
        background: var(--bg-2);
        border-left: 1px solid var(--border);
        padding: 90px 24px 24px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 90;
    }
    nav.open { transform: translateX(0); }
    nav ul { flex-direction: column; gap: 4px; }
    nav ul li a { padding: 12px 14px; font-size: 1rem; }
    .mobile-menu-btn { display: flex; z-index: 95; }
    .desktop-only { display: none; }
    section { padding: 72px 0; }
    .features-grid, .catalog-grid, .testimonials-slider { grid-template-columns: 1fr; }
    .footer-middle { grid-template-columns: 1fr; gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
