/* =============================================
   NEON TEMPLATE — Blue + Gold (Olymp) — style.css
   Unique: hover-zoom slots, snap-scroll providers,
   neon glow feature cards, scanline hero, tech font headings
   Palette: Electric Blue #4d8bff + Gold #f7b636
   ============================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(77, 139, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 139, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #6da0ff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- Section Titles ----- */
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 44px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title--glow {
    text-shadow: 0 0 20px rgba(77, 139, 255, 0.35), 0 0 60px rgba(77, 139, 255, 0.1);
}

.section-title--glow::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), transparent);
    border-radius: 2px;
}

/* =============================================
   HEADER — Full Nav Bar with neon bottom glow
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: var(--header-height);
    background: rgba(8, 13, 26, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(77, 139, 255, 0.06);
    transition: all var(--transition);
}

/* Neon glow line below header */
.header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(77, 139, 255, 0.5) 20%,
        rgba(247, 182, 54, 0.5) 50%,
        rgba(77, 139, 255, 0.5) 80%,
        transparent 100%
    );
    box-shadow: 0 0 15px rgba(77, 139, 255, 0.3), 0 0 30px rgba(247, 182, 54, 0.15);
}

.header--scrolled {
    background: rgba(8, 13, 26, 0.93);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__logo img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(77, 139, 255, 0.2));
    transition: filter var(--transition);
}

.header__logo:hover img {
    filter: drop-shadow(0 0 14px rgba(77, 139, 255, 0.5));
}

/* Inline nav in the middle */
.header__nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.header__nav-link {
    font-family: var(--font-heading);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header__nav-link:hover {
    color: var(--color-primary);
    border-color: rgba(77, 139, 255, 0.2);
    background: rgba(77, 139, 255, 0.05);
    text-shadow: 0 0 10px rgba(77, 139, 255, 0.3);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

/* (mobile login button removed) */

/* ----- Hamburger ----- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(77, 139, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1100;
    transition: all var(--transition);
}

.hamburger:hover {
    border-color: var(--color-primary);
    box-shadow: var(--glow-blue);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px rgba(77, 139, 255, 0.4);
}

.hamburger.is-active {
    border-color: rgba(247, 182, 54, 0.6);
    background: rgba(13, 20, 40, 0.9);
    z-index: 1100;
}

.hamburger.is-active span {
    background: #f7b636;
    box-shadow: 0 0 8px rgba(247, 182, 54, 0.6);
}

.hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----- Mobile Menu (full-screen overlay) ----- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: rgba(8, 13, 26, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 80px 20px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
    padding: 10px 28px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-menu__link:hover {
    color: var(--color-primary);
    border-color: rgba(77, 139, 255, 0.15);
    text-shadow: var(--glow-blue);
}

.mobile-menu__actions {
    display: flex;
    gap: 12px;
}

.mobile-menu__lang {
    margin-top: 10px;
}

/* =============================================
   BUTTONS — Neon themed
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    padding: 10px 24px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.btn--lg {
    padding: 16px 44px;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

/* Primary neon gradient button */
.btn--neon {
    background: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    font-weight: 700;
}

.btn--neon:hover {
    background: var(--color-secondary);
    color: #080d1a;
    box-shadow: 0 0 20px rgba(247, 182, 54, 0.3);
    transform: translateY(-2px);
}

/* Ghost outline button */
.btn--ghost {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid rgba(77, 139, 255, 0.4);
}

.btn--ghost:hover {
    color: #fff;
    border-color: var(--color-primary);
    background: rgba(77, 139, 255, 0.08);
    box-shadow: var(--glow-blue);
}

/* Pulsing glow animation */
.btn--pulse {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(77, 139, 255, 0.3), 0 0 40px rgba(247, 182, 54, 0.15); }
    50% { box-shadow: 0 0 35px rgba(77, 139, 255, 0.5), 0 0 70px rgba(247, 182, 54, 0.3); }
}

/* =============================================
   HERO — Cyberpunk with grid overlay + scanline
   ============================================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 25% 15%, rgba(77, 139, 255, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 85%, rgba(247, 182, 54, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(13, 20, 40, 0.8) 0%, var(--color-bg) 70%);
}

/* CSS grid pattern overlay */
.hero__grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(77, 139, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 139, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 20%, transparent 70%);
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Scanline effect */
.hero__scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(77, 139, 255, 0.015) 2px,
        rgba(77, 139, 255, 0.015) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--color-primary);
    border: 1px solid rgba(77, 139, 255, 0.3);
    padding: 6px 20px;
    border-radius: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: rgba(77, 139, 255, 0.04);
    text-shadow: 0 0 10px rgba(77, 139, 255, 0.3);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 40px rgba(77, 139, 255, 0.45), 0 0 100px rgba(77, 139, 255, 0.15);
    animation: fadeInUp 0.8s ease-out;
}

