@charset "UTF-8";
:root {
    --color-primary: #FFFFFF;
    --color-secondary: #A1A1AA;
    --color-accent: #F4F4F5;
    --bg-base: #050505;
    --bg-surface: #0C0C0D;
    --bg-surface-elevated: #141416;
    --bg-surface-card: #111113;
    --bg-surface-glass: rgba(18, 18, 20, 0.75);
    --bg-surface-overlay: rgba(5, 5, 5, 0.85);
    --text-primary: #FAFAFA;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
    --text-accent: #FFFFFF;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.16);
    --border-strong: rgba(255, 255, 255, 0.32);
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.novaplay-theme {
    margin: 0;
    padding: 0;
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: -0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.novaplay-heading {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.text-muted {
    color: var(--text-secondary) !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* ===== header ===== */
.site-header-monolith {
    background-color: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%
}

.site-header-monolith .site-header-monolith__container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
}

.site-header-monolith .site-header-monolith__brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center
}

.site-header-monolith .site-header-monolith__logo-img {
    max-width: 44px;
    max-height: 44px;
    height: auto;
    object-fit: contain
}

.site-header-monolith .site-header-monolith__brand-title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #FAFAFA;
    letter-spacing: -0.03em;
    line-height: 1.2
}

.site-header-monolith .site-header-monolith__toggler {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background-color: #0C0C0D;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    box-shadow: none
}

.site-header-monolith .site-header-monolith__toggler:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.32);
    outline: none
}

.site-header-monolith .site-header-monolith__burger-icon {
    width: 24px;
    height: 24px;
    stroke: #FAFAFA
}

.site-header-monolith .site-header-monolith__nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #A1A1AA;
    padding: 0.5rem 1rem;
    transition: color 0.25s ease;
    letter-spacing: -0.01em
}

.site-header-monolith .site-header-monolith__nav-link:hover,
.site-header-monolith .site-header-monolith__nav-link:focus {
    color: #FFFFFF
}

.site-header-monolith .site-header-monolith__btn-cta {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #09090B;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    padding: 0.55rem 1.4rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.site-header-monolith .site-header-monolith__btn-cta:hover {
    background-color: #E4E4E7;
    color: #09090B;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25)
}

@media (min-width:992px) {
    .site-header-monolith .site-header-monolith__collapse {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%
    }

    .site-header-monolith .site-header-monolith__nav-left {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-start
    }

    .site-header-monolith .site-header-monolith__nav-right {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end
    }

    .site-header-monolith .site-header-monolith__brand--center {
        flex: 0 0 auto;
        margin: 0 1.5rem
    }
}

@media (max-width:991.98px) {
    .site-header-monolith .site-header-monolith__collapse {
        background-color: #0C0C0D;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 1.25rem;
        margin-top: 0.75rem
    }

    .site-header-monolith .site-header-monolith__nav-item {
        margin-bottom: 0.25rem
    }

    .site-header-monolith .site-header-monolith__nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem
    }

    .site-header-monolith .site-header-monolith__cta-item {
        margin-top: 0.75rem
    }

    .site-header-monolith .site-header-monolith__btn-cta {
        width: 100%
    }
}

/* ===== hero ===== */
.nova-hero {
    background-color: #060913;
    color: #FAFAFA;
    position: relative;
    overflow: hidden;
}

.nova-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0.35rem 0.85rem;
}

.nova-hero__pill-icon {
    width: 1rem;
    height: 1rem;
    color: #FAFAFA;
    flex-shrink: 0;
}

.nova-hero__pill-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #E4E4E7;
    letter-spacing: 0.02em;
}

.nova-hero__title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: #FAFAFA;
    letter-spacing: -0.03em;
    hyphens: auto;
}

.nova-hero__lead {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #A1A1AA;
    max-width: 540px;
}

.nova-hero__btn-primary {
    background: #FFFFFF;
    color: #09090B;
    font-weight: 600;
    padding: 0.85rem 1.85rem;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9375rem;
}

.nova-hero__btn-primary:hover {
    background: #E4E4E7;
    color: #000000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.nova-hero__btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #FAFAFA;
    font-weight: 500;
    padding: 0.85rem 1.85rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9375rem;
}

.nova-hero__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
}

.nova-hero__meta-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FAFAFA;
    display: block;
    line-height: 1.2;
}

.nova-hero__meta-label {
    font-size: 0.75rem;
    color: #71717A;
    font-weight: 500;
}

.nova-hero__meta-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
}

.nova-hero__collage {
    position: relative;
}

.nova-hero__tile {
    border-radius: 16px;
    background: #0E1220;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.nova-hero__tile:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.25);
}

.nova-hero__tile-media {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.nova-hero__tile-media-sm {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.nova-hero__tile-img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.nova-hero__tile-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    background: rgba(255, 255, 255, 0.08);
    color: #E4E4E7;
    border-radius: 4px;
    padding: 0.15rem 0.45rem;
}

.nova-hero__tile-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 700;
    color: #FFFFFF;
}

.nova-hero__tile-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FAFAFA;
    line-height: 1.3;
}

.nova-hero__tile-link {
    color: #FAFAFA;
    transition: color 0.2s ease;
}

.nova-hero__tile-link:hover {
    color: #A1A1AA;
}

.nova-hero__tile-meta {
    font-size: 0.75rem;
    color: #71717A;
}

.nova-hero__tile-title-sm {
    font-family: 'Syne', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #FAFAFA;
    line-height: 1.25;
}

.nova-hero__tile-meta-sm {
    font-size: 0.6875rem;
    color: #A1A1AA;
    font-family: 'JetBrains Mono', monospace;
}

.nova-hero__tile--accent {
    background: linear-gradient(145deg, #131A30 0%, #0B1020 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    min-height: 110px;
}

.nova-hero__accent-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #A1A1AA;
    text-transform: uppercase;
}

.nova-hero__accent-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #FAFAFA;
}

.nova-hero__accent-metric {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FAFAFA;
    line-height: 1;
}

.nova-hero__accent-sub {
    font-size: 0.6875rem;
    color: #71717A;
}

.nova-hero__dash-card {
    background: rgba(14, 18, 32, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.nova-hero__dash-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nova-hero__dash-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nova-hero__dash-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #FAFAFA;
}

.nova-hero__dash-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FAFAFA;
    line-height: 1.3;
}

.nova-hero__dash-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #A1A1AA;
}

.nova-hero__dash-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #FAFAFA;
    transition: color 0.2s ease;
    display: inline-block;
}

.nova-hero__dash-link:hover {
    color: #A1A1AA;
}

@media (max-width: 767.98px) {
    .nova-hero__title {
        font-size: 1.125rem;
    }

    .nova-hero__lead {
        font-size: 0.875rem;
    }

    .nova-hero__tile-title {
        font-size: 0.875rem;
    }

    .nova-hero__dash-title {
        font-size: 0.875rem;
    }
}

/* ===== interactive-tour ===== */
.novaplay-interactive-tour {
    background-color: #050505;
    color: #FAFAFA;
    position: relative;
    overflow: hidden;
}

.novaplay-interactive-tour__badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0.35rem 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: #E4E4E7;
}

.novaplay-interactive-tour__icon-sm {
    color: #FFFFFF;
}

.novaplay-interactive-tour__title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #FAFAFA;
}

.novaplay-interactive-tour__lead {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    line-height: 1.65;
    color: #A1A1AA;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.novaplay-interactive-tour__step-card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    color: #FAFAFA;
    width: 100%;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.novaplay-interactive-tour__step-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.novaplay-interactive-tour__step-card.active {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%), #141416;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.novaplay-interactive-tour__step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #A1A1AA;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.2rem 0.55rem;
    line-height: 1;
}

.novaplay-interactive-tour__step-card.active .novaplay-interactive-tour__step-num {
    color: #09090B;
    background: #FFFFFF;
    border-color: #FFFFFF;
}

.novaplay-interactive-tour__step-heading {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FAFAFA;
}

.novaplay-interactive-tour__step-desc {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #A1A1AA;
}

.novaplay-interactive-tour__btn-primary {
    background: #FFFFFF;
    color: #09090B;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.01em;
    padding: 0.85rem 1.75rem;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.novaplay-interactive-tour__btn-primary:hover {
    background: #E4E4E7;
    color: #09090B;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.novaplay-interactive-tour__btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #FAFAFA;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.01em;
    padding: 0.85rem 1.75rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.novaplay-interactive-tour__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.novaplay-interactive-tour__display-card {
    background: #0C0C0D;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.85);
}

.novaplay-interactive-tour__display-header {
    background: #141416;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.novaplay-interactive-tour__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.novaplay-interactive-tour__window-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #A1A1AA;
}

.novaplay-interactive-tour__live-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #FAFAFA;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.novaplay-interactive-tour__live-beacon {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFFFFF;
    display: inline-block;
}

.novaplay-interactive-tour__display-body {
    padding: 1.75rem;
    min-height: 280px;
}

.novaplay-interactive-tour__pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #A1A1AA;
    border-radius: 100px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8125rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.25s ease;
}

.novaplay-interactive-tour__pill.active,
.novaplay-interactive-tour__pill:hover {
    background: #FFFFFF;
    color: #09090B;
    border-color: #FFFFFF;
}

.novaplay-interactive-tour__game-preview {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.novaplay-interactive-tour__sub-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #A1A1AA;
    letter-spacing: 0.05em;
}

.novaplay-interactive-tour__game-title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FAFAFA;
}

.novaplay-interactive-tour__game-meta {
    font-size: 0.8125rem;
    color: #A1A1AA;
}

.novaplay-interactive-tour__score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FAFAFA;
}

.novaplay-interactive-tour__score-label {
    font-size: 0.6875rem;
    color: #71717A;
    text-transform: uppercase;
}

.novaplay-interactive-tour__stat-item {
    background: rgba(20, 20, 22, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.novaplay-interactive-tour__stat-k {
    font-size: 0.6875rem;
    color: #A1A1AA;
    display: block;
}

.novaplay-interactive-tour__stat-v {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: #FAFAFA;
    font-weight: 600;
}

.novaplay-interactive-tour__quote-card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.novaplay-interactive-tour__avatar-badge {
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    color: #09090B;
    border-radius: 50%;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.novaplay-interactive-tour__reviewer-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FAFAFA;
}

.novaplay-interactive-tour__reviewer-role {
    font-size: 0.75rem;
    color: #71717A;
}

.novaplay-interactive-tour__quote-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #E4E4E7;
    font-style: italic;
}

.novaplay-interactive-tour__meter-name {
    font-size: 0.8125rem;
    color: #A1A1AA;
}

.novaplay-interactive-tour__meter-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    color: #FAFAFA;
}

.novaplay-interactive-tour__meter-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
}

.novaplay-interactive-tour__meter-fill {
    height: 100%;
    background: #FFFFFF;
    border-radius: 100px;
}

.novaplay-interactive-tour__perf-box {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.novaplay-interactive-tour__perf-title {
    font-size: 0.875rem;
    color: #A1A1AA;
}

.novaplay-interactive-tour__perf-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #FAFAFA;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.novaplay-interactive-tour__perf-metric {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.novaplay-interactive-tour__perf-k {
    font-size: 0.6875rem;
    color: #71717A;
    display: block;
}

.novaplay-interactive-tour__perf-v {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    color: #FAFAFA;
}

.novaplay-interactive-tour__note {
    font-size: 0.75rem;
    color: #71717A;
}

.novaplay-interactive-tour__display-footer {
    background: #141416;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.novaplay-interactive-tour__check-icon {
    color: #FFFFFF;
}

.novaplay-interactive-tour__verified-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #A1A1AA;
}

.novaplay-interactive-tour__inline-link {
    color: #FAFAFA;
    font-size: 0.8125rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.novaplay-interactive-tour__inline-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .novaplay-interactive-tour__title {
        font-size: 16px;
        hyphens: auto;
    }

    .novaplay-interactive-tour__step-heading {
        font-size: 14px;
        hyphens: auto;
    }

    .novaplay-interactive-tour__game-title {
        font-size: 14px;
    }
}

