:root {
    --primary: #00F0FF;
    --primary-hover: #38F5FF;
    --secondary: #7928CA;
    --secondary-hover: #8B3AE2;
    --accent: #FF0055;
    --accent-glow: rgba(255, 0, 85, 0.35);
    --bg-primary: #090D16;
    --bg-secondary: #0E1424;
    --bg-tertiary: #141C32;
    --surface-card: rgba(14, 20, 36, 0.75);
    --surface-glass: rgba(20, 28, 50, 0.55);
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(0, 240, 255, 0.25);
    --border-accent: rgba(121, 40, 202, 0.4);
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body.dark-theme {
    margin: 0;
    padding: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

a:hover {
    color: var(--primary-hover);
}

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

.font-mono {
    font-family: var(--font-mono);
}

/* ===== header ===== */
.main-header-block {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #090D16;
    border-bottom: 1px solid #141C32;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.main-header-block .main-header-navbar {
    padding: 0.75rem 0;
    background-color: #090D16;
}

.main-header-block .main-header-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
    transition: transform 0.25s ease;
}

.main-header-block .navbar-brand:hover .main-header-logo {
    transform: scale(1.05);
}

.main-header-block .main-header-brand-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #F8FAFC;
    text-transform: uppercase;
    line-height: 1;
}

.main-header-block .main-header-toggler {
    border: 1px solid #141C32;
    background-color: #0E1424;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    outline: none;
    box-shadow: none;
}

.main-header-block .main-header-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.4);
}

.main-header-block .main-header-toggler-icon {
    font-size: 1.6rem;
    color: #00F0FF;
    display: block;
}

.main-header-block .main-header-nav-list {
    gap: 0.25rem;
}

.main-header-block .main-header-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #94A3B8;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.main-header-block .main-header-link-icon {
    font-size: 1.1rem;
    color: #64748B;
    transition: color 0.2s ease;
}

.main-header-block .main-header-link:hover {
    color: #00F0FF;
    background-color: rgba(20, 28, 50, 0.7);
}

.main-header-block .main-header-link:hover .main-header-link-icon {
    color: #00F0FF;
}

.main-header-block .main-header-link.active {
    color: #F8FAFC;
    background-color: #141C32;
}

.main-header-block .main-header-link.active .main-header-link-icon {
    color: #00F0FF;
}

.main-header-block .main-header-cta-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #090D16;
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.35rem;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.main-header-block .main-header-cta-btn:hover {
    color: #090D16;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.6);
    background: linear-gradient(135deg, #38F5FF 0%, #00D2F7 100%);
}

.main-header-block .main-header-cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .main-header-block .navbar-collapse {
        background-color: #0E1424;
        border: 1px solid #141C32;
        border-radius: 12px;
        padding: 1rem;
        margin-top: 0.75rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .main-header-block .main-header-nav-list {
        gap: 0.4rem;
        margin-bottom: 1rem !important;
    }

    .main-header-block .main-header-link {
        width: 100%;
        padding: 0.65rem 0.85rem;
        font-size: 0.875rem;
    }

    .main-header-block .main-header-cta-btn {
        width: 100%;
        padding: 0.7rem 1rem;
    }

    .main-header-block .main-header-brand-title {
        font-size: 1.25rem;
    }
}

/* ===== hero ===== */
.hero-section-gaming {
    position: relative;
    background-color: #090D16;
    color: #F8FAFC;
    overflow: hidden;
    padding: 2.5rem 0 3.5rem;
    min-height: auto;
    display: flex;
    align-items: center
}

.hero-section-gaming .hero-glow-bg {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 20%, rgba(0, 240, 255, 0.14) 0%, rgba(121, 40, 202, 0.12) 40%, rgba(9, 13, 22, 0) 75%);
    pointer-events: none;
    z-index: 1
}

.hero-section-gaming .hero-media-wrapper {
    position: relative;
    width: 100%;
    padding: 0.5rem
}

.hero-section-gaming .hero-media-frame {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 240, 255, 0.15);
    background: #0E1424;
    transform: translateZ(0)
}

.hero-section-gaming .hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease
}

.hero-section-gaming .hero-media-frame:hover .hero-main-img {
    transform: scale(1.03)
}

.hero-section-gaming .hero-frame-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 13, 22, 0.05) 0%, rgba(9, 13, 22, 0.75) 100%);
    pointer-events: none
}

.hero-section-gaming .hero-floating-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(14, 20, 36, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5)
}

.hero-section-gaming .badge-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00F0FF 0%, #7928CA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090D16;
    font-size: 1.4rem;
    flex-shrink: 0
}

.hero-section-gaming .badge-title {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #F8FAFC;
    letter-spacing: 0.02em;
    line-height: 1.2
}

.hero-section-gaming .badge-sub {
    display: block;
    font-size: 0.78rem;
    color: #94A3B8;
    line-height: 1.2
}

.hero-section-gaming .hero-content-block {
    position: relative;
    z-index: 2
}

.hero-section-gaming .hero-label-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    margin-bottom: 1rem
}

.hero-section-gaming .hero-label-tag i {
    font-size: 1.1rem
}

.hero-section-gaming .hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: #F8FAFC;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    hyphens: auto
}

.hero-section-gaming .hero-lead-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 1.75rem;
    max-width: 540px
}

.hero-section-gaming .btn-hero-cta {
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    color: #090D16;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
}

.hero-section-gaming .btn-hero-cta:hover {
    background: linear-gradient(135deg, #38F5FF 0%, #00D2F7 100%);
    color: #090D16;
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(0, 240, 255, 0.55)
}

.hero-section-gaming .btn-hero-secondary {
    background: rgba(20, 28, 50, 0.85);
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
}

.hero-section-gaming .btn-hero-secondary:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: #00F0FF;
    color: #00F0FF
}

.hero-section-gaming .quick-feat-card {
    background: rgba(14, 20, 36, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    height: 100%
}

.hero-section-gaming .quick-feat-card i {
    font-size: 1.35rem;
    color: #00F0FF;
    flex-shrink: 0
}

.hero-section-gaming .quick-feat-card strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.88rem;
    color: #F8FAFC;
    line-height: 1.2
}

.hero-section-gaming .quick-feat-card span {
    font-size: 0.75rem;
    color: #64748B;
    line-height: 1.2;
    display: block
}

@media (max-width:767.98px) {
    .hero-section-gaming {
        padding: 1.75rem 0 2.5rem
    }

    .hero-section-gaming .hero-title {
        font-size: 18px !important;
        line-height: 1.25;
        margin-bottom: 0.75rem
    }

    .hero-section-gaming .hero-lead-text {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1.25rem
    }

    .hero-section-gaming .hero-media-frame {
        height: 250px;
        border-radius: 16px
    }

    .hero-section-gaming .badge-title {
        font-size: 0.85rem
    }

    .hero-section-gaming .badge-sub {
        font-size: 0.7rem
    }

    .hero-section-gaming .btn-hero-cta,
    .hero-section-gaming .btn-hero-secondary {
        font-size: 0.875rem;
        padding: 0.65rem 1rem
    }
}

/* ===== reviews-grid ===== */
.reviews-grid-section {
    background-color: #090D16;
    color: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.reviews-grid-section__badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
}

.reviews-grid-section__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #F8FAFC;
    letter-spacing: -0.01em;
}

.reviews-grid-section__subtitle {
    font-size: 0.875rem;
    color: #94A3B8;
}

.reviews-grid-card {
    background: rgba(14, 20, 36, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(12px);
}

.reviews-grid-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.15);
}

.reviews-grid-card__thumb-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #141C32;
}

.reviews-grid-card__thumb-link {
    display: block;
    width: 100%;
    height: 100%;
}

.reviews-grid-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.reviews-grid-card:hover .reviews-grid-card__image {
    transform: scale(1.05);
}

.reviews-grid-card__score-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(9, 13, 22, 0.88);
    border: 1px solid #FFB800;
    border-radius: 8px;
    padding: 0.25rem 0.55rem;
    display: flex;
    align-items: baseline;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.reviews-grid-card__score-val {
    color: #FFB800;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
}

.reviews-grid-card__score-max {
    color: #94A3B8;
    font-size: 0.7rem;
    font-weight: 500;
}

.reviews-grid-card__score-badge--upcoming {
    border-color: #00F0FF;
    align-items: center;
}

.reviews-grid-card__score-badge--upcoming .reviews-grid-card__score-val {
    color: #00F0FF;
    font-size: 0.95rem;
}

.reviews-grid-card__score-badge--upcoming .reviews-grid-card__score-max {
    color: #00F0FF;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.reviews-grid-card__body {
    padding: 1.25rem;
}

.reviews-grid-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #94A3B8;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reviews-grid-card__tag {
    display: inline-flex;
    align-items: center;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.reviews-grid-card__date {
    display: inline-flex;
    align-items: center;
    color: #94A3B8;
}

.reviews-grid-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    color: #F8FAFC;
}

.reviews-grid-card__title-link {
    color: #F8FAFC;
    text-decoration: none;
    transition: color 0.2s ease;
}

.reviews-grid-card__title-link:hover {
    color: #00F0FF;
}

.reviews-grid-card__summary {
    font-size: 0.85rem;
    line-height: 1.55;
    color: #94A3B8;
}

.reviews-grid-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 28, 50, 0.9);
    color: #F8FAFC;
    border: 1px solid rgba(0, 240, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-grid-card__btn:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: #00F0FF;
    color: #00F0FF;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
}

@media (max-width: 767.98px) {
    .reviews-grid-section__title {
        font-size: 1.25rem;
        hyphens: auto;
    }

    .reviews-grid-card__title {
        font-size: 0.95rem;
    }

    .reviews-grid-card__body {
        padding: 1rem;
    }
}

/* ===== genres-grid ===== */
.genres-grid-section {
    background-color: #090D16;
    position: relative;
    overflow: hidden
}

.genres-grid-section .genres-grid-badge {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 4px
}

.genres-grid-section .genres-grid-title {
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2
}

.genres-grid-section .genres-grid-subtitle {
    color: #94A3B8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 680px
}

.genres-grid-section .genres-filter-btn {
    background: rgba(20, 28, 50, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94A3B8;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1)
}

.genres-grid-section .genres-filter-btn:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: #00F0FF;
    color: #00F0FF
}

.genres-grid-section .genres-filter-btn.active {
    background: #7928CA;
    border-color: #A855F7;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(121, 40, 202, 0.45)
}

.genres-grid-section .genres-grid-card {
    background: rgba(14, 20, 36, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px)
}

.genres-grid-section .genres-grid-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.12)
}

.genres-grid-section .genres-card-media {
    overflow: hidden;
    background: #0E1424;
    height: 210px
}

.genres-grid-section .genres-grid-image-link {
    height: 100%;
    display: block;
    overflow: hidden
}

.genres-grid-section .genres-grid-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease
}

.genres-grid-section .genres-grid-card:hover .genres-grid-img {
    transform: scale(1.05)
}

.genres-grid-section .genres-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(9, 13, 22, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    backdrop-filter: blur(4px)
}

.genres-grid-section .genres-card-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3
}

.genres-grid-section .genres-grid-card-title-link {
    color: #F8FAFC;
    text-decoration: none;
    transition: color 0.2s ease
}

.genres-grid-section .genres-grid-card-title-link:hover {
    color: #00F0FF
}

.genres-grid-section .genres-card-text {
    color: #94A3B8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6
}

.genres-grid-section .genres-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.genres-grid-section .genres-grid-btn {
    background: rgba(20, 28, 50, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease
}

.genres-grid-section .genres-grid-btn i {
    font-size: 1.15rem;
    transition: transform 0.25s ease
}

.genres-grid-section .genres-grid-btn:hover {
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    color: #090D16;
    border-color: #00F0FF;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35)
}

.genres-grid-section .genres-grid-btn:hover i {
    transform: translateX(4px)
}

@media(max-width:767.98px) {
    .genres-grid-section .genres-grid-title {
        font-size: 16px;
        hyphens: auto
    }

    .genres-grid-section .genres-card-heading {
        font-size: 14px
    }

    .genres-grid-section .genres-card-media {
        height: 180px
    }

    .genres-grid-section .genres-filter-btn {
        font-size: 0.75rem;
        padding: 5px 12px
    }
}

/* ===== guides-grid ===== */
.guides-grid-block {
    background-color: #090d16;
    color: #f8fafc;
    position: relative;
    overflow: hidden
}

.guides-grid-block__badge {
    display: inline-flex;
    align-items: center;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #00f0ff;
    background: rgba(0, 240, 255, .1);
    border: 1px solid rgba(0, 240, 255, .25);
    padding: 4px 10px;
    border-radius: 6px
}

.guides-grid-block__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #f8fafc;
    letter-spacing: -.01em;
    text-transform: uppercase
}

.guides-grid-block__filter-btn {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #94a3b8;
    font-size: .875rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .25s ease
}

.guides-grid-block__filter-btn:hover {
    background: rgba(0, 240, 255, .15);
    border-color: #00f0ff;
    color: #00f0ff
}

.guides-grid-block__filter-btn.active {
    background: #7928ca;
    border-color: #a855f7;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(121, 40, 202, .5)
}

.guides-grid-block__card {
    background: rgba(14, 20, 36, .8);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s cubic-bezier(.16, 1, .3, 1), border-color .25s ease, box-shadow .25s ease
}

.guides-grid-block__card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, .4);
    box-shadow: 0 10px 25px rgba(0, 240, 255, .12)
}

.guides-grid-block__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #0e1424
}

.guides-grid-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease
}

.guides-grid-block__card:hover .guides-grid-block__img {
    transform: scale(1.05)
}

.guides-grid-block__tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(9, 13, 22, .85);
    border: 1px solid rgba(0, 240, 255, .3);
    color: #00f0ff;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px)
}

.guides-grid-block__body {
    padding: 20px
}

.guides-grid-block__meta {
    font-size: .8125rem;
    color: #94a3b8
}

.guides-grid-block__meta-item {
    display: inline-flex;
    align-items: center
}

.guides-grid-block__meta-item i {
    color: #00f0ff;
    font-size: .95rem
}