.hero__desc {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero__cta {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   FEATURES — 4 Neon-Glow Advantage Cards
   ============================================= */
.features {
    padding: 80px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle top glow line on each card */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    border-radius: 0 0 4px 4px;
    transition: all 0.4s ease;
}

.feature-card--blue::before {
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0 0 12px rgba(77, 139, 255, 0.3);
}

.feature-card--gold::before {
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    box-shadow: 0 0 12px rgba(247, 182, 54, 0.3);
}

.feature-card:hover {
    transform: translateY(-6px);
    background: var(--color-bg-card-hover);
}

.feature-card--blue:hover {
    border-color: rgba(77, 139, 255, 0.3);
    box-shadow: var(--glow-blue);
}

.feature-card--gold:hover {
    border-color: rgba(247, 182, 54, 0.3);
    box-shadow: var(--glow-gold);
}

.feature-card:hover::before {
    left: 10%;
    right: 10%;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: rgba(77, 139, 255, 0.04);
    transition: all 0.4s ease;
}

.feature-card--blue .feature-icon {
    color: var(--color-primary);
}

.feature-card--gold .feature-icon {
    color: var(--color-secondary);
}

.feature-card--blue:hover .feature-icon {
    border-color: rgba(77, 139, 255, 0.4);
    box-shadow: 0 0 20px rgba(77, 139, 255, 0.2);
    background: rgba(77, 139, 255, 0.08);
}

.feature-card--gold:hover .feature-icon {
    border-color: rgba(247, 182, 54, 0.4);
    box-shadow: 0 0 20px rgba(247, 182, 54, 0.2);
    background: rgba(247, 182, 54, 0.08);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* =============================================
   SLOTS — Hover-Zoom Grid with Neon Glow
   ============================================= */
.slots {
    padding: 80px 0;
}

.slots__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.slot-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
}

/* Hover zoom + neon glow (alternating cyan/magenta) */
.slot-card:hover {
    transform: scale(1.04);
    z-index: 2;
}

.slot-card--blue:hover {
    border-color: rgba(77, 139, 255, 0.5);
    box-shadow: 0 0 20px rgba(77, 139, 255, 0.35), 0 0 40px rgba(77, 139, 255, 0.12), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.slot-card--gold:hover {
    border-color: rgba(247, 182, 54, 0.5);
    box-shadow: 0 0 20px rgba(247, 182, 54, 0.35), 0 0 40px rgba(247, 182, 54, 0.12), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.slot-card__img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #060a18;
}

.slot-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slot-card:hover .slot-card__img img {
    transform: scale(1.12);
}

/* Play button overlay on hover */
.slot-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 13, 26, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slot-card:hover .slot-card__overlay {
    opacity: 1;
}

.slot-card__play-btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-secondary);
    background: transparent;
    border: 2px solid var(--color-secondary);
    padding: 10px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transform: translateY(10px);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.slot-card:hover .slot-card__play-btn {
    background: var(--color-secondary);
    color: #080d1a;
}

.slot-card:hover .slot-card__play-btn {
    transform: translateY(0);
}

.slot-card__info {
    padding: 12px 14px;
}

.slot-card__name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* =============================================
   PROVIDERS — Horizontal Snap Scroll
   ============================================= */
.providers {
    padding: 70px 0;
    border-top: 1px solid rgba(77, 139, 255, 0.06);
}

.providers-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(77, 139, 255, 0.2) transparent;
}

.providers-scroll::-webkit-scrollbar {
    height: 6px;
}

.providers-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.providers-scroll::-webkit-scrollbar-thumb {
    background: rgba(77, 139, 255, 0.2);
    border-radius: 3px;
}

.providers-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(77, 139, 255, 0.4);
}

.provider-card {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 14px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
}

.provider-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--glow-blue);
    background: var(--color-bg-card-hover);
}

.provider-card img {
    width: 80px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(30%) brightness(1.1);
    transition: filter var(--transition);
}

.provider-card:hover img {
    filter: grayscale(0%) brightness(1.3) drop-shadow(0 0 6px rgba(77, 139, 255, 0.3));
}

/* =============================================
   CONTENT SECTIONS (BCR) — Neon styled
   ============================================= */
.content-sections {
    padding: 70px 0;
}

/* BCR nav pills */
.bcr-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(77, 139, 255, 0.08);
}

.bcr-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: rgba(77, 139, 255, 0.03);
    border: 1px solid rgba(77, 139, 255, 0.1);
    border-radius: 4px;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bcr-nav a:hover,