/* ===== catalog-grid ===== */
.monolith-catalog-grid {
    background-color: #050505;
    color: #FAFAFA;
    position: relative;
    overflow: hidden
}

.monolith-catalog-grid .catalog-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #E4E4E7
}

.monolith-catalog-grid .badge-indicator {
    width: 6px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8)
}

.monolith-catalog-grid .catalog-main-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    color: #FFFFFF;
    letter-spacing: -0.03em
}

.monolith-catalog-grid .catalog-lead-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #A1A1AA;
    max-width: 580px
}

.monolith-catalog-grid .catalog-filter-wrap {
    justify-content: flex-start
}

.monolith-catalog-grid .catalog-filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #A1A1AA;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: pointer
}

.monolith-catalog-grid .catalog-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.25)
}

.monolith-catalog-grid .catalog-filter-btn.active {
    background: #FFFFFF;
    color: #09090B;
    border-color: #FFFFFF;
    font-weight: 600
}

.monolith-catalog-grid .catalog-card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease
}

.monolith-catalog-grid .catalog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.03)
}

.monolith-catalog-grid .catalog-card-media {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0C0C0D
}

.monolith-catalog-grid .catalog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease
}

.monolith-catalog-grid .catalog-card:hover .catalog-img {
    transform: scale(1.04)
}

.monolith-catalog-grid .catalog-floating-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 2
}

.monolith-catalog-grid .catalog-star-icon {
    color: #FFFFFF
}

.monolith-catalog-grid .catalog-studio {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #71717A;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

.monolith-catalog-grid .catalog-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: #A1A1AA
}

.monolith-catalog-grid .catalog-card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
    color: #FAFAFA;
    transition: color 0.2s ease
}

.monolith-catalog-grid .catalog-title-link:hover .catalog-card-title {
    color: #FFFFFF
}

.monolith-catalog-grid .catalog-card-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #A1A1AA
}

.monolith-catalog-grid .catalog-action-btn {
    background: #FFFFFF;
    color: #09090B;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease
}

.monolith-catalog-grid .catalog-action-btn:hover {
    background: #E4E4E7;
    color: #09090B;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25)
}

.monolith-catalog-grid .btn-arrow-icon {
    transition: transform 0.3s ease
}

.monolith-catalog-grid .catalog-action-btn:hover .btn-arrow-icon {
    transform: translateX(3px)
}

@media (min-width:992px) {
    .monolith-catalog-grid .catalog-filter-wrap {
        justify-content: flex-end
    }
}

@media (max-width:767.98px) {
    .monolith-catalog-grid .catalog-main-heading {
        font-size: 16px;
        line-height: 1.25;
        hyphens: auto
    }

    .monolith-catalog-grid .catalog-card-title {
        font-size: 14px;
        line-height: 1.3;
        hyphens: auto
    }

    .monolith-catalog-grid .catalog-lead-text {
        font-size: 0.875rem
    }

    .monolith-catalog-grid .catalog-card-media,
    .monolith-catalog-grid .catalog-img {
        height: 180px
    }
}

/* ===== objection-handling ===== */
.novaplay-objections {
    background-color: #050505;
    color: #FAFAFA;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

.novaplay-objections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    height: 350px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06) 0%, rgba(5, 5, 5, 0) 70%);
    pointer-events: none;
}

.novaplay-objections .novaplay-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
}

.novaplay-objections .novaplay-badge-icon {
    width: 16px;
    height: 16px;
    stroke: #FAFAFA;
}

.novaplay-objections .novaplay-badge-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #E4E4E7;
    font-weight: 500;
}

.novaplay-objections .novaplay-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.18;
    color: #FAFAFA;
    letter-spacing: -0.03em;
}

.novaplay-objections .novaplay-lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #A1A1AA;
    max-width: 720px;
    margin: 0 auto;
}

.novaplay-objections .novaplay-card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.novaplay-objections .novaplay-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 255, 255, 0.03);
}

.novaplay-objections .novaplay-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.novaplay-objections .novaplay-icon {
    width: 22px;
    height: 22px;
    stroke: #FFFFFF;
}

.novaplay-objections .novaplay-metric-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #E4E4E7;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    font-weight: 500;
}

.novaplay-objections .novaplay-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FAFAFA;
    line-height: 1.3;
}

.novaplay-objections .novaplay-card-text {
    font-size: 0.925rem;
    line-height: 1.55;
    color: #A1A1AA;
}

.novaplay-objections .novaplay-card-footer {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.novaplay-objections .novaplay-status-label {
    font-size: 0.825rem;
    font-weight: 500;
    color: #E4E4E7;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.novaplay-objections .novaplay-status-icon {
    width: 14px;
    height: 14px;
    stroke: #FAFAFA;
}

.novaplay-objections .novaplay-cta-banner {
    background: linear-gradient(180deg, #161619 0%, #0C0C0D 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}

.novaplay-objections .novaplay-cta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 700;
    color: #FAFAFA;
    line-height: 1.25;
}

.novaplay-objections .novaplay-cta-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #A1A1AA;
}

.novaplay-objections .novaplay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.novaplay-objections .novaplay-btn-primary {
    background: #FFFFFF;
    color: #09090B;
    border: 1px solid #FFFFFF;
}

.novaplay-objections .novaplay-btn-primary:hover {
    background: #E4E4E7;
    color: #09090B;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.novaplay-objections .novaplay-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #FAFAFA;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.novaplay-objections .novaplay-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .novaplay-objections .novaplay-heading {
        font-size: 16px;
        hyphens: auto;
    }

    .novaplay-objections .novaplay-card-title {
        font-size: 14px;
        hyphens: auto;
    }

    .novaplay-objections .novaplay-cta-title {
        font-size: 14px;
        hyphens: auto;
    }

    .novaplay-objections .novaplay-card {
        padding: 1.5rem 1.25rem;
    }

    .novaplay-objections .novaplay-btn {
        width: 100%;
    }
}

/* ===== team ===== */
.team-monolith {
    background-color: #050505;
    color: #FAFAFA;
    position: relative;
    overflow: hidden;
}

.team-monolith-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #E4E4E7;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0.35rem 0.85rem;
    width: fit-content;
}

.team-monolith-icon {
    color: #FFFFFF;
}

.team-monolith-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #FAFAFA;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.team-monolith-lead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #A1A1AA;
    font-size: 1.125rem;
    line-height: 1.65;
    max-width: 680px;
}

.team-monolith-card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.25rem;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-monolith-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.03);
}

.team-monolith-avatar-wrapper {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.team-monolith-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.team-monolith-name {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.25;
    color: #FFFFFF;
}

.team-monolith-role {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    color: #A1A1AA;
}

.team-monolith-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #E4E4E7;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.2rem 0.6rem;
    width: fit-content;
}

.team-monolith-bio {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #A1A1AA;
}

.team-monolith-footer {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.team-monolith-stat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    color: #71717A;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.team-monolith-stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: #FFFFFF;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .team-monolith-heading {
        font-size: 16px !important;
        hyphens: auto;
    }

    .team-monolith-name {
        font-size: 14px !important;
        hyphens: auto;
    }

    .team-monolith-lead {
        font-size: 0.95rem;
    }

    .team-monolith-card {
        padding: 1.5rem;
    }

    .team-monolith-avatar-wrapper {
        width: 68px;
        height: 68px;
    }
}

/* ===== reviews-results ===== */
.reviews-results-section {
    background-color: #050505;
    color: #FAFAFA;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.reviews-results-section .reviews-results-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14)
}

.reviews-results-section .reviews-results-badge-icon {
    width: 16px;
    height: 16px;
    color: #FFFFFF
}

.reviews-results-section .reviews-results-badge-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #E4E4E7
}

.reviews-results-section .reviews-results-heading {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #FAFAFA
}

.reviews-results-section .reviews-results-lead {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #A1A1AA;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

.reviews-results-section .reviews-results-filter-btn {
    background: rgba(255, 255, 255, 0.04);
    color: #A1A1AA;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.55rem 1.25rem;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer
}

.reviews-results-section .reviews-results-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FAFAFA;
    border-color: rgba(255, 255, 255, 0.25)
}

.reviews-results-section .reviews-results-filter-btn.active {
    background: #FFFFFF;
    color: #09090B;
    border-color: #FFFFFF;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2)
}

.reviews-results-section .reviews-results-card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1)
}

.reviews-results-section .reviews-results-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 24px rgba(255, 255, 255, 0.03)
}

.reviews-results-section .reviews-results-metric-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #FAFAFA;
    font-weight: 500
}

.reviews-results-section .reviews-results-star-icon {
    width: 16px;
    height: 16px;
    color: #FBBF24
}

.reviews-results-section .reviews-results-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FAFAFA
}

.reviews-results-section .reviews-results-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    color: #FAFAFA
}

.reviews-results-section .reviews-results-card-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.925rem;
    line-height: 1.55;
    color: #A1A1AA
}

.reviews-results-section .reviews-results-card-author {
    border-top-color: rgba(255, 255, 255, 0.08) !important
}

.reviews-results-section .reviews-results-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18)
}

.reviews-results-section .reviews-results-author-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.925rem;
    font-weight: 600;
    color: #FAFAFA;
    line-height: 1.2
}

.reviews-results-section .reviews-results-author-city {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    color: #71717A
}

.reviews-results-section .reviews-results-cta-box {
    background: linear-gradient(180deg, #161619 0%, #0C0C0D 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px
}

.reviews-results-section .reviews-results-cta-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    color: #FAFAFA
}

.reviews-results-section .reviews-results-cta-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: #A1A1AA
}

.reviews-results-section .reviews-results-cta-btn {
    background: #FFFFFF;
    color: #09090B;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid #FFFFFF
}

.reviews-results-section .reviews-results-cta-btn:hover {
    background: #E4E4E7;
    color: #09090B;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25)
}

@media (max-width:767.98px) {
    .reviews-results-section .reviews-results-heading {
        font-size: 16px;
        hyphens: auto
    }

    .reviews-results-section .reviews-results-card-title {
        font-size: 14px
    }

    .reviews-results-section .reviews-results-card {
        padding: 1.25rem
    }
}

/* ===== tariffs ===== */
.novaplay-tariffs {
    background-color: #050505;
    color: #FAFAFA;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: hidden;
}

.novaplay-tariffs__badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #E4E4E7;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.novaplay-tariffs__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: inline-block;
}

.novaplay-tariffs__title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #FAFAFA;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.novaplay-tariffs__subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #A1A1AA;
}

.novaplay-tariffs__card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.novaplay-tariffs__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.novaplay-tariffs__card.active {
    border-color: #FFFFFF;
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.08);
}