.guides-grid-block__card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0
}

.guides-grid-block__card-link {
    color: #f8fafc;
    text-decoration: none;
    transition: color .2s ease
}

.guides-grid-block__card-link:hover {
    color: #00f0ff
}

.guides-grid-block__desc {
    font-size: .9rem;
    color: #94a3b8;
    line-height: 1.55
}

.guides-grid-block__btn {
    background: rgba(20, 28, 50, .85);
    border: 1px solid rgba(0, 240, 255, .3);
    color: #f8fafc;
    font-size: .875rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .25s ease
}

.guides-grid-block__btn:hover {
    background: linear-gradient(135deg, #00f0ff 0%, #00b8d9 100%);
    border-color: #00f0ff;
    color: #090d16;
    box-shadow: 0 0 15px rgba(0, 240, 255, .4)
}

@media (max-width:767.98px) {
    .guides-grid-block__title {
        font-size: 16px;
        hyphens: auto
    }

    .guides-grid-block__card-title {
        font-size: 14px;
        hyphens: auto
    }
}

/* ===== press-mentions ===== */
.press-mentions-section {
    background-color: #090D16;
    position: relative;
    overflow: hidden;
}

.press-mentions-section .press-badge {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.press-mentions-section .press-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #F8FAFC;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.press-mentions-section .press-subtitle {
    color: #94A3B8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 680px;
}

.press-mentions-section .press-filter-btn {
    background: rgba(20, 28, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.press-mentions-section .press-filter-btn:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.4);
    color: #00F0FF;
}

.press-mentions-section .press-filter-btn.active {
    background: #7928CA;
    border-color: #A855F7;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(121, 40, 202, 0.5);
}

.press-mentions-section .press-card {
    background: rgba(14, 20, 36, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.press-mentions-section .press-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.15);
}

.press-mentions-section .press-source-tag {
    background: rgba(255, 0, 85, 0.12);
    border: 1px solid rgba(255, 0, 85, 0.3);
    color: #FF0055;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.725rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.press-mentions-section .press-year {
    color: #64748B;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
}

.press-mentions-section .press-quote-icon i {
    font-size: 2rem;
    color: rgba(0, 240, 255, 0.4);
}

.press-mentions-section .press-quote-text {
    color: #F8FAFC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    font-style: italic;
}

.press-mentions-section .border-top-custom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.press-mentions-section .press-source-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00F0FF;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.press-mentions-section .press-author-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
    line-height: 1.3;
}

.press-mentions-section .press-author-role {
    color: #94A3B8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.825rem;
    display: block;
}

.press-mentions-section .press-metrics-banner {
    background: linear-gradient(90deg, rgba(20, 28, 50, 0.85) 0%, rgba(14, 20, 36, 0.95) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
}

.press-mentions-section .metric-number {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00F0FF;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.press-mentions-section .metric-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    color: #94A3B8;
}

.press-mentions-section .metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767.98px) {
    .press-mentions-section .press-title {
        font-size: 1.25rem;
        hyphens: auto;
    }

    .press-mentions-section .press-author-name {
        font-size: 0.95rem;
    }

    .press-mentions-section .press-card {
        padding: 1.25rem;
    }

    .press-mentions-section .press-quote-text {
        font-size: 0.925rem;
    }

    .press-mentions-section .metric-number {
        font-size: 1.5rem;
    }
}

/* ===== team ===== */
.team-section {
    background-color: #090D16;
    position: relative;
    overflow: hidden
}

.team-section .team-badge {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 20px;
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    letter-spacing: 0.04em
}

.team-section .team-badge i {
    font-size: 1.1rem
}

.team-section .team-title {
    font-family: 'Rajdhani', sans-serif;
    color: #F8FAFC;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em
}

.team-section .team-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.65;
    max-width: 680px
}

.team-section .team-card {
    background: rgba(14, 20, 36, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease
}

.team-section .team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15)
}

.team-section .team-card-image-wrap {
    width: 100%;
    height: 280px;
    background: #0E1424;
    overflow: hidden
}

.team-section .team-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.team-section .team-card:hover .team-avatar {
    transform: scale(1.05)
}

.team-section .team-status-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px
}

.team-section .team-member-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #F8FAFC;
    letter-spacing: 0.01em;
    line-height: 1.3
}

.team-section .team-member-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #00F0FF;
    display: block
}

.team-section .team-member-bio {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #94A3B8;
    font-size: 0.9375rem;
    line-height: 1.6
}

.team-section .team-meta-list {
    border-color: rgba(255, 255, 255, 0.08) !important
}

.team-section .team-meta-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 6px
}

.team-section .team-meta-label i {
    color: #00F0FF;
    font-size: 1rem
}

.team-section .team-meta-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    color: #F8FAFC;
    font-weight: 500
}

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

    .team-section .team-member-name {
        font-size: 14px;
        hyphens: auto
    }

    .team-section .team-subtitle {
        font-size: 0.875rem
    }

    .team-section .team-card-image-wrap {
        height: 230px
    }
}

/* ===== interactive-tour ===== */
.interactive-tour-block {
    background-color: #090D16;
    color: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.interactive-tour-block .tour-badge {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 999px;
}

.interactive-tour-block .tour-badge-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00F0FF;
}

.interactive-tour-block .text-cyan {
    color: #00F0FF !important;
}

.interactive-tour-block .tour-main-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #F8FAFC;
}

.interactive-tour-block .tour-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #94A3B8;
}

.interactive-tour-block .tour-mode-nav {
    background: rgba(14, 20, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.interactive-tour-block .tour-tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #94A3B8;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.interactive-tour-block .tour-tab-btn:hover {
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.06);
}

.interactive-tour-block .tour-tab-btn.active {
    background: #7928CA;
    color: #FFFFFF;
    border-color: #A855F7;
    box-shadow: 0 0 15px rgba(121, 40, 202, 0.45);
}

.interactive-tour-block .tour-screen-wrapper {
    background: rgba(14, 20, 36, 0.75);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
}

.interactive-tour-block .tour-screen-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.interactive-tour-block .status-dot.live-dot {
    width: 10px;
    height: 10px;
    background-color: #00FF66;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #00FF66;
}

.interactive-tour-block .tour-screen-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #F8FAFC;
    letter-spacing: 0.02em;
}