.bcr-nav a.active {
    color: var(--color-primary);
    border-color: rgba(77, 139, 255, 0.35);
    background: rgba(77, 139, 255, 0.08);
    box-shadow: 0 0 12px rgba(77, 139, 255, 0.15);
    text-shadow: 0 0 8px rgba(77, 139, 255, 0.3);
}

/* Content blocks */
.content-block {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 20px;
    transition: border-color var(--transition);
    position: relative;
}

/* Left neon accent stripe */
.content-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 8px rgba(77, 139, 255, 0.3);
}

.content-block:hover {
    border-color: var(--color-border-hover);
}

.content-block h2,
.content-block h3,
.content-block h4 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-block h2 { font-size: 1.3rem; }
.content-block h3 { font-size: 1.1rem; }
.content-block h4 { font-size: 0.95rem; }

.content-block p {
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-block a {
    color: var(--color-primary);
}

.content-block a:hover {
    text-shadow: 0 0 8px rgba(77, 139, 255, 0.3);
}

.content-block ul,
.content-block ol {
    padding-left: 24px;
    margin-bottom: 12px;
}

.content-block li {
    color: var(--color-text);
    margin-bottom: 6px;
    line-height: 1.6;
}

/* Tables */
.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.content-block table th,
.content-block table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(77, 139, 255, 0.1);
}

.content-block table th {
    background: rgba(77, 139, 255, 0.06);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-block table td {
    color: var(--color-text);
    font-size: 0.9rem;
}

.content-block table tr:hover td {
    background: rgba(77, 139, 255, 0.03);
}

.content-body p:last-child {
    margin-bottom: 0;
}

/* =============================================
   FAQ — Cyberpunk accordion
   ============================================= */
.faq-section {
    padding: 70px 0;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    transition: all var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--color-border-hover);
}

.faq-item.faq-open {
    border-color: rgba(77, 139, 255, 0.35);
    box-shadow: 0 0 18px rgba(77, 139, 255, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    gap: 12px;
}

.faq-question h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    flex: 1;
}

.faq-item.faq-open .faq-question h3 {
    color: var(--color-primary);
}

.faq-arrow {
    color: var(--color-primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    opacity: 0.5;
}

.faq-item.faq-open .faq-arrow {
    transform: rotate(180deg);
    opacity: 1;
    text-shadow: 0 0 10px rgba(77, 139, 255, 0.4);
}

.faq-answer {
    /* max-height and overflow handled by engine faq.css */
    color: var(--color-text-muted);
}

.faq-answer,
.faq-answer p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--color-primary);
}

.faq-answer h2,
.faq-answer h3,
.faq-answer h4 {
    color: #fff;
}

.faq-answer li {
    color: var(--color-text-muted);
}

.faq-answer table th {
    color: var(--color-primary);
    background: rgba(77, 139, 255, 0.06);
}

.faq-answer table td {
    color: var(--color-text-muted);
}

.faq-answer table th,
.faq-answer table td {
    border-color: rgba(77, 139, 255, 0.1);
    padding: 8px 12px;
}

/* =============================================
   REVIEWS — Neon card grid
   ============================================= */
.reviews-section {
    padding: 70px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.review-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
    position: relative;
}

.review-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: var(--glow-blue);
}

/* Alternating top line on review cards */
.review-card:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.review-card:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(77, 139, 255, 0.12), rgba(247, 182, 54, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
    border: 1px solid rgba(77, 139, 255, 0.2);
    font-family: var(--font-heading);
}

.review-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.review-stars {
    margin-bottom: 10px;
    color: #f7b636;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(247, 182, 54, 0.3);
}