.novaplay-tariffs__card--recommended {
    background: linear-gradient(180deg, #161619 0%, #0C0C0D 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.novaplay-tariffs__badge-recommended {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #FFFFFF;
    color: #09090B;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.85rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.novaplay-tariffs__card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.novaplay-tariffs__plan-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FAFAFA;
    line-height: 1.25;
}

.novaplay-tariffs__plan-desc {
    font-size: 0.925rem;
    color: #A1A1AA;
    line-height: 1.5;
    min-height: 2.8rem;
}

.novaplay-tariffs__price-wrap {
    color: #FAFAFA;
}

.novaplay-tariffs__price-value {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.novaplay-tariffs__price-period {
    font-size: 1rem;
    color: #A1A1AA;
}

.novaplay-tariffs__feature-item {
    font-size: 0.95rem;
    color: #E4E4E7;
    line-height: 1.4;
}

.novaplay-tariffs__check-icon {
    width: 18px;
    height: 18px;
    color: #FFFFFF;
}

.novaplay-tariffs__select-btn {
    background: rgba(255, 255, 255, 0.04);
    color: #FAFAFA;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.novaplay-tariffs__select-btn:hover,
.novaplay-tariffs__card.active .novaplay-tariffs__select-btn {
    background: #FFFFFF;
    color: #09090B;
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.novaplay-tariffs__form-panel {
    background: rgba(20, 20, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.novaplay-tariffs__form-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #A1A1AA;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.novaplay-tariffs__form-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FAFAFA;
}

.novaplay-tariffs__form-selected {
    font-size: 0.95rem;
    color: #A1A1AA;
}

.novaplay-tariffs__selected-label {
    color: #FFFFFF;
}

.novaplay-tariffs__input {
    background: #0C0C0D;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #FAFAFA;
    border-radius: 100px;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.novaplay-tariffs__input:focus {
    background: #141416;
    border-color: #FFFFFF;
    color: #FAFAFA;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
    outline: none;
}

.novaplay-tariffs__input::placeholder {
    color: #71717A;
    opacity: 1;
}

.novaplay-tariffs__submit-btn {
    background: #FFFFFF;
    color: #09090B;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.novaplay-tariffs__submit-btn:hover {
    background: #E4E4E7;
    border-color: #E4E4E7;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.novaplay-tariffs__disclaimer {
    font-size: 0.8rem;
    color: #71717A;
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .novaplay-tariffs__title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .novaplay-tariffs__plan-name {
        font-size: 1.25rem;
        hyphens: auto;
    }

    .novaplay-tariffs__form-title {
        font-size: 1.25rem;
        hyphens: auto;
    }

    .novaplay-tariffs__card {
        padding: 1.75rem 1.25rem;
    }

    .novaplay-tariffs__form-panel {
        padding: 1.5rem 1rem;
    }
}

/* ===== support-buttons ===== */
.support-actions-monolith {
    padding: 4rem 0;
    background-color: #050505;
    position: relative;
    overflow: hidden;
}

.support-actions-monolith__card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .support-actions-monolith__card {
        padding: 3.5rem 3rem;
    }
}

.support-actions-monolith__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #E4E4E7;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.support-actions-monolith__title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: #FAFAFA;
    letter-spacing: -0.02em;
}

.support-actions-monolith__desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #A1A1AA;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.support-actions-monolith__buttons {
    width: 100%;
}

.support-actions-monolith__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    max-width: 280px;
    min-height: 48px;
    text-align: center;
}

@media (min-width: 576px) {
    .support-actions-monolith__btn {
        width: auto;
        max-width: none;
    }
}

.support-actions-monolith__btn--primary {
    background: #FFFFFF;
    color: #09090B;
    border: 1px solid #FFFFFF;
}

.support-actions-monolith__btn--primary:hover {
    background: #E4E4E7;
    color: #09090B;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.support-actions-monolith__btn--secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #FAFAFA;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.support-actions-monolith__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.support-actions-monolith__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* ===== footer ===== */
.site-footer-monolith {
    background-color: #050505;
    color: #A1A1AA;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.site-footer-monolith::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.site-footer-monolith__top-divider {
    display: none;
}

.site-footer-monolith__main-grid {
    margin-bottom: 3.5rem;
}

.site-footer-monolith__brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer-monolith__brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.site-footer-monolith__logo {
    width: 44px;
    height: 44px;
    max-width: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.15));
}

.site-footer-monolith__brand-name {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #FAFAFA;
}

.site-footer-monolith__brand-desc {
    color: #A1A1AA;
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 340px;
}

.site-footer-monolith__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.site-footer-monolith__badge-icon {
    width: 1rem;
    height: 1rem;
    color: #FAFAFA;
    flex-shrink: 0;
}

.site-footer-monolith__badge-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: #E4E4E7;
    letter-spacing: 0.02em;
}

.site-footer-monolith__column-title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FAFAFA;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.site-footer-monolith__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.site-footer-monolith__list-item {
    margin: 0;
    padding: 0;
}

.site-footer-monolith__nav-link {
    color: #A1A1AA;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.site-footer-monolith__nav-link:hover,
.site-footer-monolith__nav-link:focus {
    color: #FFFFFF;
    transform: translateX(4px);
}

.site-footer-monolith__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.site-footer-monolith__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.site-footer-monolith__contact-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #141416;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.site-footer-monolith__contact-icon {
    width: 16px;
    height: 16px;
    color: #FAFAFA;
}

.site-footer-monolith__contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.site-footer-monolith__contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #71717A;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.site-footer-monolith__contact-value {
    color: #E4E4E7;
    font-size: 0.9375rem;
    word-break: break-word;
}

.site-footer-monolith__contact-link {
    color: #FAFAFA;
    text-decoration: none;
    font-size: 0.9375rem;
    word-break: break-word;
    transition: color 0.25s ease;
}

.site-footer-monolith__contact-link:hover,
.site-footer-monolith__contact-link:focus {
    color: #FFFFFF;
    text-decoration: underline;
}

.site-footer-monolith__contact-link--wa {
    font-weight: 500;
}

.site-footer-monolith__bottom-bar {
    padding-top: 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-monolith__bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: flex-start;
}

.site-footer-monolith__copyright {
    font-size: 0.875rem;
    color: #A1A1AA;
    margin: 0;
}

.site-footer-monolith__disclaimer-note {
    font-size: 0.8125rem;
    color: #71717A;
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
}

@media (min-width: 768px) {
    .site-footer-monolith {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .site-footer-monolith__bottom-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 767.98px) {
    .site-footer-monolith {
        padding-top: 4rem;
        padding-bottom: 2.5rem;
    }

    .site-footer-monolith__column-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        hyphens: auto;
    }

    .site-footer-monolith__brand-desc {
        max-width: 100%;
    }
}

/* ===== PAGE: catalog ===== */
.catalog-block {
  background-color: #050505;
  color: #FAFAFA;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
}
.catalog-block__badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #E4E4E7;
}
.catalog-block__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}
.catalog-block__lead {
  font-size: 1.125rem;
  color: #A1A1AA;
  max-width: 680px;
  line-height: 1.6;
}
.catalog-block__toolbar {
  background-color: #0C0C0D;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.catalog-block__input {
  background-color: #141416;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  border-radius: 100px;
}
.catalog-block__input:focus {
  background-color: #141416;
  border-color: rgba(255, 255, 255, 0.32);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}
.catalog-block__input::placeholder {
  color: #71717A;
}
.catalog-block__search-icon {
  left: 0.9rem;
  color: #71717A;
  pointer-events: none;
}
.catalog-block__filter-btn {
  background: rgba(255, 255, 255, 0.04);
  color: #A1A1AA;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
}
.catalog-block__filter-btn:hover,
.catalog-block__filter-btn.active {
  background: #FFFFFF;
  color: #09090B;
  border-color: #FFFFFF;
}
.catalog-block__card {
  background-color: #111113;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.catalog-block__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}
.catalog-block__image-wrapper {
  aspect-ratio: 16 / 9;
  background-color: #141416;
  overflow: hidden;
}
.catalog-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.catalog-block__card:hover .catalog-block__img {
  transform: scale(1.04);
}
.catalog-block__rating-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.catalog-block__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #E4E4E7;
}
.catalog-block__developer {
  font-size: 0.8rem;
  color: #71717A;
}
.catalog-block__item-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.catalog-block__item-link {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}
.catalog-block__item-link:hover {
  color: #E4E4E7;
}
.catalog-block__item-desc {
  font-size: 0.9rem;
  line-height: 1.5;
}
.catalog-block__comments {
  background: rgba(20, 20, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
}
.catalog-block__btn {
  display: block;
  background: #FFFFFF;
  color: #09090B;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.7rem 1.25rem;
  border-radius: 100px;
  border: 1px solid #FFFFFF;
  text-decoration: none;
  transition: all 0.25s ease;
}
.catalog-block__btn:hover {
  background: #E4E4E7;
  color: #09090B;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
@media (max-width: 767.98px) {
  .catalog-block__title {
    font-size: 1.35rem;
    hyphens: auto;
  }
  .catalog-block__item-title {
    font-size: 1.1rem;
  }
}

/* ===== PAGE: genres ===== */
.genres-page-section {
  background-color: #050505;
  color: #FAFAFA;
  min-height: 50vh;
}

.genres-page-section__header {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.genres-page-section__badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #E4E4E7;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
}

.genres-page-section__title {
  font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.genres-page-section__lead {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #A1A1AA !important;
}

.genres-page-section__search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.genres-page-section__search-icon {
  position: absolute;
  left: 1rem;
  color: #71717A;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.genres-page-section__search-input {
  background-color: #0C0C0D !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #FAFAFA !important;
  border-radius: 100px !important;
  padding: 0.75rem 1rem 0.75rem 2.75rem !important;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.genres-page-section__search-input::placeholder {
  color: #71717A !important;
}

.genres-page-section__search-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.06);
}

.genres-page-section__filter-btn {
  background: rgba(255, 255, 255, 0.04);
  color: #A1A1AA;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: pointer;
}

.genres-page-section__filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.22);
}

.genres-page-section__filter-btn.active {
  background: #FFFFFF;
  color: #09090B;
  border-color: #FFFFFF;
  font-weight: 600;
}

.genres-page-section__card {
  background: #111113;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.genres-page-section__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.03);
}

.genres-page-section__media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #141416;
}

.genres-page-section__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.genres-page-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.genres-page-section__card:hover .genres-page-section__img {
  transform: scale(1.04);
}

.genres-page-section__status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(5, 5, 5, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  color: #FAFAFA;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.genres-page-section__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: #71717A;
}

.genres-page-section__meta strong {
  color: #E4E4E7;
}

.genres-page-section__card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.genres-page-section__title-link {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.genres-page-section__title-link:hover {
  color: #A1A1AA;
}

.genres-page-section__card-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A1A1AA !important;
}