.interactive-tour-block .tour-step-pill {
    background: rgba(20, 28, 50, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
}

.interactive-tour-block .tour-pane {
    display: none;
}

.interactive-tour-block .tour-pane.active {
    display: block;
}

.interactive-tour-block .tour-filter-chip {
    background: rgba(20, 28, 50, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.interactive-tour-block .tour-filter-chip:hover {
    border-color: #00F0FF;
    color: #F8FAFC;
}

.interactive-tour-block .tour-filter-chip.active {
    background: rgba(0, 240, 255, 0.15);
    border-color: #00F0FF;
    color: #00F0FF;
}

.interactive-tour-block .tour-hint-text {
    font-size: 0.8rem;
    color: #64748B;
}

.interactive-tour-block .tour-card {
    background: rgba(20, 28, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.interactive-tour-block .tour-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.12);
}

.interactive-tour-block .tour-img-link {
    display: block;
    background-color: #0E1424;
}

.interactive-tour-block .tour-thumb {
    height: 180px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.interactive-tour-block .tour-card:hover .tour-thumb {
    transform: scale(1.04);
}

.interactive-tour-block .tour-thumb-square {
    height: 160px;
    width: 100%;
    object-fit: cover;
}

.interactive-tour-block .tour-thumb-fixed {
    height: 130px;
    width: 200px;
    min-width: 200px;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .interactive-tour-block .tour-thumb-fixed {
        width: 100%;
        min-width: 100%;
        height: 150px;
    }
}

.interactive-tour-block .tour-score-badge {
    background: rgba(9, 13, 22, 0.85);
    border: 1px solid #FFB800;
    color: #FFB800;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
}

.interactive-tour-block .genre-count-pill {
    background: rgba(9, 13, 22, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: #00F0FF;
    font-size: 0.75rem;
    font-weight: 600;
}

.interactive-tour-block .tour-tag-pill {
    background: rgba(255, 255, 255, 0.05);
    color: #94A3B8;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.interactive-tour-block .tour-date-pill {
    color: #64748B;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
}

.interactive-tour-block .tour-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}

.interactive-tour-block .tour-card-title a {
    color: #F8FAFC;
    transition: color 0.2s ease;
}

.interactive-tour-block .tour-card-title a:hover {
    color: #00F0FF;
}

.interactive-tour-block .tour-card-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #94A3B8;
}

.interactive-tour-block .border-top-subtle {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.interactive-tour-block .tour-author {
    color: #64748B;
    font-size: 0.8rem;
}

.interactive-tour-block .text-light-muted {
    color: #94A3B8;
}

.interactive-tour-block .tour-action-btn {
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: #00F0FF;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.interactive-tour-block .tour-action-btn:hover {
    background: #00F0FF;
    color: #090D16;
    border-color: #00F0FF;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.interactive-tour-block .tour-panel-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #F8FAFC;
}

.interactive-tour-block .tour-guide-selector-box {
    background: rgba(20, 28, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.interactive-tour-block .tour-guide-btn {
    background: rgba(14, 20, 36, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.interactive-tour-block .tour-guide-btn:hover {
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(20, 28, 50, 0.9);
}

.interactive-tour-block .tour-guide-btn.active {
    border-color: #00F0FF;
    background: rgba(0, 240, 255, 0.08);
}

.interactive-tour-block .guide-tag-diff {
    background: #FF0055;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
}

.interactive-tour-block .tour-guide-display {
    background: rgba(20, 28, 50, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.interactive-tour-block .badge-meta {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #00F0FF;
}

.interactive-tour-block .guide-step-item {
    background: rgba(14, 20, 36, 0.6);
    border-left: 3px solid #7928CA;
}

.interactive-tour-block .step-num {
    background: #7928CA;
    color: #FFFFFF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.interactive-tour-block .tour-footer-strip {
    background: rgba(14, 20, 36, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.interactive-tour-block .tour-primary-btn {
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    color: #090D16;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    border: none;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    padding: 0.4rem 1.1rem;
}

.interactive-tour-block .tour-primary-btn:hover {
    color: #090D16;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
    transform: translateY(-1px);
}

.interactive-tour-block .tour-secondary-btn {
    background: rgba(20, 28, 50, 0.8);
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0.4rem 1.1rem;
}

.interactive-tour-block .tour-secondary-btn:hover {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    border-color: #00F0FF;
}

/* ===== newsletter ===== */
.newsletter-section {
    background-color: #090D16;
    position: relative;
    overflow: hidden;
}

.newsletter-section .newsletter-card {
    background: linear-gradient(135deg, rgba(14, 20, 36, 0.95) 0%, rgba(20, 28, 50, 0.85) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
}

.newsletter-section .newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00F0FF, #7928CA, transparent);
    border-radius: 16px 16px 0 0;
}

.newsletter-section .newsletter-badge {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 50px;
}

.newsletter-section .newsletter-title {
    font-family: 'Rajdhani', sans-serif;
    color: #F8FAFC;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.newsletter-section .newsletter-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #94A3B8;
    font-size: 1rem;
    line-height: 1.65;
}

.newsletter-section .benefit-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #F8FAFC;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.newsletter-section .benefit-icon {
    color: #00F0FF;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.newsletter-section .newsletter-form-wrapper {
    background: rgba(9, 13, 22, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.newsletter-section .form-header-title {
    font-family: 'Rajdhani', sans-serif;
    color: #F8FAFC;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.newsletter-section .header-icon {
    color: #7928CA;
    font-size: 1.35rem;
}

.newsletter-section .form-header-subtext {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #94A3B8;
    font-size: 0.875rem;
    line-height: 1.5;
}

.newsletter-section .input-group-cyber {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-section .input-icon {
    position: absolute;
    left: 14px;
    color: #64748B;
    font-size: 1.25rem;
    pointer-events: none;
    transition: color 0.25s ease;
}

.newsletter-section .cyber-input {
    width: 100%;
    height: 48px;
    padding: 10px 14px 10px 44px;
    background-color: #0E1424;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #F8FAFC;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.newsletter-section .cyber-input::placeholder {
    color: #64748B;
    opacity: 1;
}

.newsletter-section .cyber-input:focus {
    background-color: #141C32;
    border-color: #00F0FF;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.25);
}

.newsletter-section .cyber-input:focus+.input-icon,
.newsletter-section .input-group-cyber:focus-within .input-icon {
    color: #00F0FF;
}

.newsletter-section .cyber-input.is-invalid {
    border-color: #FF0055;
    box-shadow: 0 0 12px rgba(255, 0, 85, 0.25);
}

.newsletter-section .validation-message {
    display: none;
    color: #FF0055;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: 6px;
}

.newsletter-section .validation-message.is-visible {
    display: block;
}

.newsletter-section .custom-cyber-check .form-check-input {
    background-color: #0E1424;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.newsletter-section .custom-cyber-check .form-check-input:checked {
    background-color: #7928CA;
    border-color: #7928CA;
}

.newsletter-section .custom-cyber-check .form-check-input:focus {
    box-shadow: 0 0 8px rgba(121, 40, 202, 0.4);
    border-color: #7928CA;
}

.newsletter-section .check-label {
    color: #94A3B8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

.newsletter-section .privacy-link {
    color: #00F0FF;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.newsletter-section .privacy-link:hover {
    color: #38F5FF;
}

.newsletter-section .btn-cyber-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    color: #090D16;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
    cursor: pointer;
}

.newsletter-section .btn-cyber-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.6);
    background: linear-gradient(135deg, #38F5FF 0%, #00D2F7 100%);
    color: #090D16;
}

.newsletter-section .btn-cyber-primary:active {
    transform: translateY(0);
}

.newsletter-section .btn-icon {
    font-size: 1.35rem;
    transition: transform 0.2s ease;
}

.newsletter-section .btn-cyber-primary:hover .btn-icon {
    transform: translateX(4px);
}

.newsletter-section .form-footer-note {
    color: #64748B;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    line-height: 1.4;
    text-align: center;
}

.newsletter-section .note-icon {
    font-size: 0.875rem;
    color: #64748B;
}

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

    .newsletter-section .form-header-title {
        font-size: 14px;
    }

    .newsletter-section .newsletter-card {
        padding: 1.25rem;
    }

    .newsletter-section .newsletter-form-wrapper {
        padding: 1rem;
    }
}

/* ===== footer ===== */
.footer-cyber-block {
    background-color: #090D16;
    color: #F8FAFC;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-cyber-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00F0FF 50%, transparent 100%);
    pointer-events: none;
}

.footer-cyber-block__brand-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #00F0FF;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
}

.footer-cyber-block__brand-desc {
    color: #94A3B8;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-cyber-block__status-box {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 20, 36, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
}

.footer-cyber-block__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00FF66;
    box-shadow: 0 0 8px #00FF66;
}

.footer-cyber-block__status-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #F8FAFC;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-cyber-block__col-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #F8FAFC;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-cyber-block__col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #00F0FF;
}

.footer-cyber-block__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-cyber-block__menu-item {
    margin-bottom: 0.75rem;
}

.footer-cyber-block__menu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.25s ease, transform 0.25s ease;
    word-break: break-word;
}

.footer-cyber-block__menu-link i {
    font-size: 1.1rem;
    color: #00F0FF;
    transition: transform 0.25s ease;
}

.footer-cyber-block__menu-link:hover {
    color: #00F0FF;
    transform: translateX(3px);
}

.footer-cyber-block__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-cyber-block__contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(14, 20, 36, 0.6);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cyber-block__contact-icon {
    font-size: 1.25rem;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    flex-shrink: 0;
    line-height: 1;
}

.footer-cyber-block__contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-cyber-block__contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748B;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.footer-cyber-block__contact-value {
    font-size: 0.875rem;
    color: #F8FAFC;
    line-height: 1.4;
    word-break: break-word;
}

.footer-cyber-block__contact-link {
    font-size: 0.875rem;
    color: #F8FAFC;
    text-decoration: none;
    line-height: 1.4;
    word-break: break-word;
    transition: color 0.2s ease;
}

.footer-cyber-block__contact-link:hover {
    color: #00F0FF;
}

.footer-cyber-block__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.footer-cyber-block__copyright {
    font-size: 0.875rem;
    color: #94A3B8;
}

.footer-cyber-block__note {
    font-size: 0.8125rem;
    color: #64748B;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .footer-cyber-block__brand-title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .footer-cyber-block__col-heading {
        font-size: 1.125rem;
        hyphens: auto;
        margin-top: 0.5rem;
    }

    .footer-cyber-block__bottom {
        text-align: center;
    }
}

/* ===== PAGE: reviews ===== */
.reviews-list-section{background-color:#090D16;color:#F8FAFC;font-family:'Plus Jakarta Sans',sans-serif;position:relative;overflow:hidden}.reviews-list-section__badge{font-family:'JetBrains Mono',monospace;font-size:0.8rem;font-weight:700;color:#00F0FF;text-transform:uppercase;letter-spacing:0.1em;background:rgba(0,240,255,0.08);border:1px solid rgba(0,240,255,0.25);padding:6px 14px;border-radius:20px}.reviews-list-section__main-title{font-family:'Rajdhani',sans-serif;font-size:clamp(1.75rem,3.5vw,2.5rem);font-weight:700;color:#FFFFFF;text-transform:uppercase;letter-spacing:-0.01em;line-height:1.2}.reviews-list-section__lead{font-size:1.05rem;line-height:1.6;color:#94A3B8;max-width:760px}.reviews-list-section__control-bar{background:rgba(14,20,36,0.85);border:1px solid rgba(255,255,255,0.08);box-shadow:0 10px 30px rgba(0,0,0,0.35);backdrop-filter:blur(16px)}.reviews-list-section__search-box{position:relative}.reviews-list-section__search-icon{position:absolute;left:14px;top:50%;transform:translateY(-50%);color:#00F0FF;font-size:1.2rem;pointer-events:none}.reviews-list-section .form-control{background-color:#141C32;color:#F8FAFC;border:1px solid rgba(255,255,255,0.12);padding:10px 14px 10px 42px;border-radius:8px;font-size:0.95rem;transition:all 0.25s ease}.reviews-list-section .form-control:focus{background-color:#141C32;color:#F8FAFC;border-color:#00F0FF;box-shadow:0 0 12px rgba(0,240,255,0.3)}.reviews-list-section .form-control::placeholder{color:#64748B;opacity:1}.reviews-list-section .form-select{background-color:#141C32;color:#F8FAFC;border:1px solid rgba(255,255,255,0.12);padding:10px 14px;border-radius:8px;font-size:0.95rem;transition:all 0.25s ease}.reviews-list-section .form-select:focus{background-color:#141C32;color:#F8FAFC;border-color:#00F0FF;box-shadow:0 0 12px rgba(0,240,255,0.3)}.reviews-list-section .form-select option{background-color:#0E1424;color:#F8FAFC}.reviews-list-section__card{background:rgba(14,20,36,0.85);border:1px solid rgba(255,255,255,0.08);border-radius:12px;overflow:hidden;box-shadow:0 12px 28px rgba(0,0,0,0.4);transition:transform 0.25s cubic-bezier(0.16,1,0.3,1),border-color 0.25s ease,box-shadow 0.25s ease}.reviews-list-section__card:hover{transform:translateY(-4px);border-color:rgba(0,240,255,0.45);box-shadow:0 16px 36px rgba(0,240,255,0.15)}.reviews-list-section__media-wrap{position:relative;width:100%;aspect-ratio:16/9;overflow:hidden;background-color:#141C32}.reviews-list-section__img-link{display:block;width:100%;height:100%}.reviews-list-section__img{width:100%;height:100%;object-fit:cover;transition:transform 0.4s ease}.reviews-list-section__card:hover .reviews-list-section__img{transform:scale(1.05)}.reviews-list-section__badge-platform{position:absolute;top:10px;left:10px;background:rgba(9,13,22,0.85);color:#00F0FF;font-family:'JetBrains Mono',monospace;font-size:0.75rem;font-weight:700;padding:4px 10px;border-radius:6px;border:1px solid rgba(0,240,255,0.3);backdrop-filter:blur(6px);display:inline-flex;align-items:center}.reviews-list-section__score-pill{position:absolute;bottom:10px;right:10px;background:linear-gradient(135deg,#00F0FF 0%,#7928CA 100%);color:#090D16;font-family:'Rajdhani',sans-serif;font-weight:700;padding:4px 10px;border-radius:8px;display:flex;align-items:baseline;box-shadow:0 4px 15px rgba(0,240,255,0.4)}.reviews-list-section__score-pill--upcoming{background:linear-gradient(135deg,#FF0055 0%,#7928CA 100%);color:#FFFFFF}.reviews-list-section__score-val{font-size:1.15rem;line-height:1;margin-right:2px}.reviews-list-section__score-sub{font-size:0.75rem;line-height:1;opacity:0.9}.reviews-list-section__meta{font-size:0.8rem;color:#94A3B8;font-family:'JetBrains Mono',monospace}.reviews-list-section__card-title{font-family:'Rajdhani',sans-serif;font-size:1.25rem;font-weight:700;line-height:1.3}.reviews-list-section__title-link{color:#F8FAFC;text-decoration:none;transition:color 0.2s ease}.reviews-list-section__title-link:hover{color:#00F0FF}.reviews-list-section__rating-bar{background-color:#141C32;border:1px solid rgba(255,255,255,0.05);font-size:0.85rem}.reviews-list-section__rating-label{color:#94A3B8}.reviews-list-section__verdict-tag{font-size:0.8rem;font-weight:700;text-transform:uppercase;letter-spacing:0.05em;display:inline-flex;align-items:center}.reviews-list-section__pros-list,.reviews-list-section__cons-list{font-size:0.85rem;color:#CBD5E1;line-height:1.5}.reviews-list-section__comments{font-size:0.8rem;color:#64748B}.reviews-list-section__action-btn{display:inline-flex;align-items:center;padding:6px 14px;background:rgba(20,28,50,0.9);color:#00F0FF;border:1px solid rgba(0,240,255,0.3);border-radius:6px;font-size:0.85rem;font-weight:600;text-decoration:none;transition:all 0.25s ease}.reviews-list-section__action-btn:hover{background:#00F0FF;color:#090D16;box-shadow:0 0 15px rgba(0,240,255,0.4)}.reviews-list-section__empty-title{font-family:'Rajdhani',sans-serif;font-size:1.5rem;font-weight:700}.reviews-list-section__reset-btn{padding:8px 20px;background:linear-gradient(135deg,#00F0FF 0%,#00B8D9 100%);color:#090D16;border:none;border-radius:8px;font-weight:700;font-size:0.9rem;box-shadow:0 0 15px rgba(0,240,255,0.3);transition:all 0.25s ease}.reviews-list-section__reset-btn:hover{box-shadow:0 0 25px rgba(0,240,255,0.6);transform:translateY(-2px)}@media (max-width:767px){.reviews-list-section__main-title{font-size:1.4rem}.reviews-list-section__card-title{font-size:1.1rem}.reviews-list-section__lead{font-size:0.9rem}}

/* ===== PAGE: genres ===== */
.genres-hub-section { background-color: #090D16; color: #F8FAFC; position: relative; min-height: 60vh; }
.genres-hub-section__badge { display: inline-flex; align-items: center; background: rgba(0, 240, 255, 0.1); border: 1px solid rgba(0, 240, 255, 0.3); color: #00F0FF; padding: 0.35rem 0.85rem; border-radius: 50px; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.genres-hub-section__title { font-family: 'Rajdhani', sans-serif; font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; text-transform: uppercase; color: #F8FAFC; letter-spacing: -0.01em; }
.genres-hub-section__lead { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; line-height: 1.65; color: #94A3B8; max-width: 800px; }
.genres-hub-section__search-wrap { position: relative; width: 100%; }
.genres-hub-section__search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #00F0FF; font-size: 1.25rem; pointer-events: none; }
.genres-hub-section .form-control.js-genres-search { background-color: #0E1424; border: 1px solid rgba(255, 255, 255, 0.12); color: #F8FAFC; padding-left: 2.75rem; padding-top: 0.75rem; padding-bottom: 0.75rem; border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.genres-hub-section .form-control.js-genres-search:focus { background-color: #141C32; border-color: #00F0FF; box-shadow: 0 0 15px rgba(0, 240, 255, 0.25); color: #F8FAFC; outline: none; }
.genres-hub-section .form-control.js-genres-search::placeholder { color: #64748B; opacity: 1; }
.genres-hub-section__count { font-family: 'JetBrains Mono', monospace; font-size: 0.875rem; }
.genres-hub-section__count-label { color: #94A3B8; }
.genres-hub-section__count-value { color: #00F0FF; font-weight: 700; }
.genres-hub-section__card { background: rgba(14, 20, 36, 0.85); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.genres-hub-section__card:hover { transform: translateY(-4px); border-color: rgba(0, 240, 255, 0.4); box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15); }
.genres-hub-section__card-media { position: relative; display: block; width: 100%; height: 210px; overflow: hidden; background-color: #141C32; text-decoration: none; }
.genres-hub-section__card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.genres-hub-section__card:hover .genres-hub-section__card-img { transform: scale(1.04); }
.genres-hub-section__card-badge { position: absolute; top: 0.85rem; left: 0.85rem; background: rgba(9, 13, 22, 0.85); border: 1px solid rgba(0, 240, 255, 0.4); color: #00F0FF; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 6px; display: inline-flex; align-items: center; z-index: 2; }
.genres-hub-section__card-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.genres-hub-section__card-title { font-family: 'Rajdhani', sans-serif; font-size: 1.35rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.75rem; color: #F8FAFC; text-transform: uppercase; }
.genres-hub-section__card-title-link { color: #F8FAFC; text-decoration: none; transition: color 0.2s ease; }
.genres-hub-section__card-title-link:hover { color: #00F0FF; }
.genres-hub-section__card-desc { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.925rem; line-height: 1.6; color: #94A3B8; margin-bottom: 1.25rem; flex-grow: 1; }
.genres-hub-section__card-footer { margin-top: auto; }
.genres-hub-section__btn-action { display: inline-flex; align-items: center; justify-content: center; width: 100%; background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%); color: #090D16; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.9rem; text-decoration: none; padding: 0.65rem 1.25rem; border-radius: 8px; border: none; transition: transform 0.25s ease, box-shadow 0.25s ease; cursor: pointer; }
.genres-hub-section__btn-action:hover { color: #090D16; transform: translateY(-2px); box-shadow: 0 0 20px rgba(0, 240, 255, 0.45); }
.genres-hub-section__empty-state { background: rgba(14, 20, 36, 0.5); border: 1px dashed rgba(255, 255, 255, 0.15); border-radius: 12px; }
.genres-hub-section__empty-title { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; text-transform: uppercase; }
.genres-hub-section__empty-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; }

/* ===== PAGE: guides ===== */
.section-guides-hub{background-color:#090d16;color:#f8fafc;font-family:'Plus Jakarta Sans',sans-serif}.section-guides-hub__title{font-family:'Rajdhani',sans-serif;text-transform:uppercase;letter-spacing:-0.01em}.section-guides-hub__badge{background:rgba(0,240,255,0.15);color:#00f0ff;border:1px solid rgba(0,240,255,0.3);font-size:0.8rem;padding:0.4rem 0.8rem}.section-guides-hub__search-box .form-control{background-color:#0e1424!important;border-color:rgba(255,255,255,0.12)!important;color:#f8fafc!important}.section-guides-hub__search-box .form-control::placeholder{color:#94a3b8;opacity:1}.section-guides-hub__search-box .input-group-text{background-color:#0e1424!important;border-color:rgba(255,255,255,0.12)!important}.section-guides-hub__filters .btn-outline-info{color:#94a3b8;border-color:rgba(255,255,255,0.12);background:rgba(20,28,50,0.5)}.section-guides-hub__filters .btn-outline-info:hover,.section-guides-hub__filters .btn-outline-info.active{background:#7928ca;border-color:#a855f7;color:#ffffff;box-shadow:0 0 15px rgba(121,40,202,0.5)}.section-guides-hub__card{background:rgba(14,20,36,0.85);border:1px solid rgba(255,255,255,0.08);border-radius:12px;overflow:hidden;transition:all 0.3s ease}.section-guides-hub__card:hover{transform:translateY(-4px);border-color:rgba(0,240,255,0.4);box-shadow:0 10px 25px rgba(0,0,0,0.5)}.section-guides-hub__image-wrapper{position:relative;height:200px}.section-guides-hub__thumb{width:100%;height:200px;object-fit:cover;transition:transform 0.4s ease}.section-guides-hub__card:hover .section-guides-hub__thumb{transform:scale(1.05)}.section-guides-hub__category-badge{position:absolute;top:12px;left:12px;background:rgba(9,13,22,0.85);color:#00f0ff;border:1px solid rgba(0,240,255,0.3);backdrop-filter:blur(6px);font-size:0.75rem;padding:0.35rem 0.65rem;border-radius:6px;text-transform:uppercase;font-weight:700}.section-guides-hub__card-link{transition:color 0.2s ease}.section-guides-hub__card-link:hover{color:#00f0ff!important}.section-guides-hub__action-btn{background:linear-gradient(135deg,#00f0ff 0%,#00b8d9 100%);color:#090d16;font-weight:700;border:none;border-radius:8px;padding:0.5rem 1rem;transition:all 0.25s ease}.section-guides-hub__action-btn:hover{background:linear-gradient(135deg,#38f5ff 0%,#00c7ec 100%);color:#090d16;box-shadow:0 0 15px rgba(0,240,255,0.5);transform:translateY(-1px)}.section-guides-hub .border-secondary{border-color:rgba(255,255,255,0.08)!important}

/* ===== PAGE: contact ===== */
.contact-info-section{background-color:#090D16;color:#F8FAFC;font-family:'Plus Jakarta Sans',sans-serif;position:relative;overflow:hidden}.contact-info-section__header{position:relative;z-index:2}.contact-info-section__badge{font-family:'JetBrains Mono',monospace;font-size:0.8125rem;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:#00F0FF;background:rgba(0,240,255,0.08);border:1px solid rgba(0,240,255,0.25);border-radius:20px;padding:6px 16px}.contact-info-section__title{font-family:'Rajdhani',sans-serif;font-size:clamp(1.75rem,3.5vw,2.5rem);font-weight:700;line-height:1.2;text-transform:uppercase;color:#F8FAFC;letter-spacing:-0.01em}.contact-info-section__lead{color:#94A3B8;font-size:1rem;line-height:1.65;max-width:760px}.contact-info-section__card{background:rgba(14,20,36,0.75);border:1px solid rgba(255,255,255,0.08);border-radius:16px;padding:28px 24px;display:flex;flex-direction:column;transition:all 0.25s cubic-bezier(0.16,1,0.3,1)}.contact-info-section__card:hover{border-color:rgba(0,240,255,0.4);transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,240,255,0.12)}.contact-info-section__icon-box{width:54px;height:54px;border-radius:12px;background:rgba(0,240,255,0.1);border:1px solid rgba(0,240,255,0.25);display:flex;align-items:center;justify-content:center;color:#00F0FF;font-size:1.75rem}.contact-info-section__card-title{font-family:'Rajdhani',sans-serif;font-size:1.375rem;font-weight:700;color:#F8FAFC;margin-bottom:8px}.contact-info-section__card-text{color:#94A3B8;font-size:0.9375rem;line-height:1.6;margin-bottom:20px;flex-grow:1}.contact-info-section__value-box{background:#141C32;border:1px solid rgba(255,255,255,0.06);border-radius:10px;padding:14px 16px}.contact-info-section__value-label{display:block;font-family:'JetBrains Mono',monospace;font-size:0.75rem;text-transform:uppercase;letter-spacing:0.05em;color:#64748B;margin-bottom:4px}.contact-info-section__value-text{color:#00F0FF;font-weight:600;font-size:0.9375rem;margin-bottom:0;word-break:break-word}.contact-info-section__editorial-box{background:rgba(14,20,36,0.75);border:1px solid rgba(255,255,255,0.08);border-radius:16px;padding:32px 28px}.contact-info-section__section-icon{color:#7928CA;font-size:1.5rem}.contact-info-section__sub-heading{font-family:'Rajdhani',sans-serif;font-size:1.25rem;font-weight:700;color:#F8FAFC;text-transform:uppercase}.contact-info-section__paragraph{color:#94A3B8;font-size:0.9375rem;line-height:1.7}.contact-info-section__schedule-list{border-top:1px solid rgba(255,255,255,0.06)}.contact-info-section__schedule-item{border-bottom:1px solid rgba(255,255,255,0.06);font-size:0.9375rem}.contact-info-section__schedule-day{color:#94A3B8}.contact-info-section__schedule-time{font-family:'JetBrains Mono',monospace;color:#F8FAFC;font-weight:500}@media (max-width:767.98px){.contact-info-section__title{font-size:1.5rem}.contact-info-section__card{padding:20px}.contact-info-section__editorial-box{padding:20px}.contact-info-section__schedule-item{flex-direction:column;gap:4px}}

/* ===== PAGE: privacy ===== */
.privacy-page-section {
  background-color: #090D16;
  color: #F8FAFC;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  min-height: 80vh;
}

.privacy-page-section .privacy-sidebar-nav {
  background: rgba(14, 20, 36, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.15);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.privacy-page-section .badge-tag {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #00F0FF;
  text-transform: uppercase;
}

.privacy-page-section .sidebar-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.privacy-page-section .text-muted-custom {
  color: #94A3B8;
  line-height: 1.6;
}

.privacy-page-section .privacy-toc-links .privacy-nav-item {
  color: #94A3B8;
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-bottom: 0.25rem;
}

.privacy-page-section .privacy-toc-links .privacy-nav-item:hover,
.privacy-page-section .privacy-toc-links .privacy-nav-item.active {
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.08);
  border-left: 2px solid #00F0FF;
  padding-left: 1rem;
}

.privacy-page-section .privacy-quick-card {
  background: rgba(20, 28, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-page-section .privacy-article-body {
  background: rgba(14, 20, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.privacy-page-section .privacy-chip {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.privacy-page-section .text-cyan {
  color: #00F0FF;
}

.privacy-page-section .privacy-main-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.privacy-page-section .privacy-h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}

.privacy-page-section .section-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.12);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.privacy-page-section .text-content {
  color: #CBD5E1;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-page-section .info-box {
  background: rgba(20, 28, 50, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: #CBD5E1;
  font-size: 0.95rem;
}

.privacy-page-section .data-category-card,
.privacy-page-section .rights-item {
  background: rgba(20, 28, 50, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.privacy-page-section .data-category-card:hover,
.privacy-page-section .rights-item:hover {
  border-color: rgba(0, 240, 255, 0.35);
  transform: translateY(-2px);
}

.privacy-page-section .custom-bullet-list {
  list-style-type: none;
  padding-left: 0;
}

.privacy-page-section .custom-bullet-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #CBD5E1;
  line-height: 1.6;
}

.privacy-page-section .custom-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background-color: #00F0FF;
  border-radius: 50%;
  box-shadow: 0 0 8px #00F0FF;
}

.privacy-page-section .custom-link {
  color: #00F0FF;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.privacy-page-section .custom-link:hover {
  color: #38F5FF;
}

.privacy-page-section .border-subtle {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.privacy-page-section .btn-primary-custom {
  background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
  color: #090D16;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  border: none;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.privacy-page-section .btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
  color: #090D16;
}

.privacy-page-section .btn-secondary-custom {
  background: rgba(20, 28, 50, 0.8);
  color: #F8FAFC;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.privacy-page-section .btn-secondary-custom:hover {
  background: rgba(0, 240, 255, 0.12);
  border-color: #00F0FF;
  color: #00F0FF;
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .privacy-page-section .privacy-main-title {
    font-size: 1.35rem;
  }
  .privacy-page-section .privacy-h2 {
    font-size: 1.1rem;
  }
  .privacy-page-section .privacy-article-body {
    padding: 1.5rem 1rem;
  }
  .privacy-page-section .privacy-sidebar-nav {
    position: static;
  }
}

/* ===== PAGE: terms ===== */
.terms-page {
  background-color: #090D16;
  color: #94A3B8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 80vh;
}

.terms-page .text-cyan {
  color: #00F0FF !important;
}

.terms-page .text-magenta {
  color: #FF0055 !important;
}

.terms-page .text-muted-light {
  color: #A0AEC0;
}

.terms-page .fs-7 {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.terms-page .terms-header {
  background: radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.12) 0%, rgba(121, 40, 202, 0.15) 50%, rgba(14, 20, 36, 0.9) 100%);
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.terms-page .terms-badge {
  background: linear-gradient(135deg, #00F0FF 0%, #7928CA 100%);
  color: #090D16;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  display: inline-block;
}

.terms-page .terms-updated {
  font-size: 0.85rem;
  color: #64748B;
  font-family: 'JetBrains Mono', monospace;
}

.terms-page .terms-main-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #F8FAFC;
  line-height: 1.15;
}

.terms-page .terms-lead-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #CBD5E1;
  max-width: 800px;
}

.terms-page .terms-search-box {
  max-width: 600px;
  background: rgba(14, 20, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.35rem;
  transition: all 0.25s ease;
}

.terms-page .terms-search-box:focus-within {
  border-color: #00F0FF;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.25);
}

.terms-page .terms-search-box input {
  background: transparent;
  color: #F8FAFC;
  font-size: 0.95rem;
}

.terms-page .terms-search-box input::placeholder {
  color: #64748B;
  opacity: 1;
}

.terms-page .terms-search-box input:focus {
  outline: none;
  box-shadow: none;
  color: #F8FAFC;
  background: transparent;
}

.terms-page .terms-sidebar {
  background: rgba(14, 20, 36, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.terms-page .terms-sidebar-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.terms-page .terms-nav-link {
  display: flex;
  align-items: center;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.terms-page .terms-nav-link:hover {
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.06);
  border-left-color: #00F0FF;
  transform: translateX(3px);
}

.terms-page .terms-nav-link.active {
  color: #F8FAFC;
  background: rgba(121, 40, 202, 0.25);
  border-left-color: #00F0FF;
  font-weight: 600;
}

.terms-page .terms-summary-card {
  background: rgba(20, 28, 50, 0.6);
  border: 1px dashed rgba(0, 240, 255, 0.25);
}

.terms-page .terms-card {
  background: rgba(14, 20, 36, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  scroll-margin-top: 2rem;
}

.terms-page .terms-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

.terms-page .terms-section-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.terms-page .terms-section-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #F8FAFC;
  line-height: 1.25;
}

.terms-page .terms-paragraph {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 1rem;
}

.terms-page .terms-list {
  padding-left: 1.25rem;
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.terms-page .terms-list li {
  margin-bottom: 0.4rem;
}

.terms-page .terms-highlight-box {
  background: rgba(20, 28, 50, 0.7);
  border-left: 3px solid #00F0FF;
}

.terms-page .terms-contact-mini {
  background: rgba(20, 28, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.terms-page .btn-secondary-cyber {
  background: rgba(20, 28, 50, 0.85);
  color: #F8FAFC;
  border: 1px solid rgba(0, 240, 255, 0.3);
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.terms-page .btn-secondary-cyber:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: #00F0FF;
  color: #00F0FF;
}

.terms-page .terms-no-results {
  background: rgba(14, 20, 36, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

@media (max-width: 767.98px) {
  .terms-page .terms-main-title {
    font-size: 1.75rem;
    hyphens: auto;
  }
  .terms-page .terms-section-title {
    font-size: 1.15rem;
    hyphens: auto;
  }
  .terms-page .terms-card {
    padding: 1.5rem !important;
  }
  .terms-page .terms-header {
    padding: 1.5rem !important;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-portal {
  background-color: #090D16;
  color: #F8FAFC;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.disclaimer-portal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 380px;
  background: radial-gradient(circle at 50% 10%, rgba(0, 240, 255, 0.08) 0%, rgba(121, 40, 202, 0.05) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.disclaimer-portal .container {
  position: relative;
  z-index: 1;
}

.disclaimer-portal__header {
  background: rgba(14, 20, 36, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.25);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.disclaimer-portal__badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.12);
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.disclaimer-portal__title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #F8FAFC;
}

.disclaimer-portal__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #94A3B8;
}

.disclaimer-portal__meta-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: #64748B;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.disclaimer-portal__nav {
  background: rgba(14, 20, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.disclaimer-portal__nav-heading {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #00F0FF;
}

.disclaimer-portal__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #94A3B8;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}

.disclaimer-portal__nav-link:hover {
  color: #00F0FF;
  background: rgba(0, 240, 255, 0.08);
  transform: translateX(3px);
}

.disclaimer-portal__nav-link.active {
  color: #FFFFFF;
  background: rgba(121, 40, 202, 0.4);
  border-left: 3px solid #00F0FF;
  font-weight: 600;
}

.disclaimer-portal__support-box {
  background: rgba(20, 28, 50, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.disclaimer-portal__card {
  background: rgba(14, 20, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s ease;
}

.disclaimer-portal__card:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.disclaimer-portal__icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.12);
  color: #00F0FF;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-portal__section-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #F8FAFC;
}

.disclaimer-portal__body-text p {
  font-size: 0.975rem;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 0.85rem;
}

.disclaimer-portal__body-text p:last-child {
  margin-bottom: 0;
}

.disclaimer-portal__inline-link {
  color: #00F0FF;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.disclaimer-portal__inline-link:hover {
  color: #38F5FF;
}

.disclaimer-portal__alert {
  background: rgba(255, 0, 85, 0.08);
  border-left: 3px solid #FF0055;
  color: #F8FAFC;
}

.disclaimer-portal__related {
  background: rgba(20, 28, 50, 0.7);
  border: 1px solid rgba(121, 40, 202, 0.35);
}

.disclaimer-portal__btn-contact {
  background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
  color: #090D16;
  font-weight: 700;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.disclaimer-portal__btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  color: #090D16;
}

.disclaimer-portal__btn-outline {
  background: rgba(20, 28, 50, 0.8);
  color: #F8FAFC;
  border: 1px solid rgba(0, 240, 255, 0.3);
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.disclaimer-portal__btn-outline:hover {
  background: rgba(0, 240, 255, 0.12);
  border-color: #00F0FF;
  color: #00F0FF;
}

@media (max-width: 767.98px) {
  .disclaimer-portal__title {
    font-size: 1.65rem;
    hyphens: auto;
  }
  .disclaimer-portal__section-title {
    font-size: 1.15rem;
    hyphens: auto;
  }
  .disclaimer-portal__lead {
    font-size: 0.95rem;
  }
  .disclaimer-portal__nav {
    position: static !important;
    margin-bottom: 1.5rem;
  }
}

/* ===== PAGE: cookies ===== */
.cookies-page-content { background-color: #090D16; color: #F8FAFC; font-family: 'Plus Jakarta Sans', sans-serif; min-height: 60vh; }
.cookies-page-content .cookies-header-card { background: rgba(14, 20, 36, 0.85); border: 1px solid rgba(0, 240, 255, 0.2); border-radius: 16px; backdrop-filter: blur(16px); }
.cookies-page-content .cookies-badge { background: rgba(0, 240, 255, 0.1); color: #00F0FF; border: 1px solid rgba(0, 240, 255, 0.3); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 0.85rem; border-radius: 50px; }
.cookies-page-content .cookies-main-title { font-family: 'Rajdhani', sans-serif; font-size: clamp(1.85rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.15; text-transform: uppercase; color: #F8FAFC; letter-spacing: -0.01em; }
.cookies-page-content .cookies-lead-text { color: #94A3B8; font-size: 1.05rem; line-height: 1.65; max-width: 780px; margin-left: auto; margin-right: auto; }
.cookies-page-content .cookies-panel { background: rgba(14, 20, 36, 0.75); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; backdrop-filter: blur(16px); }
.cookies-page-content .cookies-h2 { font-family: 'Rajdhani', sans-serif; font-size: clamp(1.25rem, 2.5vw, 1.65rem); font-weight: 700; color: #F8FAFC; text-transform: uppercase; letter-spacing: 0.02em; }
.cookies-page-content .cookies-section-icon { font-size: 1.65rem; color: #00F0FF; }
.cookies-page-content .cookies-body-text { color: #94A3B8; font-size: 0.95rem; line-height: 1.7; }
.cookies-page-content .cookie-item-card { background: rgba(20, 28, 50, 0.6); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; transition: border-color 0.25s ease, background 0.25s ease; }
.cookies-page-content .cookie-item-card:hover { border-color: rgba(0, 240, 255, 0.3); background: rgba(20, 28, 50, 0.85); }
.cookies-page-content .cookie-title { font-family: 'Rajdhani', sans-serif; font-size: 1.15rem; font-weight: 700; color: #F8FAFC; text-transform: uppercase; }
.cookies-page-content .cookie-status-badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; background: rgba(121, 40, 202, 0.25); color: #C084FC; border: 1px solid rgba(168, 85, 247, 0.4); padding: 0.2rem 0.5rem; border-radius: 4px; }
.cookies-page-content .cookie-desc { color: #94A3B8; font-size: 0.875rem; line-height: 1.5; }
.cookies-page-content .form-check-input { width: 2.75rem; height: 1.4rem; background-color: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.25); cursor: pointer; }
.cookies-page-content .form-check-input:checked { background-color: #00F0FF; border-color: #00F0FF; }
.cookies-page-content .form-check-input:disabled { opacity: 0.6; cursor: not-allowed; }
.cookies-page-content .cookies-btn-primary { background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%); color: #090D16; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; border-radius: 8px; border: none; padding: 0.75rem 1.5rem; box-shadow: 0 0 15px rgba(0, 240, 255, 0.3); transition: all 0.25s ease; }
.cookies-page-content .cookies-btn-primary:hover { color: #090D16; transform: translateY(-2px); box-shadow: 0 0 25px rgba(0, 240, 255, 0.6); }
.cookies-page-content .cookies-btn-secondary { background: rgba(20, 28, 50, 0.85); color: #F8FAFC; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; border-radius: 8px; border: 1px solid rgba(0, 240, 255, 0.3); padding: 0.75rem 1.5rem; transition: all 0.25s ease; }
.cookies-page-content .cookies-btn-secondary:hover { background: rgba(0, 240, 255, 0.12); border-color: #00F0FF; color: #00F0FF; transform: translateY(-2px); }
.cookies-page-content .cookies-toast-alert { background: rgba(0, 255, 102, 0.1); border: 1px solid rgba(0, 255, 102, 0.35); color: #00FF66; padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; }
.cookies-page-content .cookies-list { color: #94A3B8; font-size: 0.95rem; line-height: 1.8; padding-left: 1.25rem; }
.cookies-page-content .cookies-list li { margin-bottom: 0.5rem; }
.cookies-page-content .cookies-list strong { color: #F8FAFC; }
@media (max-width: 767.98px) { .cookies-page-content .cookies-main-title { font-size: 1.4rem; hyphens: auto; } .cookies-page-content .cookies-h2 { font-size: 1.15rem; hyphens: auto; } .cookies-page-content .cookie-title { font-size: 1rem; hyphens: auto; } }

.gaming-comment-card {
    background: rgba(14, 20, 36, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(16px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gaming-comment-card:hover {
    border-color: rgba(0, 240, 255, 0.35);
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.08);
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.avatar-cyan {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(121, 40, 202, 0.3) 100%);
    color: #00F0FF;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.25);
}

.avatar-purple {
    background: linear-gradient(135deg, rgba(121, 40, 202, 0.3) 0%, rgba(255, 0, 85, 0.25) 100%);
    color: #E9D5FF;
    border-color: rgba(121, 40, 202, 0.4);
    box-shadow: 0 0 12px rgba(121, 40, 202, 0.25);
}

.comment-author {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #F8FAFC;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.comment-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-pro {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.35);
}

.badge-mod {
    background: rgba(121, 40, 202, 0.2);
    color: #C084FC;
    border: 1px solid rgba(121, 40, 202, 0.4);
}

.comment-date {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    color: #64748B;
    display: inline-flex;
    align-items: center;
}

.comment-rating {
    display: flex;
    gap: 3px;
    font-size: 0.95rem;
}

.comment-rating i {
    color: #334155;
}

.comment-rating i.active {
    color: #FFB800;
    text-shadow: 0 0 8px rgba(255, 184, 0, 0.4);
}

.comment-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94A3B8;
}

.comment-actions {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

.comment-action-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #94A3B8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.comment-action-btn:hover {
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.2);
}

.comment-action-btn.active {
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.3);
}

.reply-comment {
    background: rgba(20, 28, 50, 0.6);
    border-left: 3px solid #7928CA;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.reply-comment::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 22px;
    width: 16px;
    height: 2px;
    background: rgba(121, 40, 202, 0.5);
}

@media (max-width: 576px) {
    .reply-comment {
        margin-left: 1rem !important;
    }

    .reply-comment::before {
        display: none;
    }
}


/* ===== PAGE TEMPLATE: reviews ===== */
.main-header-block {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #090D16;
    border-bottom: 1px solid #141C32;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.main-header-block .main-header-navbar {
    padding: 0.75rem 0;
    background-color: #090D16;
}

.main-header-block .main-header-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
    transition: transform 0.25s ease;
}

.main-header-block .navbar-brand:hover .main-header-logo {
    transform: scale(1.05);
}

.main-header-block .main-header-brand-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #F8FAFC;
    text-transform: uppercase;
    line-height: 1;
}

.main-header-block .main-header-toggler {
    border: 1px solid #141C32;
    background-color: #0E1424;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    outline: none;
    box-shadow: none;
}

.main-header-block .main-header-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.4);
}

.main-header-block .main-header-toggler-icon {
    font-size: 1.6rem;
    color: #00F0FF;
    display: block;
}

.main-header-block .main-header-nav-list {
    gap: 0.25rem;
}

.main-header-block .main-header-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #94A3B8;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.main-header-block .main-header-link-icon {
    font-size: 1.1rem;
    color: #64748B;
    transition: color 0.2s ease;
}

.main-header-block .main-header-link:hover {
    color: #00F0FF;
    background-color: rgba(20, 28, 50, 0.7);
}

.main-header-block .main-header-link:hover .main-header-link-icon {
    color: #00F0FF;
}

.main-header-block .main-header-link.active {
    color: #F8FAFC;
    background-color: #141C32;
}

.main-header-block .main-header-link.active .main-header-link-icon {
    color: #00F0FF;
}

.main-header-block .main-header-cta-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #090D16;
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.35rem;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.main-header-block .main-header-cta-btn:hover {
    color: #090D16;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.6);
    background: linear-gradient(135deg, #38F5FF 0%, #00D2F7 100%);
}

.main-header-block .main-header-cta-btn:active {
    transform: translateY(0);
}

.review-detail-hero {
    background-color: #090D16;
    color: #F8FAFC;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.review-detail-hero .review-detail-hero__glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 120%;
    background: radial-gradient(ellipse at 50% 20%, rgba(0, 240, 255, 0.12) 0%, rgba(121, 40, 202, 0.1) 40%, rgba(9, 13, 22, 0) 75%);
    pointer-events: none;
}

.review-detail-hero .review-detail-hero__breadcrumb-link {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.review-detail-hero .review-detail-hero__breadcrumb-link:hover {
    color: #00F0FF;
}

.review-detail-hero .review-detail-hero__breadcrumb-active {
    color: #00F0FF;
    font-size: 0.875rem;
    max-width: 260px;
}

.review-detail-hero .review-detail-hero__badge-category {
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid rgba(0, 240, 255, 0.35);
    color: #00F0FF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.review-detail-hero .review-detail-hero__badge-platform {
    background: rgba(121, 40, 202, 0.2);
    border: 1px solid rgba(121, 40, 202, 0.4);
    color: #C084FC;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
}

.review-detail-hero .review-detail-hero__badge-date {
    color: #64748B;
    font-size: 0.8125rem;
}

.review-detail-hero .review-detail-hero__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1.2;
    color: #F8FAFC;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.review-detail-hero .review-detail-hero__lead {
    color: #94A3B8;
    font-size: 1.05rem;
    line-height: 1.6;
}

.review-detail-hero .review-detail-hero__author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00F0FF 0%, #7928CA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090D16;
    font-size: 1.4rem;
}

.review-detail-hero .review-detail-hero__author-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #F8FAFC;
}

.review-detail-hero .review-detail-hero__author-role {
    font-size: 0.8rem;
    color: #64748B;
}

.review-detail-hero .review-detail-hero__score-bento {
    background: rgba(14, 20, 36, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 240, 255, 0.1);
}

.review-detail-hero .review-detail-hero__score-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
}

.review-detail-hero .review-detail-hero__score-val-editor {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.85rem;
    font-weight: 700;
    color: #00F0FF;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.review-detail-hero .review-detail-hero__score-bar-wrap {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.review-detail-hero .review-detail-hero__score-bar {
    height: 100%;
    background: linear-gradient(90deg, #00F0FF, #7928CA);
}

.review-detail-hero .review-detail-hero__score-label-sub {
    font-size: 0.875rem;
    color: #94A3B8;
}

.review-detail-hero .review-detail-hero__score-val-user {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFB800;
}

.review-detail-content {
    background-color: #090D16;
}

.review-detail-content .review-detail-content__article-card,
.review-detail-content .review-detail-content__faq-card,
.review-detail-content .review-detail-comments,
.review-detail-sidebar .review-detail-sidebar__card {
    background: rgba(14, 20, 36, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.review-detail-content .review-detail-content__main-image {
    height: 380px;
    object-fit: cover;
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.review-detail-content .review-detail-content__tab-btn {
    background: rgba(20, 28, 50, 0.8);
    color: #94A3B8;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.review-detail-content .review-detail-content__tab-btn:hover {
    color: #00F0FF;
    border-color: rgba(0, 240, 255, 0.4);
}

.review-detail-content .review-detail-content__tab-btn.active {
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    color: #090D16;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
}

.review-detail-content .review-detail-content__section-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
    line-height: 1.25;
}

.review-detail-content .review-detail-content__sub-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00F0FF;
    text-transform: uppercase;
    line-height: 1.3;
}

.review-detail-content .review-detail-content__body-text {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-detail-content .review-detail-content__quote {
    background: rgba(0, 240, 255, 0.06);
    border-left: 3px solid #00F0FF;
    color: #F8FAFC;
    font-style: italic;
}

.review-detail-content .review-detail-content__specs-list {
    color: #94A3B8;
}

.review-detail-content .review-detail-content__specs-list strong {
    color: #F8FAFC;
}

.review-detail-content .review-detail-content__pros-card {
    background: rgba(0, 255, 102, 0.05);
    border: 1px solid rgba(0, 255, 102, 0.25);
}

.review-detail-content .review-detail-content__cons-card {
    background: rgba(255, 0, 85, 0.05);
    border: 1px solid rgba(255, 0, 85, 0.25);
}

.review-detail-content .review-detail-content__box-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
}

.review-detail-content .review-detail-content__points-list span {
    color: #94A3B8;
    font-size: 0.9rem;
}

.review-detail-content .review-detail-content__faq-toggle {
    background: rgba(20, 28, 50, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.review-detail-content .review-detail-content__faq-toggle:hover {
    background: rgba(20, 28, 50, 0.95);
    border-color: rgba(0, 240, 255, 0.4);
}

.review-detail-content .faq-chevron {
    transition: transform 0.25s ease;
}

.review-detail-content .review-detail-content__faq-toggle[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: #00F0FF;
}

.review-detail-content .review-detail-content__faq-body {
    background: rgba(14, 20, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
}

.review-detail-comments .review-detail-comments__heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
}

.review-detail-comments .review-detail-comments__count-badge {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.review-detail-comments .gaming-comment-card {
    background: rgba(20, 28, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.review-detail-comments .comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #090D16;
}

.review-detail-comments .avatar-cyan {
    background: #00F0FF;
}

.review-detail-comments .avatar-purple {
    background: #C084FC;
}

.review-detail-comments .comment-author {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #F8FAFC;
    font-size: 1rem;
}

.review-detail-comments .comment-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.review-detail-comments .badge-pro {
    background: rgba(0, 240, 255, 0.15);
    color: #00F0FF;
}

.review-detail-comments .badge-mod {
    background: rgba(121, 40, 202, 0.25);
    color: #C084FC;
}

.review-detail-comments .comment-date {
    color: #64748B;
    font-size: 0.78rem;
}

.review-detail-comments .comment-rating .active {
    color: #FFB800;
}

.review-detail-comments .comment-text {
    color: #94A3B8;
    font-size: 0.925rem;
    line-height: 1.55;
}

.review-detail-comments .comment-action-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.review-detail-comments .comment-action-btn:hover,
.review-detail-comments .comment-action-btn.active {
    color: #00F0FF;
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(0, 240, 255, 0.08);
}

.review-detail-comments .review-detail-comments__auth-notice {
    background: rgba(255, 0, 85, 0.15);
    border: 1px solid rgba(255, 0, 85, 0.4);
    color: #FF6B99;
    border-radius: 8px;
}

.review-detail-comments .review-detail-comments__form-wrap {
    background: rgba(20, 28, 50, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.review-detail-comments .review-detail-comments__form-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
}

.review-detail-comments .review-detail-comments__form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.review-detail-comments .review-detail-comments__input,
.review-detail-sidebar .review-detail-comments__input {
    background-color: #0E1424;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #F8FAFC;
    border-radius: 8px;
}

.review-detail-comments .review-detail-comments__input:focus,
.review-detail-sidebar .review-detail-comments__input:focus {
    background-color: #0E1424;
    border-color: #00F0FF;
    color: #F8FAFC;
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.25);
}

.review-detail-comments .review-detail-comments__input::placeholder,
.review-detail-sidebar .review-detail-comments__input::placeholder {
    color: #64748B;
}

.review-detail-comments .review-detail-comments__submit-btn,
.review-detail-sidebar .review-detail-sidebar__action-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #090D16;
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-detail-comments .review-detail-comments__submit-btn:hover,
.review-detail-sidebar .review-detail-sidebar__action-btn:hover {
    color: #090D16;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.6);
}

.review-detail-sidebar .review-detail-sidebar__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
    line-height: 1.3;
}

.review-detail-sidebar .review-detail-sidebar__link {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.2s ease, transform 0.2s ease;
}

.review-detail-sidebar .review-detail-sidebar__link:hover {
    color: #00F0FF;
    transform: translateX(3px);
}

.review-detail-sidebar .review-detail-sidebar__newsletter-icon {
    font-size: 2rem;
    color: #00F0FF;
}

.review-detail-sidebar .review-detail-sidebar__desc {
    color: #94A3B8;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-cyber-block {
    background-color: #090D16;
    color: #F8FAFC;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-cyber-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00F0FF 50%, transparent 100%);
    pointer-events: none;
}

.footer-cyber-block__brand-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #00F0FF;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
}

.footer-cyber-block__brand-desc {
    color: #94A3B8;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-cyber-block__status-box {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 20, 36, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
}

.footer-cyber-block__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00FF66;
    box-shadow: 0 0 8px #00FF66;
}

.footer-cyber-block__status-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #F8FAFC;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-cyber-block__col-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #F8FAFC;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-cyber-block__col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #00F0FF;
}

.footer-cyber-block__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-cyber-block__menu-item {
    margin-bottom: 0.75rem;
}

.footer-cyber-block__menu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.25s ease, transform 0.25s ease;
    word-break: break-word;
}

.footer-cyber-block__menu-link i {
    font-size: 1.1rem;
    color: #00F0FF;
    transition: transform 0.25s ease;
}

.footer-cyber-block__menu-link:hover {
    color: #00F0FF;
    transform: translateX(3px);
}

.footer-cyber-block__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-cyber-block__contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(14, 20, 36, 0.6);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cyber-block__contact-icon {
    font-size: 1.25rem;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    flex-shrink: 0;
    line-height: 1;
}

.footer-cyber-block__contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-cyber-block__contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748B;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.footer-cyber-block__contact-value {
    font-size: 0.875rem;
    color: #F8FAFC;
    line-height: 1.4;
    word-break: break-word;
}

.footer-cyber-block__contact-link {
    font-size: 0.875rem;
    color: #F8FAFC;
    text-decoration: none;
    line-height: 1.4;
    word-break: break-word;
    transition: color 0.2s ease;
}

.footer-cyber-block__contact-link:hover {
    color: #00F0FF;
}

.footer-cyber-block__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.footer-cyber-block__copyright {
    font-size: 0.875rem;
    color: #94A3B8;
}

.footer-cyber-block__note {
    font-size: 0.8125rem;
    color: #64748B;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .main-header-block .navbar-collapse {
        background-color: #0E1424;
        border: 1px solid #141C32;
        border-radius: 12px;
        padding: 1rem;
        margin-top: 0.75rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .main-header-block .main-header-nav-list {
        gap: 0.4rem;
        margin-bottom: 1rem !important;
    }

    .main-header-block .main-header-link {
        width: 100%;
        padding: 0.65rem 0.85rem;
        font-size: 0.875rem;
    }

    .main-header-block .main-header-cta-btn {
        width: 100%;
        padding: 0.7rem 1rem;
    }

    .main-header-block .main-header-brand-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .review-detail-hero .review-detail-hero__title {
        font-size: 18px !important;
        hyphens: auto;
    }

    .review-detail-content .review-detail-content__section-heading {
        font-size: 16px !important;
        hyphens: auto;
    }

    .review-detail-content .review-detail-content__sub-heading {
        font-size: 14px !important;
        hyphens: auto;
    }

    .review-detail-content .review-detail-content__main-image {
        height: 220px;
    }

    .footer-cyber-block__brand-title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .footer-cyber-block__col-heading {
        font-size: 1.125rem;
        hyphens: auto;
        margin-top: 0.5rem;
    }

    .footer-cyber-block__bottom {
        text-align: center;
    }
}

/* ===== PAGE TEMPLATE: genres ===== */
.main-header-block {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #090D16;
    border-bottom: 1px solid #141C32;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.main-header-block .main-header-navbar {
    padding: 0.75rem 0;
    background-color: #090D16;
}

.main-header-block .main-header-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
    transition: transform 0.25s ease;
}

.main-header-block .navbar-brand:hover .main-header-logo {
    transform: scale(1.05);
}

.main-header-block .main-header-brand-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #F8FAFC;
    text-transform: uppercase;
    line-height: 1;
}

.main-header-block .main-header-toggler {
    border: 1px solid #141C32;
    background-color: #0E1424;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    outline: none;
    box-shadow: none;
}

.main-header-block .main-header-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.4);
}

.main-header-block .main-header-toggler-icon {
    font-size: 1.6rem;
    color: #00F0FF;
    display: block;
}

.main-header-block .main-header-nav-list {
    gap: 0.25rem;
}

.main-header-block .main-header-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #94A3B8;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.main-header-block .main-header-link-icon {
    font-size: 1.1rem;
    color: #64748B;
    transition: color 0.2s ease;
}

.main-header-block .main-header-link:hover {
    color: #00F0FF;
    background-color: rgba(20, 28, 50, 0.7);
}

.main-header-block .main-header-link:hover .main-header-link-icon {
    color: #00F0FF;
}

.main-header-block .main-header-link.active {
    color: #F8FAFC;
    background-color: #141C32;
}

.main-header-block .main-header-link.active .main-header-link-icon {
    color: #00F0FF;
}

.main-header-block .main-header-cta-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #090D16;
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.35rem;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.main-header-block .main-header-cta-btn:hover {
    color: #090D16;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.6);
    background: linear-gradient(135deg, #38F5FF 0%, #00D2F7 100%);
}

.main-header-block .main-header-cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .main-header-block .navbar-collapse {
        background-color: #0E1424;
        border: 1px solid #141C32;
        border-radius: 12px;
        padding: 1rem;
        margin-top: 0.75rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .main-header-block .main-header-nav-list {
        gap: 0.4rem;
        margin-bottom: 1rem !important;
    }

    .main-header-block .main-header-link {
        width: 100%;
        padding: 0.65rem 0.85rem;
        font-size: 0.875rem;
    }

    .main-header-block .main-header-cta-btn {
        width: 100%;
        padding: 0.7rem 1rem;
    }

    .main-header-block .main-header-brand-title {
        font-size: 1.25rem;
    }
}

.hero-section-gaming {
    position: relative;
    background-color: #090D16;
    color: #F8FAFC;
    overflow: hidden;
    padding: 2.5rem 0 3.5rem;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-section-gaming .hero-glow-bg {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 20%, rgba(0, 240, 255, 0.14) 0%, rgba(121, 40, 202, 0.12) 40%, rgba(9, 13, 22, 0) 75%);
    pointer-events: none;
    z-index: 1;
}

.hero-section-gaming .hero-media-wrapper {
    position: relative;
    width: 100%;
    padding: 0.5rem;
}

.hero-section-gaming .hero-media-frame {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 240, 255, 0.15);
    background: #0E1424;
    transform: translateZ(0);
}

.hero-section-gaming .hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hero-section-gaming .hero-media-frame:hover .hero-main-img {
    transform: scale(1.03);
}

.hero-section-gaming .hero-frame-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 13, 22, 0.05) 0%, rgba(9, 13, 22, 0.75) 100%);
    pointer-events: none;
}

.hero-section-gaming .hero-floating-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(14, 20, 36, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.hero-section-gaming .badge-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00F0FF 0%, #7928CA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090D16;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.hero-section-gaming .badge-title {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #F8FAFC;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.hero-section-gaming .badge-sub {
    display: block;
    font-size: 0.78rem;
    color: #94A3B8;
    line-height: 1.2;
}

.hero-section-gaming .hero-content-block {
    position: relative;
    z-index: 2;
}

.hero-section-gaming .hero-label-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.hero-section-gaming .hero-label-tag i {
    font-size: 1.1rem;
}

.hero-section-gaming .hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: #F8FAFC;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    hyphens: auto;
}

.hero-section-gaming .hero-lead-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 1.75rem;
    max-width: 540px;
}

.hero-section-gaming .btn-hero-cta {
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    color: #090D16;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hero-section-gaming .btn-hero-cta:hover {
    background: linear-gradient(135deg, #38F5FF 0%, #00D2F7 100%);
    color: #090D16;
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(0, 240, 255, 0.55);
}

.hero-section-gaming .btn-hero-secondary {
    background: rgba(20, 28, 50, 0.85);
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hero-section-gaming .btn-hero-secondary:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: #00F0FF;
    color: #00F0FF;
}

.hero-section-gaming .quick-feat-card {
    background: rgba(14, 20, 36, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    height: 100%;
}

.hero-section-gaming .quick-feat-card i {
    font-size: 1.35rem;
    color: #00F0FF;
    flex-shrink: 0;
}

.hero-section-gaming .quick-feat-card strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.88rem;
    color: #F8FAFC;
    line-height: 1.2;
}

.hero-section-gaming .quick-feat-card span {
    font-size: 0.75rem;
    color: #64748B;
    line-height: 1.2;
    display: block;
}

@media (max-width: 767.98px) {
    .hero-section-gaming {
        padding: 1.75rem 0 2.5rem;
    }

    .hero-section-gaming .hero-title {
        font-size: 18px !important;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .hero-section-gaming .hero-lead-text {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .hero-section-gaming .hero-media-frame {
        height: 250px;
        border-radius: 16px;
    }

    .hero-section-gaming .badge-title {
        font-size: 0.85rem;
    }

    .hero-section-gaming .badge-sub {
        font-size: 0.7rem;
    }

    .hero-section-gaming .btn-hero-cta,
    .hero-section-gaming .btn-hero-secondary {
        font-size: 0.875rem;
        padding: 0.65rem 1rem;
    }
}

.genre-detail-main {
    background-color: #090D16;
    color: #F8FAFC;
}

.genre-detail-main .genre-article-card,
.genre-detail-main .genre-comments-section,
.genre-detail-main .sidebar-box {
    background: rgba(14, 20, 36, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.genre-detail-main .genre-article-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #F8FAFC;
    line-height: 1.25;
    text-transform: uppercase;
}

.genre-detail-main .genre-subheading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #00F0FF;
    line-height: 1.3;
    text-transform: uppercase;
}

.genre-detail-main .genre-section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
}

.genre-detail-main .genre-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.genre-detail-main .genre-text-paragraph {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94A3B8;
}

.genre-detail-main .genre-tabs-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.75rem;
}

.genre-detail-main .genre-tab-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #94A3B8;
    background: rgba(20, 28, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.genre-detail-main .genre-tab-btn:hover {
    color: #00F0FF;
    border-color: rgba(0, 240, 255, 0.4);
}

.genre-detail-main .genre-tab-btn.active {
    color: #090D16;
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    border-color: #00F0FF;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.genre-detail-main .genre-tabs-content-box {
    background: rgba(20, 28, 50, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.genre-detail-main .genre-styled-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.genre-detail-main .genre-styled-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #94A3B8;
    font-size: 0.9375rem;
}

.genre-detail-main .genre-styled-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #00F0FF;
    font-size: 0.75rem;
}

.genre-detail-main.genre-action-adventure .genre-styled-list li::before {
    content: '⚡';
    color: #FFB800;
    font-size: 0.85rem;
}

.genre-detail-main.genre-role-playing-games .genre-styled-list li::before {
    content: '✦';
    color: #A855F7;
    font-size: 0.9rem;
}

.genre-detail-main.genre-strategy-tactics .genre-styled-list li::before {
    content: '◆';
    color: #22C55E;
    font-size: 0.8rem;
}

.genre-detail-main.genre-simulations .genre-styled-list li::before {
    content: '◉';
    color: #3B82F6;
    font-size: 0.85rem;
}

.genre-detail-main.genre-competitive-multiplayer .genre-styled-list li::before {
    content: '►';
    color: #FF0055;
    font-size: 0.8rem;
}

.genre-detail-main .genre-showcase-img {
    height: 280px;
    object-fit: cover;
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.genre-detail-main .genre-img-caption {
    font-size: 0.8rem;
    color: #64748B;
}

.genre-detail-main .genre-accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(20, 28, 50, 0.4);
}

.genre-detail-main .genre-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.1rem;
    background: transparent;
    border: none;
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.genre-detail-main .genre-accordion-btn:hover,
.genre-detail-main .genre-accordion-btn.active {
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.05);
}

.genre-detail-main .accordion-icon {
    font-size: 1.3rem;
    transition: transform 0.25s ease;
}

.genre-detail-main .genre-accordion-btn.active .accordion-icon {
    transform: rotate(180deg);
}

.genre-detail-main .genre-accordion-content {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.genre-detail-main .badge-comment-count {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.15);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
}

.gaming-comment-card {
    background: rgba(20, 28, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.gaming-comment-card.reply-comment {
    border-left: 2px solid #7928CA;
    background: rgba(20, 28, 50, 0.4);
}

.gaming-comment-card .comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #090D16;
}

.gaming-comment-card .avatar-cyan {
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.35);
}

.gaming-comment-card .avatar-purple {
    background: linear-gradient(135deg, #A855F7 0%, #7928CA 100%);
    color: #FFFFFF;
    box-shadow: 0 0 10px rgba(121, 40, 202, 0.35);
}

.gaming-comment-card .comment-author {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #F8FAFC;
}

.gaming-comment-card .comment-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gaming-comment-card .badge-pro {
    background: rgba(0, 240, 255, 0.15);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.gaming-comment-card .badge-mod {
    background: rgba(121, 40, 202, 0.25);
    color: #C084FC;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.gaming-comment-card .comment-date {
    font-size: 0.78rem;
    color: #64748B;
}

.gaming-comment-card .comment-rating i {
    color: #FFB800;
    font-size: 0.95rem;
}

.gaming-comment-card .comment-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #94A3B8;
}

.gaming-comment-card .comment-action-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.gaming-comment-card .comment-action-btn:hover,
.gaming-comment-card .comment-action-btn.active {
    color: #00F0FF;
    border-color: rgba(0, 240, 255, 0.4);
    background: rgba(0, 240, 255, 0.08);
}

.genre-detail-main .comment-form-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
}

.genre-detail-main .comment-auth-notice {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: #00F0FF;
    font-size: 0.875rem;
}

.genre-detail-main .form-cyber-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.genre-detail-main .form-cyber-input {
    background-color: #0E1424;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #F8FAFC;
    border-radius: 8px;
    padding: 0.65rem 0.95rem;
    font-size: 0.9rem;
}

.genre-detail-main .form-cyber-input:focus {
    background-color: #0E1424;
    border-color: #00F0FF;
    color: #F8FAFC;
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.3);
}

.genre-detail-main .form-cyber-input::placeholder {
    color: #64748B;
    opacity: 1;
}

.genre-detail-main .star-select-btn {
    background: transparent;
    border: none;
    color: #64748B;
    font-size: 1.25rem;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.genre-detail-main .star-select-btn.active {
    color: #FFB800;
}

.genre-detail-main .rating-value-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #94A3B8;
}

.genre-detail-main .sidebar-sticky-wrap {
    position: sticky;
    top: 90px;
}

.genre-detail-main .sidebar-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.5rem;
}

.genre-detail-main .sidebar-genre-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.genre-detail-main .sidebar-genre-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    background: rgba(20, 28, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #94A3B8;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.genre-detail-main .sidebar-genre-link i {
    color: #00F0FF;
    font-size: 1.1rem;
}

.genre-detail-main .sidebar-genre-link:hover {
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateX(4px);
}

.genre-detail-main .sidebar-game-card {
    background: rgba(20, 28, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
}

.genre-detail-main .game-rank-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #090D16;
    flex-shrink: 0;
}

.genre-detail-main .rank-1 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.genre-detail-main .rank-2 {
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
}

.genre-detail-main .rank-3 {
    background: linear-gradient(135deg, #A855F7 0%, #7928CA 100%);
    color: #FFFFFF;
}

.genre-detail-main .game-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #F8FAFC;
    line-height: 1.2;
}

.genre-detail-main .game-meta {
    font-size: 0.78rem;
    color: #64748B;
}

.genre-detail-main .sidebar-cta-box {
    background: linear-gradient(180deg, rgba(20, 28, 50, 0.9) 0%, rgba(14, 20, 36, 0.95) 100%);
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.genre-detail-main .sidebar-cta-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00F0FF 0%, #7928CA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090D16;
    font-size: 1.6rem;
}

.genre-detail-main .sidebar-cta-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
}

.genre-detail-main .sidebar-cta-desc {
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.5;
}

.text-cyan {
    color: #00F0FF !important;
}

.text-purple {
    color: #C084FC !important;
}

@media (max-width: 767.98px) {
    .genre-detail-main .genre-article-heading {
        font-size: 16px !important;
    }

    .genre-detail-main .genre-subheading {
        font-size: 14px !important;
    }

    .genre-detail-main .genre-section-title {
        font-size: 16px !important;
    }

    .genre-detail-main .genre-showcase-img {
        height: 190px;
    }
}

.footer-cyber-block {
    background-color: #090D16;
    color: #F8FAFC;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-cyber-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00F0FF 50%, transparent 100%);
    pointer-events: none;
}

.footer-cyber-block__brand-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #00F0FF;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
}

.footer-cyber-block__brand-desc {
    color: #94A3B8;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-cyber-block__status-box {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 20, 36, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
}

.footer-cyber-block__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00FF66;
    box-shadow: 0 0 8px #00FF66;
}

.footer-cyber-block__status-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #F8FAFC;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-cyber-block__col-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #F8FAFC;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-cyber-block__col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #00F0FF;
}

.footer-cyber-block__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-cyber-block__menu-item {
    margin-bottom: 0.75rem;
}

.footer-cyber-block__menu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.25s ease, transform 0.25s ease;
    word-break: break-word;
}

.footer-cyber-block__menu-link i {
    font-size: 1.1rem;
    color: #00F0FF;
    transition: transform 0.25s ease;
}

.footer-cyber-block__menu-link:hover {
    color: #00F0FF;
    transform: translateX(3px);
}

.footer-cyber-block__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-cyber-block__contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(14, 20, 36, 0.6);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cyber-block__contact-icon {
    font-size: 1.25rem;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    flex-shrink: 0;
    line-height: 1;
}

.footer-cyber-block__contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-cyber-block__contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748B;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.footer-cyber-block__contact-value {
    font-size: 0.875rem;
    color: #F8FAFC;
    line-height: 1.4;
    word-break: break-word;
}

.footer-cyber-block__contact-link {
    font-size: 0.875rem;
    color: #F8FAFC;
    text-decoration: none;
    line-height: 1.4;
    word-break: break-word;
    transition: color 0.2s ease;
}

.footer-cyber-block__contact-link:hover {
    color: #00F0FF;
}

.footer-cyber-block__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.footer-cyber-block__copyright {
    font-size: 0.875rem;
    color: #94A3B8;
}

.footer-cyber-block__note {
    font-size: 0.8125rem;
    color: #64748B;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .footer-cyber-block__brand-title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .footer-cyber-block__col-heading {
        font-size: 1.125rem;
        hyphens: auto;
        margin-top: 0.5rem;
    }

    .footer-cyber-block__bottom {
        text-align: center;
    }
}

/* ===== PAGE TEMPLATE: guides ===== */
.main-header-block {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #090D16;
    border-bottom: 1px solid #141C32;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.main-header-block .main-header-navbar {
    padding: 0.75rem 0;
    background-color: #090D16;
}

.main-header-block .main-header-logo {
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
    transition: transform 0.25s ease;
}

.main-header-block .navbar-brand:hover .main-header-logo {
    transform: scale(1.05);
}

.main-header-block .main-header-brand-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #F8FAFC;
    text-transform: uppercase;
    line-height: 1;
}

.main-header-block .main-header-toggler {
    border: 1px solid #141C32;
    background-color: #0E1424;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    outline: none;
    box-shadow: none;
}

.main-header-block .main-header-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.4);
}

.main-header-block .main-header-toggler-icon {
    font-size: 1.6rem;
    color: #00F0FF;
    display: block;
}

.main-header-block .main-header-nav-list {
    gap: 0.25rem;
}

.main-header-block .main-header-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #94A3B8;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.main-header-block .main-header-link-icon {
    font-size: 1.1rem;
    color: #64748B;
    transition: color 0.2s ease;
}

.main-header-block .main-header-link:hover {
    color: #00F0FF;
    background-color: rgba(20, 28, 50, 0.7);
}

.main-header-block .main-header-link:hover .main-header-link-icon {
    color: #00F0FF;
}

.main-header-block .main-header-link.active {
    color: #F8FAFC;
    background-color: #141C32;
}

.main-header-block .main-header-link.active .main-header-link-icon {
    color: #00F0FF;
}

.main-header-block .main-header-cta-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #090D16;
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.35rem;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.main-header-block .main-header-cta-btn:hover {
    color: #090D16;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.6);
    background: linear-gradient(135deg, #38F5FF 0%, #00D2F7 100%);
}

.main-header-block .main-header-cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .main-header-block .navbar-collapse {
        background-color: #0E1424;
        border: 1px solid #141C32;
        border-radius: 12px;
        padding: 1rem;
        margin-top: 0.75rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .main-header-block .main-header-nav-list {
        gap: 0.4rem;
        margin-bottom: 1rem !important;
    }

    .main-header-block .main-header-link {
        width: 100%;
        padding: 0.65rem 0.85rem;
        font-size: 0.875rem;
    }

    .main-header-block .main-header-cta-btn {
        width: 100%;
        padding: 0.7rem 1rem;
    }

    .main-header-block .main-header-brand-title {
        font-size: 1.25rem;
    }
}

.guide-detail-page-wrapper {
    background-color: #090D16;
    color: #F8FAFC;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-section-gaming.guide-detail-hero {
    position: relative;
    background-color: #090D16;
    color: #F8FAFC;
    overflow: hidden;
    padding: 2rem 0 3rem;
}

.hero-section-gaming .hero-glow-bg {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 20%, rgba(0, 240, 255, 0.14) 0%, rgba(121, 40, 202, 0.12) 40%, rgba(9, 13, 22, 0) 75%);
    pointer-events: none;
    z-index: 1;
}

.guide-detail-page-wrapper .guide-breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0;
}

.guide-detail-page-wrapper .guide-breadcrumb-link {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.guide-detail-page-wrapper .guide-breadcrumb-link:hover {
    color: #00F0FF;
}

.guide-detail-page-wrapper .breadcrumb-item.active {
    color: #00F0FF;
    font-size: 0.85rem;
}

.guide-detail-page-wrapper .breadcrumb-item+.breadcrumb-item::before {
    color: #64748B;
}

.hero-section-gaming .hero-media-wrapper {
    position: relative;
    width: 100%;
    padding: 0.5rem;
}

.hero-section-gaming .hero-media-frame {
    position: relative;
    width: 100%;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 240, 255, 0.15);
    background: #0E1424;
}

.hero-section-gaming .hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hero-section-gaming .hero-frame-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 13, 22, 0.1) 0%, rgba(9, 13, 22, 0.85) 100%);
    pointer-events: none;
}

.hero-section-gaming .hero-floating-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(14, 20, 36, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.hero-section-gaming .badge-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00F0FF 0%, #7928CA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090D16;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-section-gaming .badge-title {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #F8FAFC;
    line-height: 1.2;
}

.hero-section-gaming .badge-sub {
    display: block;
    font-size: 0.75rem;
    color: #94A3B8;
    line-height: 1.2;
}

.hero-section-gaming .hero-label-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    margin-bottom: 0.85rem;
}

.hero-section-gaming .hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #F8FAFC;
    margin-bottom: 0.85rem;
    hyphens: auto;
}

.hero-section-gaming .hero-lead-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 1.25rem;
}

.guide-detail-page-wrapper .text-cyan {
    color: #00F0FF !important;
}

.guide-detail-page-wrapper .guide-meta-label {
    font-size: 0.8rem;
    color: #64748B;
    text-transform: uppercase;
}

.guide-detail-page-wrapper .guide-meta-value {
    font-size: 0.88rem;
    color: #F8FAFC;
}

.guide-detail-page-wrapper .guide-article-box,
.guide-detail-page-wrapper .guide-discussion-section,
.guide-detail-page-wrapper .guide-sidebar-widget {
    background: rgba(14, 20, 36, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.guide-detail-page-wrapper .guide-tab-btn {
    background: rgba(20, 28, 50, 0.7);
    color: #94A3B8;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.guide-detail-page-wrapper .guide-tab-btn:hover {
    color: #00F0FF;
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.08);
}

.guide-detail-page-wrapper .guide-tab-btn.active {
    color: #090D16;
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.guide-detail-page-wrapper .guide-prose-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    line-height: 1.25;
}

.guide-detail-page-wrapper .guide-prose-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #F8FAFC;
    line-height: 1.3;
}

.guide-detail-page-wrapper .guide-prose-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #94A3B8;
    margin-bottom: 1rem;
}

.guide-detail-page-wrapper .guide-highlight-callout {
    background: rgba(0, 240, 255, 0.06);
    border-left: 3px solid #00F0FF;
    border-radius: 0 10px 10px 0;
}

.guide-detail-page-wrapper .guide-callout-icon {
    font-size: 1.4rem;
    color: #00F0FF;
    margin-top: 0.15rem;
}

.guide-detail-page-wrapper .guide-callout-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #F8FAFC;
}

.guide-detail-page-wrapper .guide-tactic-card {
    background: rgba(20, 28, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    height: 100%;
}

.guide-detail-page-wrapper .guide-card-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
}

.guide-detail-page-wrapper .guide-checklist-list {
    list-style: none;
}

.guide-detail-page-wrapper .guide-checklist-item span {
    font-size: 0.9375rem;
    color: #94A3B8;
    line-height: 1.5;
}

.guide-detail-page-wrapper .border-top-subtle {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-detail-page-wrapper .border-bottom-subtle {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-detail-page-wrapper .guide-subheading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
}

.guide-detail-page-wrapper .guide-faq-trigger {
    background: rgba(20, 28, 50, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: #F8FAFC;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    transition: all 0.25s ease;
}

.guide-detail-page-wrapper .guide-faq-trigger.active {
    border-color: rgba(0, 240, 255, 0.35);
    background: rgba(20, 28, 50, 0.95);
}

.guide-detail-page-wrapper .guide-faq-icon {
    font-size: 1.25rem;
    color: #00F0FF;
    transition: transform 0.25s ease;
}

.guide-detail-page-wrapper .guide-faq-trigger.active .guide-faq-icon {
    transform: rotate(180deg);
}

.guide-detail-page-wrapper .guide-faq-body {
    background: rgba(9, 13, 22, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: none;
    border-radius: 0 0 10px 10px;
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.6;
}

.guide-detail-page-wrapper .btn-discussion-mode {
    background: rgba(20, 28, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.guide-detail-page-wrapper .btn-discussion-mode.active {
    background: #7928CA;
    border-color: #A855F7;
    color: #FFFFFF;
    box-shadow: 0 0 12px rgba(121, 40, 202, 0.4);
}

.gaming-comment-card {
    background: rgba(20, 28, 50, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.gaming-comment-card.reply-comment {
    border-left: 2px solid #7928CA;
    background: rgba(14, 20, 36, 0.65);
}

.gaming-comment-card .comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #090D16;
}

.gaming-comment-card .avatar-cyan {
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
}

.gaming-comment-card .avatar-purple {
    background: linear-gradient(135deg, #A855F7 0%, #7928CA 100%);
    color: #FFFFFF;
}

.gaming-comment-card .comment-author {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #F8FAFC;
}

.gaming-comment-card .comment-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

.gaming-comment-card .badge-pro {
    background: rgba(0, 240, 255, 0.15);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.gaming-comment-card .badge-mod {
    background: rgba(121, 40, 202, 0.2);
    color: #C084FC;
    border: 1px solid rgba(121, 40, 202, 0.4);
}

.gaming-comment-card .comment-date {
    font-size: 0.78rem;
    color: #64748B;
}

.gaming-comment-card .comment-rating i {
    color: #64748B;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.15s ease;
}

.gaming-comment-card .comment-rating i.active {
    color: #FFB800;
}

.gaming-comment-card .comment-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #94A3B8;
}

.gaming-comment-card .comment-action-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.gaming-comment-card .comment-action-btn:hover {
    color: #00F0FF;
    border-color: rgba(0, 240, 255, 0.3);
}

.gaming-comment-card .comment-action-btn.active {
    color: #00F0FF;
    border-color: #00F0FF;
    background: rgba(0, 240, 255, 0.1);
}

.guide-empty-comments-state {
    background: rgba(20, 28, 50, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.guide-empty-icon {
    font-size: 2.2rem;
    color: #64748B;
}

.guide-empty-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #F8FAFC;
}

.guide-empty-desc {
    font-size: 0.85rem;
    color: #94A3B8;
}

.guide-comment-form-block {
    background: rgba(20, 28, 50, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.guide-auth-alert-notice {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
}

.guide-auth-notice-text {
    font-size: 0.85rem;
    color: #F8FAFC;
}

.guide-form-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
}

.guide-form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #94A3B8;
    margin-bottom: 0.35rem;
    display: block;
}

.guide-input,
.guide-textarea {
    background-color: #090D16 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #F8FAFC !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    padding: 0.65rem 0.85rem !important;
}

.guide-input:focus,
.guide-textarea:focus {
    border-color: #00F0FF !important;
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.25) !important;
    background-color: #0E1424 !important;
}

.guide-input::placeholder,
.guide-textarea::placeholder {
    color: #64748B !important;
    opacity: 1 !important;
}

.guide-interactive-rating .guide-rating-star {
    background: transparent;
    border: none;
    padding: 0 2px;
    color: #64748B;
    font-size: 1.15rem;
    cursor: pointer;
    transition: color 0.15s ease;
}

.guide-interactive-rating .guide-rating-star.active {
    color: #FFB800;
}

.btn-guide-submit {
    background: linear-gradient(135deg, #00F0FF 0%, #00B8D9 100%);
    color: #090D16;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-guide-submit:hover {
    color: #090D16;
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(0, 240, 255, 0.6);
}

.guide-sidebar-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
}

.guide-sidebar-toc {
    list-style: none;
}

.guide-toc-link {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0.5rem 0.65rem;
    border-radius: 6px;
    background: rgba(20, 28, 50, 0.5);
    transition: all 0.2s ease;
}

.guide-toc-link:hover {
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.1);
}

.guide-info-label {
    font-size: 0.85rem;
    color: #64748B;
}

.guide-info-val {
    font-size: 0.88rem;
    font-weight: 600;
    color: #F8FAFC;
}

.guide-related-list {
    list-style: none;
}

.guide-related-link .guide-related-title {
    font-size: 0.9rem;
    color: #F8FAFC;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.guide-related-link:hover .guide-related-title {
    color: #00F0FF;
}

.btn-guide-all {
    background: rgba(20, 28, 50, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-guide-all:hover {
    background: rgba(0, 240, 255, 0.15);
    color: #FFFFFF;
}

.footer-cyber-block {
    background-color: #090D16;
    color: #F8FAFC;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-cyber-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00F0FF 50%, transparent 100%);
    pointer-events: none;
}

.footer-cyber-block__brand-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #00F0FF;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
}

.footer-cyber-block__brand-desc {
    color: #94A3B8;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-cyber-block__status-box {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 20, 36, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
}

.footer-cyber-block__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00FF66;
    box-shadow: 0 0 8px #00FF66;
}

.footer-cyber-block__status-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #F8FAFC;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-cyber-block__col-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #F8FAFC;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-cyber-block__col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #00F0FF;
}

.footer-cyber-block__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-cyber-block__menu-item {
    margin-bottom: 0.75rem;
}

.footer-cyber-block__menu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.25s ease, transform 0.25s ease;
    word-break: break-word;
}

.footer-cyber-block__menu-link i {
    font-size: 1.1rem;
    color: #00F0FF;
    transition: transform 0.25s ease;
}

.footer-cyber-block__menu-link:hover {
    color: #00F0FF;
    transform: translateX(3px);
}

.footer-cyber-block__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-cyber-block__contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(14, 20, 36, 0.6);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cyber-block__contact-icon {
    font-size: 1.25rem;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    flex-shrink: 0;
    line-height: 1;
}

.footer-cyber-block__contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-cyber-block__contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748B;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.footer-cyber-block__contact-value {
    font-size: 0.875rem;
    color: #F8FAFC;
    line-height: 1.4;
    word-break: break-word;
}

.footer-cyber-block__contact-link {
    font-size: 0.875rem;
    color: #F8FAFC;
    text-decoration: none;
    line-height: 1.4;
    word-break: break-word;
    transition: color 0.2s ease;
}

.footer-cyber-block__contact-link:hover {
    color: #00F0FF;
}

.footer-cyber-block__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.footer-cyber-block__copyright {
    font-size: 0.875rem;
    color: #94A3B8;
}

.footer-cyber-block__note {
    font-size: 0.8125rem;
    color: #64748B;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .hero-section-gaming .hero-title {
        font-size: 18px !important;
        line-height: 1.25;
    }

    .hero-section-gaming .hero-lead-text {
        font-size: 0.875rem;
    }

    .hero-section-gaming .hero-media-frame {
        height: 240px;
    }

    .guide-detail-page-wrapper .guide-prose-content h2 {
        font-size: 16px !important;
    }

    .guide-detail-page-wrapper .guide-prose-content h3 {
        font-size: 14px !important;
    }

    .guide-detail-page-wrapper .guide-subheading {
        font-size: 16px !important;
    }

    .gaming-comment-card.reply-comment {
        margin-left: 1rem !important;
    }

    .footer-cyber-block__brand-title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .footer-cyber-block__col-heading {
        font-size: 1.125rem;
        hyphens: auto;
        margin-top: 0.5rem;
    }

    .footer-cyber-block__bottom {
        text-align: center;
    }
}
/* ===== Star Rating Widget for Comment Form ===== */
.star-rating-widget {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
    font-size: 1.75rem;
    line-height: 1;
}

.star-rating-widget__star {
    cursor: pointer;
    color: #334155;
    transition: color 0.15s ease, transform 0.15s ease;
    user-select: none;
}

.star-rating-widget__star:hover,
.star-rating-widget__star:hover ~ .star-rating-widget__star,
.star-rating-widget__star.is-active,
.star-rating-widget__star.is-active ~ .star-rating-widget__star {
    color: #FFB800;
}

.star-rating-widget__star:hover {
    transform: scale(1.15);
}

.star-rating-widget__label-text {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-left: 0.5rem;
}

/* ===== Genre Comment Submit Button ===== */
.genre-comments-section .js-comment-submit-btn {
    background: linear-gradient(135deg, #00F0FF 0%, #0099CC 100%);
    color: #0E1424;
    border: 1px solid rgba(0, 240, 255, 0.5);
    border-radius: 10px;
    padding: 0.7rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.25);
    cursor: pointer;
}

.genre-comments-section .js-comment-submit-btn:hover {
    background: linear-gradient(135deg, #00FF66 0%, #00CC52 100%);
    color: #0E1424;
    border-color: rgba(0, 255, 102, 0.6);
    box-shadow: 0 6px 22px rgba(0, 255, 102, 0.35);
    transform: translateY(-2px);
}

.genre-comments-section .js-comment-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 240, 255, 0.2);
}

/* ===== Guide Callout Variants ===== */
.guide-detail-page-wrapper .guide-highlight-callout--gold {
    background: rgba(255, 184, 0, 0.07);
    border-left-color: #FFB800;
}
.guide-detail-page-wrapper .guide-highlight-callout--gold .guide-callout-icon {
    color: #FFB800;
}

.guide-detail-page-wrapper .guide-highlight-callout--purple {
    background: rgba(168, 85, 247, 0.07);
    border-left-color: #A855F7;
}
.guide-detail-page-wrapper .guide-highlight-callout--purple .guide-callout-icon {
    color: #A855F7;
}

.guide-detail-page-wrapper .guide-highlight-callout--green {
    background: rgba(0, 255, 102, 0.07);
    border-left-color: #00FF66;
}
.guide-detail-page-wrapper .guide-highlight-callout--green .guide-callout-icon {
    color: #00FF66;
}

.guide-detail-page-wrapper .guide-highlight-callout--orange {
    background: rgba(255, 107, 53, 0.07);
    border-left-color: #FF6B35;
}
.guide-detail-page-wrapper .guide-highlight-callout--orange .guide-callout-icon {
    color: #FF6B35;
}

/* ===== Contact Feedback Form ===== */
.contact-feedback-form {
    background: rgba(20, 28, 50, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
}

.contact-feedback-form__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #F8FAFC;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-feedback-form__subtitle {
    color: #94A3B8;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.contact-feedback-form__label {
    display: block;
    font-size: 0.85rem;
    color: #CBD5E1;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.contact-feedback-form__input,
.contact-feedback-form__select,
.contact-feedback-form__textarea {
    width: 100%;
    background: rgba(9, 13, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    color: #F8FAFC;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-feedback-form__input:focus,
.contact-feedback-form__select:focus,
.contact-feedback-form__textarea:focus {
    outline: none;
    border-color: #00F0FF;
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
}

.contact-feedback-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-feedback-form__submit {
    background: linear-gradient(135deg, #00F0FF 0%, #0099CC 100%);
    color: #0E1424;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.25);
}

.contact-feedback-form__submit:hover {
    background: linear-gradient(135deg, #00FF66 0%, #00CC52 100%);
    box-shadow: 0 6px 22px rgba(0, 255, 102, 0.35);
    transform: translateY(-2px);
}

/* ===== Review Card Star Rating Badge ===== */
.reviews-grid-card__star-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(9, 13, 22, 0.88);
    border: 1px solid rgba(255, 184, 0, 0.4);
    border-radius: 8px;
    padding: 0.3rem 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.reviews-grid-card__star-badge .star-row {
    display: flex;
    gap: 1px;
    font-size: 0.7rem;
    line-height: 1;
}

.reviews-grid-card__star-badge .star-row .bx {
    color: #FFB800;
}

.reviews-grid-card__star-badge .star-row .bx.bx-star {
    color: #334155;
}

.reviews-grid-card__star-badge .badge-rating-text {
    color: #FFB800;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

/* ===== Tour Card Star Rating Badge ===== */
.tour-star-badge {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0.5rem;
    background: rgba(9, 13, 22, 0.88);
    border: 1px solid rgba(255, 184, 0, 0.4);
    border-radius: 8px;
    padding: 0.3rem 0.55rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.tour-star-badge .star-row {
    display: flex;
    gap: 1px;
    font-size: 0.65rem;
    line-height: 1;
}

.tour-star-badge .star-row .bx.bxs-star,
.tour-star-badge .star-row .bx.bxs-star-half {
    color: #FFB800;
}

.tour-star-badge .star-row .bx.bx-star {
    color: #334155;
}

.tour-star-badge .badge-rating-text {
    color: #FFB800;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

/* ===== Reviews List Star Badge ===== */
.reviews-list-section__star-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(9, 13, 22, 0.88);
    border: 1px solid rgba(255, 184, 0, 0.4);
    border-radius: 8px;
    padding: 0.3rem 0.55rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.reviews-list-section__star-badge .star-row {
    display: flex;
    gap: 1px;
    font-size: 0.7rem;
    line-height: 1;
}

.reviews-list-section__star-badge .star-row .bx.bxs-star,
.reviews-list-section__star-badge .star-row .bx.bxs-star-half {
    color: #FFB800;
}

.reviews-list-section__star-badge .star-row .bx.bx-star {
    color: #334155;
}

.reviews-list-section__star-badge .badge-rating-text {
    color: #FFB800;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}