.review-text {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* =============================================
   FOOTER — with neon top line
   ============================================= */
.footer {
    padding: 40px 0;
    background: rgba(4, 8, 18, 0.6);
    position: relative;
}

.footer__neon-line {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(247, 182, 54, 0.4) 25%,
        rgba(77, 139, 255, 0.5) 50%,
        rgba(247, 182, 54, 0.4) 75%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(77, 139, 255, 0.2);
    margin-bottom: 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 40px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__logo img {
    height: 32px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition);
    filter: drop-shadow(0 0 4px rgba(77, 139, 255, 0.15));
}

.footer__logo:hover img {
    opacity: 1;
}

.footer__copy {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

.footer__lang {
    display: flex;
    align-items: center;
}

/* =============================================
   LANG SWITCHER THEME
   ============================================= */
[data-lang-switcher] {
    --ls-bg: rgba(13, 20, 40, 0.95);
    --ls-border: rgba(77, 139, 255, 0.2);
    --ls-text: #c8d6e8;
    --ls-hover-bg: rgba(77, 139, 255, 0.1);
    --ls-hover-text: #4d8bff;
    --ls-accent: #4d8bff;
    --ls-radius: 4px;
}

/* =============================================
   POPUP (engine-injected)
   ============================================= */
.popup-overlay {
    background: rgba(8, 13, 26, 0.88) !important;
    backdrop-filter: blur(10px);
}

.popup-content {
    background: var(--color-bg-card) !important;
    border: 1px solid rgba(77, 139, 255, 0.25) !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 0 30px rgba(77, 139, 255, 0.15), 0 0 60px rgba(247, 182, 54, 0.1) !important;
}

.popup-text {
    color: var(--color-text) !important;
    font-family: var(--font-body) !important;
}

.popup-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)) !important;
    color: #080d1a !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* =============================================
   RESPONSIVE — TABLET (768px)
   ============================================= */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .header__inner {
        gap: 10px;
    }

    .header__logo {
        margin-right: auto;
    }

    .header__nav {
        display: none;
    }

    .header__actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        min-height: 70vh;
        padding: 110px 20px 70px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__desc {
        font-size: 1rem;
    }

    .hero__badge {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    /* Features: 2 columns on tablet */
    .features {
        padding: 50px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .feature-card {
        padding: 24px 18px;
    }

    /* Slots: 3 columns */
    .slots {
        padding: 50px 0;
    }

    .slots__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    /* Providers: already scrollable */
    .providers {
        padding: 40px 0;
    }

    .content-block {
        padding: 20px;
    }

    .bcr-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .bcr-nav a {
        flex-shrink: 0;
    }

    .review-card {
        padding: 18px;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer__brand {
        align-items: center;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (480px)
   ============================================= */
@media (max-width: 480px) {
    .header__inner {
        gap: 8px;
    }

    .hero__title {
        font-size: 1.7rem;
    }

    .hero__desc {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .btn--lg {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    /* Features: single column */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Slots: 2 columns */
    .slots__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Slot card overlay always visible on mobile (no hover) */
    .slot-card__overlay {
        opacity: 0;
    }

    .slot-card__name {
        font-size: 0.8rem;
    }

    .slot-card__info {
        padding: 8px 10px;
    }

    /* Provider card smaller */
    .provider-card {
        width: 110px;
        padding: 12px 10px;
    }

    .content-block {
        padding: 16px;
    }

    .content-block table {
        font-size: 0.8rem;
    }

    .content-block table th,
    .content-block table td {
        padding: 6px 8px;
    }

    .faq-question {
        padding: 12px 16px;
    }

    .faq-question h3 {
        font-size: 0.85rem;
    }

    .faq-answer {
        padding: 0 16px 12px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .mobile-menu__link {
        font-size: 1.1rem;
    }

    .mobile-menu__actions {
        flex-direction: column;
        width: 100%;
        max-width: 260px;
    }

    .mobile-menu__actions .btn {
        width: 100%;
    }
}

/* =============================================
   WIDE SCREENS
   ============================================= */
@media (min-width: 1400px) {
    .slots__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* =============================================
   ANIMATIONS & EFFECTS
   ============================================= */

/* Neon border color cycle on hovered slot cards */
@keyframes neonBorderBlue {
    0%, 100% { border-color: rgba(77, 139, 255, 0.5); }
    50% { border-color: rgba(77, 139, 255, 0.25); }
}

@keyframes neonBorderGold {
    0%, 100% { border-color: rgba(247, 182, 54, 0.5); }
    50% { border-color: rgba(247, 182, 54, 0.25); }
}

.slot-card--blue:hover {
    animation: neonBorderBlue 2s ease-in-out infinite;
}

.slot-card--gold:hover {
    animation: neonBorderGold 2s ease-in-out infinite;
}

/* Selection color */
::selection {
    background: rgba(77, 139, 255, 0.25);
    color: #fff;
}

/* Scrollbar (global) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(77, 139, 255, 0.12);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(77, 139, 255, 0.3);
}

/* Focus styles for accessibility */
.btn:focus-visible,
.slot-card:focus-visible,
.provider-card:focus-visible,
.header__nav-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Slot image type: vertical */
[data-slot-type="vertical"] .slot-card__img { aspect-ratio: 3/4; }
[data-slot-type="vertical"] .slot-card__img img { object-fit: cover; }

/* Slot image type: horizontal */
[data-slot-type="horizontal"] .slot-card__img { aspect-ratio: 16/9; }
[data-slot-type="horizontal"] .slot-card__img img { object-fit: cover; }