.genres-page-section__footer {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.genres-page-section__action-link {
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.genres-page-section__action-link:hover {
  color: #FAFAFA;
  opacity: 0.85;
  gap: 0.75rem !important;
}

@media (max-width: 767.98px) {
  .genres-page-section__title {
    font-size: 1.5rem;
    hyphens: auto;
  }
  .genres-page-section__card-title {
    font-size: 1.15rem;
    hyphens: auto;
  }
  .genres-page-section__media {
    height: 190px;
  }
}

/* ===== PAGE: reviews ===== */
.np-reviews-section {
  background-color: #050505;
  color: #FAFAFA;
}

.np-reviews-section .np-section-badge {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E4E4E7;
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}

.np-reviews-section .np-filter-btn {
  background-color: rgba(255, 255, 255, 0.03);
  color: #A1A1AA;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.np-reviews-section .np-filter-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
}

.np-reviews-section .np-filter-btn.active {
  background-color: #FFFFFF;
  color: #09090B;
  border-color: #FFFFFF;
  font-weight: 600;
}

.np-reviews-section .np-search-wrapper {
  width: 100%;
}

.np-reviews-section .np-search-input {
  background-color: #0C0C0D;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FAFAFA;
  border-radius: 100px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  font-size: 0.875rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.np-reviews-section .np-search-input::placeholder {
  color: #71717A;
  opacity: 1;
}

.np-reviews-section .np-search-input:focus {
  background-color: #111113;
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.np-reviews-section .np-review-card {
  background-color: #111113;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.np-reviews-section .np-review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.03);
}

.np-reviews-section .np-card-media {
  aspect-ratio: 16 / 9;
  background-color: #0C0C0D;
  overflow: hidden;
}

.np-reviews-section .np-card-img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.np-reviews-section .np-review-card:hover .np-card-img {
  transform: scale(1.04);
}

.np-reviews-section .np-category-tag {
  background-color: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FAFAFA;
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}

.np-reviews-section .np-card-title a {
  transition: color 0.2s ease;
}

.np-reviews-section .np-card-title a:hover {
  color: #D4D4D8;
}

.np-reviews-section .text-xs {
  font-size: 0.75rem;
}

.np-reviews-section .text-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}

.np-reviews-section .np-dot-divider {
  color: #52525B;
}

.np-reviews-section .np-read-more-btn {
  background-color: rgba(255, 255, 255, 0.04);
  color: #FAFAFA;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.25s ease;
  text-decoration: none;
}

.np-reviews-section .np-read-more-btn:hover {
  background-color: #FFFFFF;
  color: #09090B;
  border-color: #FFFFFF;
}

.np-reviews-section .np-empty-card {
  background-color: #0C0C0D;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.np-reviews-section .max-w-md {
  max-width: 480px;
}

/* ===== PAGE: privacy ===== */
.novaplay-privacy-section{background-color:#050505;color:#FAFAFA;font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,sans-serif;position:relative;overflow:hidden}.novaplay-privacy-section a{text-decoration:none;transition:all 0.35s cubic-bezier(0.16,1,0.3,1)}.novaplay-privacy-card{background:linear-gradient(180deg,rgba(255,255,255,0.04) 0%,rgba(255,255,255,0.01) 100%),#111113;border:1px solid rgba(255,255,255,0.08);border-radius:16px;box-shadow:0 8px 24px rgba(0,0,0,0.7);transition:all 0.35s cubic-bezier(0.16,1,0.3,1)}.novaplay-privacy-card:hover{border-color:rgba(255,255,255,0.18)}.novaplay-privacy-badge{font-family:'JetBrains Mono',monospace;font-size:0.75rem;padding:0.35rem 0.85rem;border-radius:100px;border:1px solid rgba(255,255,255,0.14);background:rgba(255,255,255,0.04);color:#E4E4E7;text-transform:uppercase;letter-spacing:0.04em}.novaplay-privacy-nav-title{font-family:'Syne',-apple-system,BlinkMacSystemFont,sans-serif;font-size:1.15rem;font-weight:700;color:#FFFFFF;letter-spacing:-0.02em}.novaplay-privacy-nav-link{font-size:0.875rem;color:#A1A1AA;padding:0.6rem 0.85rem;border-radius:8px;background:transparent;display:block;border-left:2px solid transparent}.novaplay-privacy-nav-link:hover,.novaplay-privacy-nav-link.active{color:#FFFFFF;background:rgba(255,255,255,0.05);border-left-color:#FFFFFF;transform:translateX(3px)}.novaplay-privacy-meta{border-top:1px solid rgba(255,255,255,0.08)}.novaplay-privacy-meta-label{font-size:0.75rem;color:#71717A;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:0.25rem}.novaplay-privacy-meta-value{font-family:'JetBrains Mono',monospace;font-size:0.875rem;color:#E4E4E7}.novaplay-privacy-header{background:linear-gradient(135deg,rgba(255,255,255,0.05) 0%,rgba(17,17,19,0.9) 100%)}.novaplay-privacy-eyebrow{font-family:'JetBrains Mono',monospace;font-size:0.8125rem;color:#A1A1AA;text-transform:uppercase;letter-spacing:0.08em}.novaplay-privacy-main-title{font-family:'Syne',-apple-system,BlinkMacSystemFont,sans-serif;font-size:clamp(1.85rem,3.5vw,2.75rem);font-weight:800;color:#FFFFFF;line-height:1.15;letter-spacing:-0.03em}.novaplay-privacy-lead{font-size:1.05rem;line-height:1.65;color:#A1A1AA}.novaplay-privacy-num-badge{font-family:'JetBrains Mono',monospace;font-size:0.75rem;font-weight:500;color:#71717A;text-transform:uppercase;letter-spacing:0.05em}.novaplay-privacy-section-title{font-family:'Syne',-apple-system,BlinkMacSystemFont,sans-serif;font-size:clamp(1.25rem,2.2vw,1.65rem);font-weight:700;color:#FFFFFF;letter-spacing:-0.02em;line-height:1.25}.novaplay-privacy-text{font-size:0.975rem;line-height:1.65;color:#A1A1AA;margin-bottom:1rem}.novaplay-privacy-list{list-style:none;padding-left:0;margin-bottom:0;display:flex;flex-direction:column;gap:1rem}.novaplay-privacy-list-item{position:relative;padding-left:1.5rem;font-size:0.95rem;line-height:1.6;color:#A1A1AA}.novaplay-privacy-list-item::before{content:'';position:absolute;left:0;top:0.6rem;width:6px;height:6px;background:#FFFFFF;border-radius:50%}.novaplay-privacy-item-title{color:#FAFAFA;font-weight:600}.novaplay-privacy-subbox{background:rgba(20,20,22,0.6);border:1px solid rgba(255,255,255,0.06);border-radius:12px}.novaplay-privacy-box{background:rgba(20,20,22,0.4);border:1px solid rgba(255,255,255,0.06);border-radius:12px}.novaplay-privacy-subtitle,.novaplay-privacy-box-title{font-family:'Syne',-apple-system,BlinkMacSystemFont,sans-serif;font-size:1.05rem;font-weight:600;color:#FFFFFF;letter-spacing:-0.01em}.novaplay-privacy-subtext{font-size:0.875rem;line-height:1.55;color:#A1A1AA}.novaplay-privacy-inline-link{color:#FFFFFF;border-bottom:1px solid rgba(255,255,255,0.4)}.novaplay-privacy-inline-link:hover{border-bottom-color:#FFFFFF;color:#FAFAFA}.novaplay-privacy-contact-card{background:linear-gradient(180deg,rgba(255,255,255,0.03) 0%,rgba(255,255,255,0.01) 100%);border:1px solid rgba(255,255,255,0.12);border-radius:12px}.novaplay-privacy-icon-circle{width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);display:flex;align-items:center;justify-content:center;flex-shrink:0}.novaplay-privacy-icon{width:22px;height:22px;color:#FFFFFF}.novaplay-privacy-contact-label{font-size:0.8125rem;color:#71717A;text-transform:uppercase;letter-spacing:0.04em}.novaplay-privacy-contact-info{font-family:'JetBrains Mono',monospace;font-size:0.95rem;color:#FAFAFA;font-weight:500}.novaplay-privacy-btn{background:#FFFFFF;color:#09090B;font-weight:600;font-size:0.9rem;letter-spacing:-0.01em;padding:0.75rem 1.6rem;border-radius:100px;border:1px solid #FFFFFF;display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;transition:all 0.35s cubic-bezier(0.16,1,0.3,1)}.novaplay-privacy-btn:hover{background:#E4E4E7;color:#09090B;transform:translateY(-2px);box-shadow:0 0 20px rgba(255,255,255,0.25)}@media (max-width:991.98px){.novaplay-privacy-sidebar .sticky-top{position:static !important;top:auto}}

/* ===== PAGE: terms ===== */
.terms-section { background-color: #050505; color: #A1A1AA; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; } .terms-section .terms-header-card { background: linear-gradient(180deg, #141416 0%, #0C0C0D 100%); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7); } .terms-section .terms-badge { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; padding: 0.35rem 0.85rem; border-radius: 100px; border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.04); color: #FAFAFA; letter-spacing: 0.02em; } .terms-section .terms-badge-secondary { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; padding: 0.35rem 0.85rem; border-radius: 100px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.02); color: #71717A; } .terms-section .terms-main-title { font-family: 'Syne', sans-serif; color: #FFFFFF; font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.03em; } .terms-section .terms-lead-text { color: #E4E4E7; font-size: 1.05rem; line-height: 1.6; } .terms-section .terms-sidebar-nav { top: 1.5rem; background: #0C0C0D; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 1.75rem; } .terms-section .terms-nav-title { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; color: #FFFFFF; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); } .terms-section .terms-nav-list { display: flex; flex-direction: column; gap: 0.35rem; } .terms-section .terms-nav-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 0.9rem; border-radius: 8px; color: #A1A1AA; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: all 0.25s ease; border: 1px solid transparent; } .terms-section .terms-nav-item:hover { color: #FFFFFF; background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.08); } .terms-section .terms-nav-item.active { color: #FFFFFF; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); font-weight: 600; } .terms-section .terms-nav-num { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #71717A; } .terms-section .terms-nav-item.active .terms-nav-num { color: #FFFFFF; } .terms-section .terms-info-box { background: #111113; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 1.25rem; } .terms-section .terms-info-title { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 600; color: #FAFAFA; margin-bottom: 0.5rem; } .terms-section .terms-info-desc { font-size: 0.85rem; color: #71717A; line-height: 1.5; margin-bottom: 1rem; } .terms-section .terms-action-btn { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 0.65rem 1.2rem; background: #FFFFFF; color: #09090B; font-weight: 600; font-size: 0.85rem; border-radius: 100px; text-decoration: none; border: 1px solid #FFFFFF; transition: all 0.25s ease; } .terms-section .terms-action-btn:hover { background: #E4E4E7; color: #000000; box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); } .terms-section .terms-content-wrapper { display: flex; flex-direction: column; gap: 1.75rem; } .terms-section .terms-block { background: #111113; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 2rem; scroll-margin-top: 2rem; } .terms-section .terms-block-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; } .terms-section .terms-step-pill { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; font-weight: 600; background: rgba(255, 255, 255, 0.06); color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.12); padding: 0.25rem 0.6rem; border-radius: 6px; } .terms-section .terms-block-title { font-family: 'Syne', sans-serif; color: #FFFFFF; font-size: 1.35rem; font-weight: 600; margin: 0; line-height: 1.3; } .terms-section .terms-text { color: #A1A1AA; font-size: 0.975rem; line-height: 1.65; margin-bottom: 1rem; } .terms-section .terms-text:last-child { margin-bottom: 0; } .terms-section .terms-rules-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.25rem; } @media (min-width: 768px) { .terms-section .terms-rules-grid { grid-template-columns: 1fr 1fr; } } .terms-section .terms-rule-card { background: #141416; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 1.25rem; } .terms-section .terms-rule-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 600; color: #FAFAFA; margin-bottom: 0.5rem; } .terms-section .terms-rule-text { font-size: 0.875rem; color: #71717A; line-height: 1.5; margin: 0; } .terms-section .terms-contact-card { background: #141416; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 1.5rem; margin-top: 1.25rem; } .terms-section .terms-contact-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 600; color: #FFFFFF; margin-bottom: 0.5rem; } .terms-section .terms-contact-text { font-size: 0.9rem; color: #A1A1AA; margin-bottom: 1.25rem; line-height: 1.5; } .terms-section .terms-btn-outline { display: inline-flex; align-items: center; justify-content: center; padding: 0.55rem 1.1rem; background: rgba(255, 255, 255, 0.04); color: #FAFAFA; font-size: 0.825rem; font-weight: 500; border-radius: 100px; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.14); transition: all 0.25s ease; } .terms-section .terms-btn-outline:hover { background: rgba(255, 255, 255, 0.08); color: #FFFFFF; border-color: rgba(255, 255, 255, 0.3); }

/* ===== PAGE: disclaimer ===== */
.disclaimer-section {
  background-color: var(--background-base, #050505);
  color: var(--text-secondary-dark-bg, #A1A1AA);
  min-height: 60vh;
}

.disclaimer-section .disclaimer-nav-wrapper {
  top: 100px;
}

.disclaimer-section .disclaimer-nav-card {
  background-color: var(--surface-card, #111113);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(20px);
}

.disclaimer-section .disclaimer-nav-title {
  font-family: var(--font-heading, 'Syne', sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary-dark-bg, #FAFAFA);
  letter-spacing: -0.02em;
}

.disclaimer-section .disclaimer-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: var(--text-secondary-dark-bg, #A1A1AA);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.disclaimer-section .disclaimer-nav-link:hover {
  color: var(--text-primary-dark-bg, #FAFAFA);
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.disclaimer-section .disclaimer-nav-link.active {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  font-weight: 600;
}

.disclaimer-section .disclaimer-link-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.disclaimer-section .disclaimer-content-card {
  background-color: var(--surface-card, #111113);
  border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
}

.disclaimer-section .disclaimer-badge {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E4E4E7;
}

.disclaimer-section .disclaimer-meta {
  font-size: 0.8125rem;
  color: var(--text-muted-dark-bg, #71717A);
}

.disclaimer-section .disclaimer-main-title {
  font-family: var(--font-heading, 'Syne', sans-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: var(--text-primary-dark-bg, #FAFAFA);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.disclaimer-section .disclaimer-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #D4D4D8;
}

.disclaimer-section .disclaimer-num-badge {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.75rem;
  font-weight: 600;
  color: #A1A1AA;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.disclaimer-section .disclaimer-section-title {
  font-family: var(--font-heading, 'Syne', sans-serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--text-primary-dark-bg, #FAFAFA);
  letter-spacing: -0.02em;
}

.disclaimer-section .disclaimer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary-dark-bg, #A1A1AA);
}

.disclaimer-section .disclaimer-callout {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.disclaimer-section .disclaimer-callout-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FAFAFA;
}

.disclaimer-section .disclaimer-callout-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #A1A1AA;
}

.disclaimer-section .disclaimer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-secondary-dark-bg, #A1A1AA);
  font-size: 0.95rem;
  line-height: 1.6;
}

.disclaimer-section .disclaimer-contact-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.disclaimer-section .disclaimer-contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #71717A;
  margin-bottom: 0.25rem;
}

.disclaimer-section .disclaimer-contact-value {
  font-size: 0.95rem;
  color: #FAFAFA;
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: break-word;
}

.disclaimer-section .disclaimer-footer-note {
  font-size: 0.875rem;
}

.disclaimer-section .disclaimer-btn-pill {
  display: inline-block;
  padding: 0.5rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #E4E4E7;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  transition: all 0.25s ease;
}

.disclaimer-section .disclaimer-btn-pill:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  .disclaimer-section .disclaimer-content-card {
    padding: 1.5rem !important;
  }
  .disclaimer-section .disclaimer-main-title {
    font-size: 1.35rem;
  }
  .disclaimer-section .disclaimer-section-title {
    font-size: 1.05rem;
  }
  .disclaimer-section .disclaimer-action-footer {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

/* ===== PAGE: cookies ===== */
.cookies-content { background-color: #050505; color: #A1A1AA; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
.cookies-content__header { border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 2rem; }
.cookies-content__badge { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #E4E4E7; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); padding: 0.35rem 0.85rem; border-radius: 100px; }
.cookies-content__title { font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: #FAFAFA; line-height: 1.15; letter-spacing: -0.03em; }
.cookies-content__lead { font-size: 1.125rem; line-height: 1.65; color: #A1A1AA; }
.cookies-content__panel { background: #111113; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 16px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7); }
.cookies-content__panel-title { color: #FAFAFA; font-family: 'Syne', sans-serif; font-weight: 700; }
.cookies-content__panel-desc { color: #71717A; font-size: 0.875rem; }
.cookies-content__card { background: rgba(20, 20, 22, 0.6); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.cookies-content__card:hover { border-color: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }
.cookies-content__card-label { font-weight: 600; color: #FAFAFA; font-size: 0.95rem; }
.cookies-content__card-text { font-size: 0.8125rem; color: #71717A; line-height: 1.45; }
.cookies-content__badge-locked { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: #A1A1AA; background: rgba(255, 255, 255, 0.05); padding: 0.2rem 0.5rem; border-radius: 4px; }
.cookies-content .form-check-input { background-color: #27272A; border-color: rgba(255, 255, 255, 0.2); cursor: pointer; }
.cookies-content .form-check-input:checked { background-color: #FFFFFF; border-color: #FFFFFF; }
.cookies-content .form-check-input:focus { border-color: #FFFFFF; box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.15); }
.cookies-content__btn-save { background: #FFFFFF; color: #09090B; font-weight: 600; font-size: 0.875rem; border: 1px solid #FFFFFF; border-radius: 100px; padding: 0.7rem 1.6rem; cursor: pointer; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); white-space: nowrap; }
.cookies-content__btn-save:hover { background: #E4E4E7; transform: translateY(-2px); box-shadow: 0 0 25px rgba(255, 255, 255, 0.25); }
.cookies-content__status { display: flex; align-items: center; gap: 0.5rem; color: #FAFAFA; font-size: 0.875rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 8px; padding: 0.75rem 1rem; }
.cookies-content__status svg { color: #FFFFFF; flex-shrink: 0; }
.cookies-content__subtitle { font-family: 'Syne', sans-serif; font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; color: #FAFAFA; line-height: 1.25; }
.cookies-content__text { color: #A1A1AA; font-size: 1rem; line-height: 1.65; margin-bottom: 1rem; }
.cookies-content__list { padding-left: 1.25rem; color: #A1A1AA; line-height: 1.6; }
.cookies-content__list li strong { color: #FAFAFA; }
.cookies-content__table { color: #A1A1AA; background: transparent; border-color: rgba(255, 255, 255, 0.08); margin-bottom: 0; }
.cookies-content__table thead th { color: #FAFAFA; font-family: 'Syne', sans-serif; font-size: 0.875rem; border-bottom: 1px solid rgba(255, 255, 255, 0.16); background: transparent; padding: 0.85rem 1rem; }
.cookies-content__table tbody td { border-bottom: 1px solid rgba(255, 255, 255, 0.06); background: transparent; padding: 0.85rem 1rem; font-size: 0.9rem; color: #FAFAFA; }
.cookies-content__table code { font-family: 'JetBrains Mono', monospace; color: #FAFAFA; background: rgba(255, 255, 255, 0.06); padding: 0.2rem 0.4rem; border-radius: 4px; font-size: 0.8125rem; }
.cookies-content__link { color: #FFFFFF; text-decoration: underline; text-underline-offset: 4px; transition: opacity 0.2s ease; }
.cookies-content__link:hover { color: #E4E4E7; opacity: 0.8; }

.monolith-comment-card {
    background-color: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    color: #FAFAFA;
    backdrop-filter: blur(20px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.monolith-comment-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.03);
}

.monolith-avatar-wrapper {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.monolith-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.monolith-status-dot {
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #22C55E;
    border: 2px solid #111113;
    border-radius: 50%;
}

.monolith-author-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FAFAFA;
    letter-spacing: -0.015em;
}

.monolith-role-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    color: #E4E4E7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.monolith-verified-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: #A1A1AA;
}

.monolith-verified-badge svg {
    color: #FFFFFF;
}

.monolith-timestamp {
    font-size: 0.8125rem;
    color: #71717A;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.monolith-rating-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
}

.monolith-rating-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #71717A;
    letter-spacing: 0.05em;
}

.monolith-rating-score {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.875rem;
    color: #FFFFFF;
}

.monolith-comment-heading {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.monolith-comment-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.975rem;
    line-height: 1.65;
    color: #D4D4D8;
}

.border-top-monolith {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.monolith-action-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #A1A1AA;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.monolith-action-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.monolith-action-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.monolith-counter {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #A1A1AA;
}

.monolith-device-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #71717A;
}

.monolith-reply-wrapper {
    position: relative;
    margin-top: 1rem;
}

.monolith-reply-thread-line {
    position: absolute;
    left: 0;
    top: -1rem;
    bottom: 1.5rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 2px;
}

.monolith-reply-card {
    background: #0C0C0D;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 2px solid #FFFFFF;
    border-radius: 12px;
    padding: 1.5rem;
    color: #FAFAFA;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.monolith-reply-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    border-left-color: #FFFFFF;
    background: #141416;
}

.monolith-reply-avatar-wrapper {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.monolith-reply-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.monolith-reply-author {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.monolith-reply-dev-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    background: #FFFFFF;
    color: #09090B;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

.monolith-reply-timestamp {
    font-size: 0.75rem;
    color: #71717A;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.monolith-official-check {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #E4E4E7;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
}

.monolith-reply-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #A1A1AA;
}

.monolith-reply-action-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #71717A;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.monolith-reply-action-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #FAFAFA;
}


/* ===== PAGE TEMPLATE: catalog ===== */
body.novaplay-theme {
    background-color: #050505;
    color: #FAFAFA;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.site-header-monolith {
    background-color: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

.site-header-monolith .site-header-monolith__container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.site-header-monolith .site-header-monolith__brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.site-header-monolith .site-header-monolith__logo-img {
    max-width: 44px;
    max-height: 44px;
    height: auto;
    object-fit: contain;
}

.site-header-monolith .site-header-monolith__brand-title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #FAFAFA;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.site-header-monolith .site-header-monolith__toggler {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background-color: #0C0C0D;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    box-shadow: none;
}

.site-header-monolith .site-header-monolith__toggler:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.32);
    outline: none;
}

.site-header-monolith .site-header-monolith__burger-icon {
    width: 24px;
    height: 24px;
    stroke: #FAFAFA;
}

.site-header-monolith .site-header-monolith__nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #A1A1AA;
    padding: 0.5rem 1rem;
    transition: color 0.25s ease;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.site-header-monolith .site-header-monolith__nav-link:hover,
.site-header-monolith .site-header-monolith__nav-link:focus,
.site-header-monolith .site-header-monolith__nav-link.active {
    color: #FFFFFF;
}

.site-header-monolith .site-header-monolith__btn-cta {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #09090B;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    padding: 0.55rem 1.4rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.site-header-monolith .site-header-monolith__btn-cta:hover {
    background-color: #E4E4E7;
    color: #09090B;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

@media (min-width: 992px) {
    .site-header-monolith .site-header-monolith__collapse {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .site-header-monolith .site-header-monolith__nav-left {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-start;
    }

    .site-header-monolith .site-header-monolith__nav-right {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
    }

    .site-header-monolith .site-header-monolith__brand--center {
        flex: 0 0 auto;
        margin: 0 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .site-header-monolith .site-header-monolith__collapse {
        background-color: #0C0C0D;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 1.25rem;
        margin-top: 0.75rem;
    }

    .site-header-monolith .site-header-monolith__nav-item {
        margin-bottom: 0.25rem;
    }

    .site-header-monolith .site-header-monolith__nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }

    .site-header-monolith .site-header-monolith__cta-item {
        margin-top: 0.75rem;
    }

    .site-header-monolith .site-header-monolith__btn-cta {
        width: 100%;
    }
}

.nova-game-detail {
    background-color: #050505;
    min-height: 80vh;
}

.nova-game-detail .nova-game-detail__hero {
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06) 0%, rgba(5, 5, 5, 0) 75%), #060913;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nova-game-detail .nova-game-detail__breadcrumb-nav {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
}

.nova-game-detail .nova-game-detail__breadcrumb-link {
    color: #A1A1AA;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nova-game-detail .nova-game-detail__breadcrumb-link:hover {
    color: #FFFFFF;
}

.nova-game-detail .nova-game-detail__breadcrumb-separator {
    color: #71717A;
}

.nova-game-detail .nova-game-detail__breadcrumb-item.active {
    color: #FAFAFA;
    font-weight: 500;
}

.nova-game-detail .nova-game-detail__badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #FAFAFA;
}

.nova-game-detail .nova-game-detail__badge--subtle {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
    color: #A1A1AA;
}

.nova-game-detail .nova-game-detail__hero-title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: #FAFAFA;
    letter-spacing: -0.03em;
    hyphens: auto;
}

.nova-game-detail .nova-game-detail__hero-lead {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #A1A1AA;
    max-width: 620px;
}

.nova-game-detail .nova-game-detail__quick-metrics {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nova-game-detail .nova-game-detail__metric-label {
    font-size: 0.75rem;
    color: #71717A;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: 'JetBrains Mono', monospace;
}

.nova-game-detail .nova-game-detail__metric-score {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #FAFAFA;
}

.nova-game-detail .nova-game-detail__metric-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #E4E4E7;
}

.nova-game-detail .nova-game-detail__metric-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

.nova-game-detail .nova-game-detail__btn-primary {
    background: #FFFFFF;
    color: #09090B;
    font-weight: 600;
    padding: 0.85rem 1.85rem;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9375rem;
}

.nova-game-detail .nova-game-detail__btn-primary:hover {
    background: #E4E4E7;
    color: #000000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.nova-game-detail .nova-game-detail__btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #FAFAFA;
    font-weight: 500;
    padding: 0.85rem 1.85rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9375rem;
}

.nova-game-detail .nova-game-detail__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
}

.nova-game-detail .nova-game-detail__featured-frame {
    border-radius: 18px;
    background: #0E1220;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.nova-game-detail .nova-game-detail__img-wrapper {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.nova-game-detail .nova-game-detail__cover-img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.nova-game-detail .nova-game-detail__frame-caption {
    background-color: #0A0D17;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    color: #A1A1AA;
    font-family: 'JetBrains Mono', monospace;
}

.nova-game-detail .nova-game-detail__article-box,
.nova-game-detail .nova-game-detail__reviews-section,
.nova-game-detail .nova-game-detail__side-card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.nova-game-detail .nova-game-detail__section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: #FAFAFA;
    line-height: 1.25;
}

.nova-game-detail .nova-game-detail__section-desc {
    font-size: 0.9375rem;
    color: #A1A1AA;
}

.nova-game-detail .nova-game-detail__sub-heading {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FAFAFA;
}

.nova-game-detail .nova-game-detail__paragraph {
    font-size: 1rem;
    line-height: 1.65;
    color: #A1A1AA;
    margin-bottom: 1.25rem;
}

.nova-game-detail .nova-game-detail__feature-list {
    list-style: none;
    padding-left: 0;
    margin: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nova-game-detail .nova-game-detail__feature-item {
    position: relative;
    padding-left: 1.5rem;
    color: #E4E4E7;
    font-size: 0.95rem;
    line-height: 1.55;
}

.nova-game-detail .nova-game-detail__feature-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.nova-game-detail .nova-game-detail__spec-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

.nova-game-detail .nova-game-detail__spec-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #71717A;
    display: block;
    margin-bottom: 0.25rem;
}

.nova-game-detail .nova-game-detail__spec-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FAFAFA;
}

.nova-game-detail .monolith-comment-card {
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
}

.nova-game-detail .monolith-avatar-wrapper,
.nova-game-detail .monolith-reply-avatar-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.nova-game-detail .monolith-avatar,
.nova-game-detail .monolith-reply-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nova-game-detail .monolith-status-dot {
    width: 10px;
    height: 10px;
    background-color: #22C55E;
    border: 2px solid #141416;
    border-radius: 50%;
    bottom: 0;
    right: 0;
}

.nova-game-detail .monolith-author-name {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FAFAFA;
}

.nova-game-detail .monolith-role-badge,
.nova-game-detail .monolith-reply-dev-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

.nova-game-detail .monolith-verified-badge {
    font-size: 0.75rem;
    color: #A1A1AA;
}

.nova-game-detail .monolith-timestamp,
.nova-game-detail .monolith-reply-timestamp {
    font-size: 0.75rem;
    color: #71717A;
    font-family: 'JetBrains Mono', monospace;
}

.nova-game-detail .monolith-rating-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.25rem 0.75rem;
}

.nova-game-detail .monolith-rating-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: #71717A;
}

.nova-game-detail .monolith-rating-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FAFAFA;
}

.nova-game-detail .monolith-comment-heading {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FAFAFA;
}

.nova-game-detail .monolith-comment-text,
.nova-game-detail .monolith-reply-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #A1A1AA;
}

.nova-game-detail .border-top-monolith {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nova-game-detail .monolith-action-btn,
.nova-game-detail .monolith-reply-action-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #A1A1AA;
    font-size: 0.8125rem;
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nova-game-detail .monolith-action-btn:hover,
.nova-game-detail .monolith-reply-action-btn:hover,
.nova-game-detail .monolith-action-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.25);
}

.nova-game-detail .monolith-device-tag {
    font-size: 0.75rem;
    color: #71717A;
    font-family: 'JetBrains Mono', monospace;
}

.nova-game-detail .monolith-reply-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.nova-game-detail .monolith-reply-card {
    background: #0E0E10;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.25rem;
}

.nova-game-detail .monolith-reply-author {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #FAFAFA;
}

.nova-game-detail .monolith-official-check {
    font-size: 0.75rem;
    color: #FFFFFF;
}

.nova-game-detail .nova-game-detail__form-card {
    background: #0C0C0D;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.nova-game-detail .nova-game-detail__form-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #FAFAFA;
}

.nova-game-detail .nova-game-detail__form-desc {
    font-size: 0.875rem;
    color: #A1A1AA;
}

.nova-game-detail .nova-game-detail__notice {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #4ADE80;
    font-size: 0.875rem;
}

.nova-game-detail .nova-game-detail__notice-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.nova-game-detail .nova-game-detail__label {
    font-size: 0.8125rem;
    color: #E4E4E7;
    font-weight: 500;
}

.nova-game-detail .nova-game-detail__input,
.nova-game-detail .nova-game-detail__select,
.nova-game-detail .nova-game-detail__textarea {
    background-color: #141416;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #FAFAFA;
    border-radius: 8px;
    font-size: 0.9375rem;
    padding: 0.65rem 0.85rem;
}

.nova-game-detail .nova-game-detail__input:focus,
.nova-game-detail .nova-game-detail__select:focus,
.nova-game-detail .nova-game-detail__textarea:focus {
    background-color: #18181B;
    border-color: rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    outline: none;
}

.nova-game-detail .nova-game-detail__input::placeholder,
.nova-game-detail .nova-game-detail__textarea::placeholder {
    color: #71717A;
    opacity: 1;
}

.nova-game-detail .nova-game-detail__btn-submit {
    background: #FFFFFF;
    color: #09090B;
    font-weight: 600;
    padding: 0.75rem 1.6rem;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    cursor: pointer;
}

.nova-game-detail .nova-game-detail__btn-submit:hover {
    background: #E4E4E7;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.nova-game-detail .nova-game-detail__side-heading {
    font-family: 'Syne', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FAFAFA;
}

.nova-game-detail .nova-game-detail__side-rating-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.nova-game-detail .nova-game-detail__side-rating-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #71717A;
    text-transform: uppercase;
    display: block;
}

.nova-game-detail .nova-game-detail__side-rating-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FAFAFA;
    display: block;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.nova-game-detail .nova-game-detail__side-rating-text {
    font-size: 0.75rem;
    color: #A1A1AA;
    line-height: 1.4;
}

.nova-game-detail .text-secondary-monolith {
    color: #71717A;
    font-size: 0.8125rem;
}

.nova-game-detail .text-light-monolith {
    color: #FAFAFA;
    font-size: 0.8125rem;
    font-weight: 600;
}

.nova-game-detail .border-bottom-subtle {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nova-game-detail .nova-game-detail__side-desc {
    font-size: 0.875rem;
    color: #A1A1AA;
    line-height: 1.55;
}

.nova-game-detail .nova-game-detail__side-link {
    color: #FAFAFA;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nova-game-detail .nova-game-detail__side-link:hover {
    color: #A1A1AA;
}

.site-footer-monolith {
    background-color: #050505;
    color: #A1A1AA;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.site-footer-monolith::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.site-footer-monolith .site-footer-monolith__brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer-monolith .site-footer-monolith__brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.site-footer-monolith .site-footer-monolith__logo {
    width: 44px;
    height: 44px;
    max-width: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.15));
}

.site-footer-monolith .site-footer-monolith__brand-name {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #FAFAFA;
}

.site-footer-monolith .site-footer-monolith__brand-desc {
    color: #A1A1AA;
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 340px;
}

.site-footer-monolith .site-footer-monolith__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.site-footer-monolith .site-footer-monolith__badge-icon {
    width: 1rem;
    height: 1rem;
    color: #FAFAFA;
    flex-shrink: 0;
}

.site-footer-monolith .site-footer-monolith__badge-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: #E4E4E7;
    letter-spacing: 0.02em;
}

.site-footer-monolith .site-footer-monolith__column-title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FAFAFA;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.site-footer-monolith .site-footer-monolith__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.site-footer-monolith .site-footer-monolith__nav-link {
    color: #A1A1AA;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.site-footer-monolith .site-footer-monolith__nav-link:hover,
.site-footer-monolith .site-footer-monolith__nav-link:focus {
    color: #FFFFFF;
    transform: translateX(4px);
}

.site-footer-monolith .site-footer-monolith__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.site-footer-monolith .site-footer-monolith__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.site-footer-monolith .site-footer-monolith__contact-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #141416;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.site-footer-monolith .site-footer-monolith__contact-icon {
    width: 16px;
    height: 16px;
    color: #FAFAFA;
}

.site-footer-monolith .site-footer-monolith__contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.site-footer-monolith .site-footer-monolith__contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #71717A;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.site-footer-monolith .site-footer-monolith__contact-value {
    color: #E4E4E7;
    font-size: 0.9375rem;
    word-break: break-word;
}

.site-footer-monolith .site-footer-monolith__contact-link {
    color: #FAFAFA;
    text-decoration: none;
    font-size: 0.9375rem;
    word-break: break-word;
    transition: color 0.25s ease;
}

.site-footer-monolith .site-footer-monolith__contact-link:hover,
.site-footer-monolith .site-footer-monolith__contact-link:focus {
    color: #FFFFFF;
    text-decoration: underline;
}

.site-footer-monolith .site-footer-monolith__contact-link--wa {
    font-weight: 500;
}

.site-footer-monolith .site-footer-monolith__bottom-bar {
    padding-top: 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-monolith .site-footer-monolith__bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: flex-start;
}

.site-footer-monolith .site-footer-monolith__copyright {
    font-size: 0.875rem;
    color: #A1A1AA;
    margin: 0;
}

.site-footer-monolith .site-footer-monolith__disclaimer-note {
    font-size: 0.8125rem;
    color: #71717A;
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
}

@media (min-width: 768px) {
    .site-footer-monolith {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .site-footer-monolith .site-footer-monolith__bottom-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 767.98px) {
    .nova-game-detail .nova-game-detail__hero-title {
        font-size: 1.125rem;
    }

    .nova-game-detail .nova-game-detail__hero-lead {
        font-size: 0.875rem;
    }

    .nova-game-detail .nova-game-detail__section-title {
        font-size: 1rem;
    }

    .nova-game-detail .nova-game-detail__sub-heading {
        font-size: 0.875rem;
    }

    .site-footer-monolith {
        padding-top: 4rem;
        padding-bottom: 2.5rem;
    }

    .site-footer-monolith .site-footer-monolith__column-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        hyphens: auto;
    }

    .site-footer-monolith .site-footer-monolith__brand-desc {
        max-width: 100%;
    }
}

/* ===== PAGE TEMPLATE: genres ===== */
.site-header-monolith {
    background-color: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

.site-header-monolith .site-header-monolith__container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.site-header-monolith .site-header-monolith__brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.site-header-monolith .site-header-monolith__logo-img {
    max-width: 44px;
    max-height: 44px;
    height: auto;
    object-fit: contain;
}

.site-header-monolith .site-header-monolith__brand-title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #FAFAFA;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.site-header-monolith .site-header-monolith__toggler {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background-color: #0C0C0D;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    box-shadow: none;
}

.site-header-monolith .site-header-monolith__toggler:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.32);
    outline: none;
}

.site-header-monolith .site-header-monolith__burger-icon {
    width: 24px;
    height: 24px;
    stroke: #FAFAFA;
}

.site-header-monolith .site-header-monolith__nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #A1A1AA;
    padding: 0.5rem 1rem;
    transition: color 0.25s ease;
    letter-spacing: -0.01em;
}

.site-header-monolith .site-header-monolith__nav-link:hover,
.site-header-monolith .site-header-monolith__nav-link:focus {
    color: #FFFFFF;
}

.site-header-monolith .site-header-monolith__btn-cta {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #09090B;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    padding: 0.55rem 1.4rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-header-monolith .site-header-monolith__btn-cta:hover {
    background-color: #E4E4E7;
    color: #09090B;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

@media (min-width: 992px) {
    .site-header-monolith .site-header-monolith__collapse {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .site-header-monolith .site-header-monolith__nav-left {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-start;
    }

    .site-header-monolith .site-header-monolith__nav-right {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
    }

    .site-header-monolith .site-header-monolith__brand--center {
        flex: 0 0 auto;
        margin: 0 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .site-header-monolith .site-header-monolith__collapse {
        background-color: #0C0C0D;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 1.25rem;
        margin-top: 0.75rem;
    }

    .site-header-monolith .site-header-monolith__nav-item {
        margin-bottom: 0.25rem;
    }

    .site-header-monolith .site-header-monolith__nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
    }

    .site-header-monolith .site-header-monolith__cta-item {
        margin-top: 0.75rem;
    }

    .site-header-monolith .site-header-monolith__btn-cta {
        width: 100%;
    }
}

.genre-detail-hero {
    background-color: #060913;
    color: #FAFAFA;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.genre-detail-breadcrumb__link {
    color: #A1A1AA;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

.genre-detail-breadcrumb__link:hover {
    color: #FFFFFF;
}

.genre-detail-breadcrumb__separator {
    color: #52525B;
    font-size: 0.8125rem;
}

.genre-detail-breadcrumb__current {
    color: #FAFAFA;
    font-size: 0.8125rem;
    font-weight: 600;
}

.genre-detail-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0.35rem 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #E4E4E7;
}

.genre-detail-hero__badge-icon {
    width: 1rem;
    height: 1rem;
    color: #FAFAFA;
}

.genre-detail-hero__title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: #FAFAFA;
    letter-spacing: -0.03em;
}

.genre-detail-hero__subtitle {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #A1A1AA;
}

.genre-detail-metric-card {
    background: rgba(17, 17, 19, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.genre-detail-metric-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #71717A;
    margin-bottom: 0.35rem;
}

.genre-detail-metric-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FAFAFA;
}

.genre-detail-media-card {
    background: #0E1220;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.genre-detail-media-frame {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.genre-detail-img {
    height: 100%;
    object-fit: cover;
    display: block;
}

.genre-detail-media-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #A1A1AA;
}

.genre-detail-media-verified {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    color: #E4E4E7;
}

.genre-detail-body {
    background-color: #050505;
    color: #A1A1AA;
}

.genre-detail-content-card,
.genre-detail-tabs-wrapper,
.genre-detail-form-card,
.genre-detail-side-card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.genre-detail-text-flow h1,
.genre-detail-text-flow h2,
.genre-detail-text-flow h3,
.genre-detail-text-flow h4 {
    color: #FAFAFA;
    font-family: 'Syne', sans-serif;
}

.genre-detail-section-title {
    font-size: 1.625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.genre-detail-subheading {
    font-size: 1.25rem;
    font-weight: 600;
}

.genre-detail-text-flow p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #A1A1AA;
    margin-bottom: 1rem;
}

.genre-detail-spec-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.genre-detail-spec-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FAFAFA;
}

.genre-detail-feature-list {
    color: #E4E4E7;
    font-size: 0.9rem;
    line-height: 1.7;
}

.genre-detail-tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #A1A1AA;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    transition: all 0.25s ease;
}

.genre-detail-tab-btn:hover {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.25);
}

.genre-detail-tab-btn.active {
    background: #FFFFFF;
    color: #09090B;
    border-color: #FFFFFF;
}

.genre-detail-tab-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FAFAFA;
}

.genre-detail-tab-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #A1A1AA;
}

.genre-detail-comments-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #FAFAFA;
}

.genre-detail-comments-subtitle {
    font-size: 0.875rem;
    color: #71717A;
}

.genre-detail-comments-count-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #E4E4E7;
}

.monolith-comment-card,
.monolith-reply-card {
    background: #111113;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
}

.monolith-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.monolith-status-dot {
    width: 10px;
    height: 10px;
    background-color: #22C55E;
    border: 2px solid #111113;
    border-radius: 50%;
    bottom: 0;
    right: 0;
}

.monolith-author-name {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FAFAFA;
}

.monolith-role-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.08);
    color: #E4E4E7;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

.monolith-verified-badge {
    font-size: 0.75rem;
    color: #E4E4E7;
}

.monolith-timestamp {
    font-size: 0.75rem;
    color: #71717A;
}

.monolith-rating-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.35rem 0.75rem;
}

.monolith-rating-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: #71717A;
}

.monolith-rating-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #FAFAFA;
}

.monolith-comment-heading {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FAFAFA;
}

.monolith-comment-text,
.monolith-reply-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #A1A1AA;
}

.border-top-monolith {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.monolith-action-btn,
.monolith-reply-action-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #A1A1AA;
    font-size: 0.8125rem;
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.monolith-action-btn:hover,
.monolith-reply-action-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #FAFAFA;
}

.monolith-action-btn.active {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.25);
}

.monolith-device-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #71717A;
}

.monolith-reply-wrapper {
    position: relative;
    border-left: 2px solid rgba(255, 255, 255, 0.08);
    margin-top: 1rem;
    padding-left: 1rem;
}

.monolith-reply-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.monolith-reply-author {
    font-family: 'Syne', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #FAFAFA;
}

.monolith-reply-dev-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.monolith-reply-timestamp {
    font-size: 0.7rem;
    color: #71717A;
}

.monolith-official-check {
    font-size: 0.75rem;
    color: #E4E4E7;
}

.genre-detail-form-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FAFAFA;
}

.genre-detail-form-sub {
    font-size: 0.875rem;
    color: #71717A;
}

.genre-detail-alert-box {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86EFAC;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

.genre-detail-form-label {
    font-size: 0.8125rem;
    color: #A1A1AA;
    font-weight: 500;
}

.genre-detail-input,
.genre-detail-select,
.genre-detail-textarea {
    background-color: #0C0C0D;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FAFAFA;
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
}

.genre-detail-input:focus,
.genre-detail-select:focus,
.genre-detail-textarea:focus {
    background-color: #141416;
    border-color: rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.genre-detail-input::placeholder,
.genre-detail-textarea::placeholder {
    color: #52525B;
    opacity: 1;
}

.genre-detail-submit-btn {
    background: #FFFFFF;
    color: #09090B;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    transition: all 0.3s ease;
}

.genre-detail-submit-btn:hover {
    background: #E4E4E7;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.genre-detail-side-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FAFAFA;
}

.genre-detail-side-link {
    color: #A1A1AA;
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.25s ease;
}

.genre-detail-side-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(3px);
}

.genre-detail-side-arrow {
    color: #71717A;
    transition: color 0.25s ease;
}

.genre-detail-side-link:hover .genre-detail-side-arrow {
    color: #FFFFFF;
}

.genre-detail-side-text {
    font-size: 0.875rem;
    color: #A1A1AA;
    line-height: 1.6;
}

.genre-detail-side-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #FAFAFA;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.7rem 1.25rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.genre-detail-side-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.35);
}

.site-footer-monolith {
    background-color: #050505;
    color: #A1A1AA;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.site-footer-monolith::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.site-footer-monolith__top-divider {
    display: none;
}

.site-footer-monolith__main-grid {
    margin-bottom: 3.5rem;
}

.site-footer-monolith__brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer-monolith__brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.site-footer-monolith__logo {
    width: 44px;
    height: 44px;
    max-width: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.15));
}

.site-footer-monolith__brand-name {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #FAFAFA;
}

.site-footer-monolith__brand-desc {
    color: #A1A1AA;
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 340px;
}

.site-footer-monolith__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.site-footer-monolith__badge-icon {
    width: 1rem;
    height: 1rem;
    color: #FAFAFA;
    flex-shrink: 0;
}

.site-footer-monolith__badge-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: #E4E4E7;
    letter-spacing: 0.02em;
}

.site-footer-monolith__column-title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FAFAFA;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.site-footer-monolith__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.site-footer-monolith__list-item {
    margin: 0;
    padding: 0;
}

.site-footer-monolith__nav-link {
    color: #A1A1AA;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.site-footer-monolith__nav-link:hover,
.site-footer-monolith__nav-link:focus {
    color: #FFFFFF;
    transform: translateX(4px);
}

.site-footer-monolith__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.site-footer-monolith__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.site-footer-monolith__contact-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #141416;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.site-footer-monolith__contact-icon {
    width: 16px;
    height: 16px;
    color: #FAFAFA;
}

.site-footer-monolith__contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.site-footer-monolith__contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #71717A;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.site-footer-monolith__contact-value {
    color: #E4E4E7;
    font-size: 0.9375rem;
    word-break: break-word;
}

.site-footer-monolith__contact-link {
    color: #FAFAFA;
    text-decoration: none;
    font-size: 0.9375rem;
    word-break: break-word;
    transition: color 0.25s ease;
}

.site-footer-monolith__contact-link:hover,
.site-footer-monolith__contact-link:focus {
    color: #FFFFFF;
    text-decoration: underline;
}

.site-footer-monolith__contact-link--wa {
    font-weight: 500;
}

.site-footer-monolith__bottom-bar {
    padding-top: 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-monolith__bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: flex-start;
}

.site-footer-monolith__copyright {
    font-size: 0.875rem;
    color: #A1A1AA;
    margin: 0;
}

.site-footer-monolith__disclaimer-note {
    font-size: 0.8125rem;
    color: #71717A;
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
}

@media (min-width: 768px) {
    .site-footer-monolith {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .site-footer-monolith__bottom-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 767.98px) {
    .genre-detail-hero__title {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .genre-detail-section-title {
        font-size: 1rem;
        hyphens: auto;
    }

    .genre-detail-subheading {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .site-footer-monolith {
        padding-top: 4rem;
        padding-bottom: 2.5rem;
    }

    .site-footer-monolith__column-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        hyphens: auto;
    }

    .site-footer-monolith__brand-desc {
        max-width: 100%;
    }
}

/* ===== PAGE TEMPLATE: reviews ===== */
body.novaplay-theme {
    background-color: #050505;
    color: #FAFAFA;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

.site-header-monolith {
    background-color: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%
}

.site-header-monolith .site-header-monolith__container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
}

.site-header-monolith .site-header-monolith__brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center
}

.site-header-monolith .site-header-monolith__logo-img {
    max-width: 44px;
    max-height: 44px;
    height: auto;
    object-fit: contain
}

.site-header-monolith .site-header-monolith__brand-title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #FAFAFA;
    letter-spacing: -0.03em;
    line-height: 1.2
}

.site-header-monolith .site-header-monolith__toggler {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background-color: #0C0C0D;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    box-shadow: none
}

.site-header-monolith .site-header-monolith__toggler:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.32);
    outline: none
}

.site-header-monolith .site-header-monolith__burger-icon {
    width: 24px;
    height: 24px;
    stroke: #FAFAFA
}

.site-header-monolith .site-header-monolith__nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #A1A1AA;
    padding: 0.5rem 1rem;
    transition: color 0.25s ease;
    letter-spacing: -0.01em
}

.site-header-monolith .site-header-monolith__nav-link:hover,
.site-header-monolith .site-header-monolith__nav-link:focus {
    color: #FFFFFF
}

.site-header-monolith .site-header-monolith__btn-cta {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #09090B;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    padding: 0.55rem 1.4rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.site-header-monolith .site-header-monolith__btn-cta:hover {
    background-color: #E4E4E7;
    color: #09090B;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25)
}

@media (min-width:992px) {
    .site-header-monolith .site-header-monolith__collapse {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%
    }

    .site-header-monolith .site-header-monolith__nav-left {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-start
    }

    .site-header-monolith .site-header-monolith__nav-right {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end
    }

    .site-header-monolith .site-header-monolith__brand--center {
        flex: 0 0 auto;
        margin: 0 1.5rem
    }
}

@media (max-width:991.98px) {
    .site-header-monolith .site-header-monolith__collapse {
        background-color: #0C0C0D;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 1.25rem;
        margin-top: 0.75rem
    }

    .site-header-monolith .site-header-monolith__nav-item {
        margin-bottom: 0.25rem
    }

    .site-header-monolith .site-header-monolith__nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem
    }

    .site-header-monolith .site-header-monolith__cta-item {
        margin-top: 0.75rem
    }

    .site-header-monolith .site-header-monolith__btn-cta {
        width: 100%
    }
}

.review-detail-page {
    background-color: #050505;
    min-height: 60vh;
}

.review-detail-hero {
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, rgba(5, 5, 5, 0) 70%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.review-detail-hero__crumb-link {
    color: #A1A1AA;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.review-detail-hero__crumb-link:hover {
    color: #FAFAFA;
}

.review-detail-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.35rem 0.85rem;
}

.badge-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #FAFAFA;
    text-transform: uppercase;
    font-weight: 500;
}

.badge-dot {
    width: 4px;
    height: 4px;
    background: #71717A;
    border-radius: 50%;
}

.badge-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #A1A1AA;
}

.review-detail-hero__title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: #FAFAFA;
    letter-spacing: -0.03em;
}

.review-detail-hero__lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #A1A1AA;
    max-width: 680px;
}

.author-avatar-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FAFAFA;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FAFAFA;
}

.author-role {
    font-size: 0.75rem;
    color: #71717A;
}

.review-summary-card {
    background: #0E1220;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
}

.review-summary-card__score-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
}

.score-label {
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    color: #A1A1AA;
    margin-bottom: 0.25rem;
}

.score-value {
    font-family: 'Syne', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.score-max {
    font-size: 0.8rem;
    color: #71717A;
    font-family: 'JetBrains Mono', monospace;
}

.metric-row {
    font-size: 0.85rem;
}

.metric-label {
    color: #A1A1AA;
}

.metric-val {
    font-family: 'JetBrains Mono', monospace;
    color: #FAFAFA;
    font-weight: 600;
}

.btn-primary-monolith {
    background: #FFFFFF;
    color: #09090B;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary-monolith:hover {
    background: #E4E4E7;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.btn-secondary-monolith {
    background: rgba(255, 255, 255, 0.05);
    color: #FAFAFA;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 100px;
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary-monolith:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
}

.single-feature-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0C0C0D;
}

.single-feature-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.image-caption-bar {
    padding: 0.5rem 1rem 0.75rem;
    font-size: 0.75rem;
}

.review-article-body .content-prose h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: #FAFAFA;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.review-article-body .content-prose h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 600;
    color: #FAFAFA;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.review-article-body .content-prose p {
    font-size: 1rem;
    line-height: 1.7;
    color: #D4D4D8;
    margin-bottom: 1.25rem;
}

.review-article-body .content-prose ul.article-highlights-list {
    list-style-type: square;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-article-body .content-prose ul.article-highlights-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #D4D4D8;
    margin-bottom: 0.5rem;
}

.verdict-block {
    background: #0C0C0E;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.verdict-column {
    border-radius: 12px;
}

.verdict-column--positives {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.verdict-column--negatives {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.verdict-column-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FAFAFA;
}

.verdict-list {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0;
}

.verdict-list li {
    font-size: 0.875rem;
    color: #A1A1AA;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.verdict-list li::before {
    content: "\2022" !important;
    position: absolute;
    left: 0;
    color: #FAFAFA;
    font-size: 1rem;
    line-height: 1;
}

.comments-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #FAFAFA;
}

.comments-count-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    color: #FAFAFA;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
}

.monolith-comment-card,
.monolith-reply-card {
    background: #0C0C0E;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
}

.monolith-avatar-wrapper .monolith-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.monolith-reply-avatar-wrapper .monolith-reply-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.monolith-status-dot {
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
    border: 2px solid #0C0C0E;
    bottom: 0;
    right: 0;
}

.monolith-author-name,
.monolith-reply-author {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #FAFAFA;
}

.monolith-role-badge,
.monolith-reply-dev-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.08);
    color: #E4E4E7;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    letter-spacing: 0.03em;
}

.monolith-verified-badge,
.monolith-official-check {
    font-size: 0.75rem;
    color: #A1A1AA;
}

.monolith-timestamp,
.monolith-reply-timestamp {
    font-size: 0.75rem;
    color: #71717A;
    font-family: 'JetBrains Mono', monospace;
}

.monolith-rating-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.25rem 0.65rem;
}

.monolith-rating-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: #71717A;
}

.monolith-rating-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
}

.monolith-comment-heading {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #FAFAFA;
}

.monolith-comment-text,
.monolith-reply-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #D4D4D8;
}

.border-top-monolith {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.monolith-action-btn,
.monolith-reply-action-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: #A1A1AA;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
}

.monolith-action-btn:hover,
.monolith-reply-action-btn:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: #FAFAFA;
}

.monolith-action-btn.active,
.monolith-reply-action-btn.active {
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.monolith-device-tag {
    font-size: 0.75rem;
    color: #71717A;
    font-family: 'JetBrains Mono', monospace;
}

.monolith-reply-wrapper {
    position: relative;
    margin-top: -0.75rem;
    margin-bottom: 1.5rem;
}

.monolith-reply-thread-line {
    position: absolute;
    left: -1rem;
    top: -1rem;
    bottom: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.comment-form-block {
    background: #0E1017;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.comment-form-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #FAFAFA;
}

.comment-form-desc {
    font-size: 0.85rem;
    color: #A1A1AA;
}

.form-label-monolith {
    font-size: 0.8rem;
    font-weight: 500;
    color: #D4D4D8;
    margin-bottom: 0.35rem;
}

.form-control-monolith {
    background: #060608;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FAFAFA;
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-control-monolith:focus {
    border-color: rgba(255, 255, 255, 0.35);
    background: #09090C;
    color: #FAFAFA;
}

.form-control-monolith::placeholder {
    color: #71717A;
    opacity: 1;
}

.btn-rate {
    background: #060608;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #A1A1AA;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-rate:hover {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-rate.active {
    background: #FFFFFF;
    color: #09090B;
    border-color: #FFFFFF;
}

.comment-status-notice {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86EFAC;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.sidebar-widget {
    background: #0C0C0E;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.sidebar-widget--cta {
    background: linear-gradient(180deg, #131724 0%, #0C0C0E 100%);
    border-color: rgba(255, 255, 255, 0.14);
}

.sidebar-widget-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FAFAFA;
}

.border-bottom-subtle {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-name {
    font-size: 0.8rem;
    color: #71717A;
}

.spec-val {
    font-size: 0.85rem;
    color: #FAFAFA;
    font-family: 'JetBrains Mono', monospace;
}

.sidebar-article-link {
    padding: 0.6rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}

.sidebar-article-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(3px);
}

.article-link-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #FAFAFA;
    line-height: 1.35;
}

.article-link-meta {
    font-size: 0.72rem;
    color: #71717A;
    font-family: 'JetBrains Mono', monospace;
}

.sidebar-cta-desc {
    font-size: 0.85rem;
    color: #A1A1AA;
    line-height: 1.5;
}

.site-footer-monolith {
    background-color: #050505;
    color: #A1A1AA;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.site-footer-monolith::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.site-footer-monolith__top-divider {
    display: none;
}

.site-footer-monolith__main-grid {
    margin-bottom: 3.5rem;
}

.site-footer-monolith__brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer-monolith__brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.site-footer-monolith__logo {
    width: 44px;
    height: 44px;
    max-width: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.15));
}

.site-footer-monolith__brand-name {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #FAFAFA;
}

.site-footer-monolith__brand-desc {
    color: #A1A1AA;
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 340px;
}

.site-footer-monolith__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
}

.site-footer-monolith__badge-icon {
    width: 1rem;
    height: 1rem;
    color: #FAFAFA;
    flex-shrink: 0;
}

.site-footer-monolith__badge-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: #E4E4E7;
    letter-spacing: 0.02em;
}

.site-footer-monolith__column-title {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #FAFAFA;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.site-footer-monolith__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.site-footer-monolith__list-item {
    margin: 0;
    padding: 0;
}

.site-footer-monolith__nav-link {
    color: #A1A1AA;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.site-footer-monolith__nav-link:hover,
.site-footer-monolith__nav-link:focus {
    color: #FFFFFF;
    transform: translateX(4px);
}

.site-footer-monolith__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.site-footer-monolith__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.site-footer-monolith__contact-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #141416;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.site-footer-monolith__contact-icon {
    width: 16px;
    height: 16px;
    color: #FAFAFA;
}

.site-footer-monolith__contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.site-footer-monolith__contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #71717A;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.site-footer-monolith__contact-value {
    color: #E4E4E7;
    font-size: 0.9375rem;
    word-break: break-word;
}

.site-footer-monolith__contact-link {
    color: #FAFAFA;
    text-decoration: none;
    font-size: 0.9375rem;
    word-break: break-word;
    transition: color 0.25s ease;
}

.site-footer-monolith__contact-link:hover,
.site-footer-monolith__contact-link:focus {
    color: #FFFFFF;
    text-decoration: underline;
}

.site-footer-monolith__contact-link--wa {
    font-weight: 500;
}

.site-footer-monolith__bottom-bar {
    padding-top: 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-monolith__bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: flex-start;
}

.site-footer-monolith__copyright {
    font-size: 0.875rem;
    color: #A1A1AA;
    margin: 0;
}

.site-footer-monolith__disclaimer-note {
    font-size: 0.8125rem;
    color: #71717A;
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
}

@media (min-width: 768px) {
    .site-footer-monolith {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .site-footer-monolith__bottom-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 767.98px) {
    .review-detail-hero__title {
        font-size: 1.125rem;
    }

    .review-detail-hero__lead {
        font-size: 0.875rem;
    }

    .review-article-body .content-prose h2 {
        font-size: 1rem;
    }

    .review-article-body .content-prose h3 {
        font-size: 0.875rem;
    }

    .comments-title {
        font-size: 1rem;
    }

    .site-footer-monolith {
        padding-top: 4rem;
        padding-bottom: 2.5rem;
    }

    .site-footer-monolith__column-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        hyphens: auto;
    }

    .site-footer-monolith__brand-desc {
        max-width: 100%;
    }
}
/* ===== Responsive fixes for policy pages ===== */
@media (max-width: 767.98px) {
    .nova-hero__title {
        font-size: 1rem !important;
    }

    .novaplay-privacy-main-title,
    .terms-main-title,
    .disclaimer-main-title,
    .cookies-content__title {
        font-size: 1.25rem !important;
    }

    .novaplay-privacy-lead,
    .terms-lead-text,
    .disclaimer-lead-text,
    .cookies-content__lead {
        font-size: 0.85rem !important;
    }

    .novaplay-privacy-nav-title,
    .terms-nav-title,
    .disclaimer-nav-title {
        font-size: 1rem !important;
    }
}

/* ===== Responsive fixes for reviews sidebar spec text ===== */
@media (max-width: 767.98px) {
    .sidebar-spec-item .spec-name {
        font-size: 0.7rem !important;
    }

    .sidebar-spec-item .spec-val {
        font-size: 0.72rem !important;
    }
}

/* ===== Global responsive text wrapping fixes ===== */
@media (max-width: 767.98px) {
    body.novaplay-theme {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    body.novaplay-theme h1,
    body.novaplay-theme h2,
    body.novaplay-theme h3,
    body.novaplay-theme h4,
    body.novaplay-theme h5,
    body.novaplay-theme h6 {
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    body.novaplay-theme p,
    body.novaplay-theme li,
    body.novaplay-theme span,
    body.novaplay-theme td,
    body.novaplay-theme th {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    body.novaplay-theme a {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .nova-hero__title,
    .novaplay-interactive-tour__title,
    .catalog-main-heading,
    .catalog-block__title,
    .team-monolith-heading,
    .reviews-results-heading,
    .novaplay-tariffs__title,
    .novaplay-objections .novaplay-heading,
    .genres-page-section__title,
    .comments-title,
    .review-article-title,
    .sidebar-widget-title {
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .novaplay-privacy-section p,
    .terms-section p,
    .disclaimer-section p,
    .cookies-content p,
    .cookies-content li,
    .review-article-body p,
    .review-article-body li {
        font-size: 0.875rem;
        line-height: 1.6;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .novaplay-privacy-section h2,
    .novaplay-privacy-section h3,
    .terms-section h2,
    .terms-section h3,
    .disclaimer-section h2,
    .disclaimer-section h3,
    .cookies-content h2,
    .cookies-content h3,
    .review-article-body h2,
    .review-article-body h3 {
        font-size: 1rem;
        hyphens: auto;
        -webkit-hyphens: auto;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .monolith-comment-text,
    .monolith-reply-text,
    .monolith-comment-heading,
    .monolith-reply-author,
    .monolith-author-name {
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    .nova-hero__lead,
    .novaplay-interactive-tour__lead,
    .catalog-lead-text,
    .catalog-block__lead,
    .team-monolith-lead,
    .reviews-results-lead,
    .novaplay-tariffs__disclaimer {
        font-size: 0.85rem;
        line-height: 1.55;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}
