/* === CYBER HACKER THEME — NEON TERMINAL HUD === */
:root {
    --bg-0: #05080d;
    --bg-1: #0a1118;
    --bg-2: #0e1820;
    --fg: #dfeee7;
    --fg-dim: #7a8590;
    --neon-green: #00ff9d;
    --neon-cyan: #22d3ff;
    --neon-pink: #ff2e88;
    --neon-amber: #ffcc00;
    --border: rgba(0, 255, 157, 0.28);
    --border-dim: rgba(0, 255, 157, 0.1);
    --font-display: 'Chakra Petch', 'Be Vietnam Pro', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --font-body: 'Chakra Petch', 'Be Vietnam Pro', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg-0);
    font-family: var(--font-body);
    color: var(--fg);
    overflow-x: hidden;
    width: 100%;
    min-height: 100dvh;
    position: relative;
    perspective: 1400px;
}

/* === MATRIX RAIN CANVAS === */
.matrix-rain {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* === VIDEO BACKGROUND — light cyber tint, keep details visible === */
.video-bg {
    position: fixed;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(0.9) brightness(0.85) contrast(1.05);
    opacity: 1;
}

.overlay-bg {
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(34,211,255,0.08), transparent 55%),
      radial-gradient(ellipse at 50% 100%, rgba(0,255,157,0.08), transparent 55%),
      radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(5,8,13,0.45) 100%),
      linear-gradient(180deg, rgba(5,8,13,0.25), rgba(5,8,13,0.4));
    z-index: 1;
}

/* === SCAN LINES OVERLAY === */
.scan-lines {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0) 0px,
        rgba(0,0,0,0) 2px,
        rgba(0,255,157,0.035) 3px,
        rgba(0,0,0,0) 4px
    );
    mix-blend-mode: screen;
}

/* === HORIZONTAL SCAN SWEEP === */
.scan-sweep {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    overflow: hidden;
}
.scan-sweep::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 140px;
    background: linear-gradient(180deg, transparent, rgba(34,211,255,0.05), rgba(0,255,157,0.1), rgba(34,211,255,0.05), transparent);
    animation: scanDown 7s linear infinite;
    will-change: transform;
}
@keyframes scanDown {
    0%   { transform: translateY(-20vh); }
    100% { transform: translateY(120vh); }
}

/* === GRAIN / NOISE TEXTURE === */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    opacity: 0.09;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* === MAIN CONTENT === */
.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100dvh;
    padding: 18px 14px 60px;
    transform-style: preserve-3d;
}

/* === TERMINAL PROMPT LINE === */
.terminal-line {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--neon-green);
    letter-spacing: 1px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 18px;
    align-self: flex-start;
    padding-left: 4px;
    max-width: 100%;
    word-break: break-all;
    text-shadow: 0 0 10px rgba(0,255,157,0.4);
}
.terminal-line::before {
    content: '>';
    color: var(--neon-cyan);
    font-weight: 700;
}
.cursor-blink {
    display: inline-block;
    width: 9px;
    height: 14px;
    background: var(--neon-green);
    animation: blink 1s steps(2) infinite;
    margin-left: 4px;
    box-shadow: 0 0 8px var(--neon-green);
}
@keyframes blink { 50% { opacity: 0; } }

/* === HUD PANEL FRAME === */
.hud-panel {
    position: relative;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(10,17,24,0.82), rgba(5,8,13,0.88));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0;
}
.hud-panel::before, .hud-panel::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border: 2px solid var(--neon-green);
    pointer-events: none;
    z-index: 3;
}
.hud-panel::before {
    top: -2px; left: -2px;
    border-right: none;
    border-bottom: none;
}
.hud-panel::after {
    bottom: -2px; right: -2px;
    border-left: none;
    border-top: none;
}
.hud-corner-tr, .hud-corner-bl {
    position: absolute;
    width: 22px; height: 22px;
    border: 2px solid var(--neon-cyan);
    pointer-events: none;
    z-index: 3;
}
.hud-corner-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.hud-corner-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }

/* === LOGO === */
.logo-container {
    margin: 6px 0 18px;
    text-align: center;
    width: 100%;
    transform: translateZ(30px);
}
.logo {
    width: 420px;
    max-width: 92%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter:
        drop-shadow(0 0 18px rgba(0,255,157,0.5))
        drop-shadow(0 0 40px rgba(34,211,255,0.28))
        brightness(1.08);
    animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 18px rgba(0,255,157,0.5)) drop-shadow(0 0 40px rgba(34,211,255,0.28)) brightness(1.08);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(0,255,157,0.75)) drop-shadow(0 0 60px rgba(34,211,255,0.45)) brightness(1.18);
    }
}

/* === MARQUEE === */
.marquee-text {
    width: 100%;
    background: linear-gradient(90deg, rgba(0,255,157,0.08), rgba(34,211,255,0.05), rgba(0,255,157,0.08));
    padding: 12px 0;
    border-top: 1px solid var(--neon-green);
    border-bottom: 1px solid var(--neon-green);
    margin-bottom: 28px;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-mono);
    color: var(--neon-green);
    font-size: clamp(12px, 3.4vw, 16px);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow:
        0 0 28px rgba(0,255,157,0.18),
        inset 0 0 20px rgba(0,255,157,0.05);
    position: relative;
}
.marquee-text::before {
    content: '// LIVE BROADCAST //';
    position: absolute;
    top: 50%; left: 16px;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--neon-pink);
    background: var(--bg-0);
    padding: 3px 8px;
    border: 1px solid var(--neon-pink);
    letter-spacing: 2px;
    z-index: 2;
    box-shadow: 0 0 12px rgba(255,46,136,0.35);
    font-weight: 600;
}
.marquee-inner {
    display: inline-block;
    animation: scrollText 24s linear infinite;
    padding-left: 100%;
}
@keyframes scrollText {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* === CTA BUTTON === */
.btn-wrapper {
    margin: 8px 0 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    perspective: 900px;
}
.ref-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(0,255,157,0.14), rgba(34,211,255,0.06));
    color: var(--neon-green);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(18px, 5vw, 28px);
    padding: clamp(14px, 3vw, 20px) clamp(28px, 7vw, 60px);
    text-decoration: none;
    letter-spacing: 5px;
    text-transform: uppercase;
    border: 2px solid var(--neon-green);
    clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
    box-shadow:
        0 0 30px rgba(0,255,157,0.4),
        inset 0 0 20px rgba(0,255,157,0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.2,0.9,0.3,1), box-shadow 0.28s ease, color 0.28s ease;
    transform-style: preserve-3d;
    will-change: transform;
    cursor: pointer;
    text-shadow: 0 0 14px rgba(0,255,157,0.55);
}
.ref-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0,255,157,0.28), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
    pointer-events: none;
}
.ref-btn::after {
    content: '▶';
    font-size: 0.7em;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}
.ref-btn:hover {
    transform: translateY(-4px) rotateX(-8deg);
    color: #fff;
    box-shadow:
        0 14px 44px rgba(0,255,157,0.55),
        inset 0 0 30px rgba(0,255,157,0.22);
}
.ref-btn:hover::before { transform: translateX(100%); }

/* === FLAG SECTION — 3D TILT === */
.flag-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1100px;
}
.flag-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    transform-style: preserve-3d;
}
.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    margin-bottom: 16px;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.2,0.9,0.3,1);
    will-change: transform;
}
.flag-item:hover {
    transform: rotateY(var(--tilt-x, 0deg)) rotateX(var(--tilt-y, 0deg)) translateZ(24px);
}
.flag-item a {
    position: relative;
    display: block;
    transform-style: preserve-3d;
    padding: 16px;
}
.flag {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-cyan);
    box-shadow:
        0 0 30px rgba(34,211,255,0.55),
        0 0 55px rgba(0,255,157,0.22),
        inset 0 0 20px rgba(0,0,0,0.55);
    animation: spinLeft 12s linear infinite;
    pointer-events: none;
    position: relative;
    z-index: 2;
    display: block;
}
.flag-item a::before,
.flag-item a::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.flag-item a::before {
    width: 134px; height: 134px;
    border: 1px dashed rgba(0,255,157,0.45);
    animation: ringSpin 18s linear infinite reverse;
}
.flag-item a::after {
    width: 162px; height: 162px;
    border: 1px dotted rgba(34,211,255,0.3);
    animation: ringSpin 28s linear infinite;
}
@keyframes spinLeft {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}
@keyframes ringSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.flag-item:active { opacity: 0.85; }

.greeting {
    font-family: var(--font-mono);
    font-size: clamp(12px, 3.5vw, 15px);
    font-weight: 500;
    color: var(--neon-green);
    margin-top: 10px;
    margin-bottom: 2px;
    letter-spacing: 1.5px;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(0,255,157,0.6);
}
.country-name {
    font-family: var(--font-display);
    font-size: clamp(14px, 4.2vw, 18px);
    font-weight: 700;
    color: var(--fg);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    pointer-events: none;
    margin-top: 2px;
}
.country-name::before {
    content: '◢ ';
    color: var(--neon-cyan);
    font-size: 0.8em;
}
.country-name::after {
    content: ' ◣';
    color: var(--neon-cyan);
    font-size: 0.8em;
}

/* === SEO CONTENT === */
.seo-content {
    width: 100%;
    max-width: 1100px;
    padding: 34px 28px;
    margin-top: 46px;
    color: var(--fg);
}
.seo-content h1 {
    font-family: var(--font-display);
    font-size: clamp(22px, 4.8vw, 30px);
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 22px;
    padding-left: 18px;
    border-left: 3px solid var(--neon-green);
    letter-spacing: 1.5px;
    line-height: 1.28;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 18px rgba(0,255,157,0.3);
}
.seo-content h1[data-text]::before,
.seo-content h1[data-text]::after {
    content: attr(data-text);
    position: absolute;
    left: 18px; top: 0;
    width: calc(100% - 18px);
    pointer-events: none;
    overflow: hidden;
}
.seo-content h1[data-text]::before {
    color: var(--neon-cyan);
    mix-blend-mode: screen;
    animation: glitchTop 5s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    opacity: 0.85;
}
.seo-content h1[data-text]::after {
    color: var(--neon-pink);
    mix-blend-mode: screen;
    animation: glitchBot 5s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    opacity: 0.85;
}
@keyframes glitchTop {
    0%, 86%, 100% { transform: translate(0); }
    88%           { transform: translate(-2px, 1px); }
    91%           { transform: translate(3px, -1px); }
    94%           { transform: translate(-1px, 2px); }
    97%           { transform: translate(2px, 0); }
}
@keyframes glitchBot {
    0%, 86%, 100% { transform: translate(0); }
    88%           { transform: translate(2px, -1px); }
    91%           { transform: translate(-3px, 1px); }
    94%           { transform: translate(1px, -2px); }
    97%           { transform: translate(-2px, 0); }
}

.seo-content p {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
    color: #c9d4ce;
    font-family: var(--font-body);
}
.seo-content b {
    color: var(--neon-amber);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255,204,0,0.4);
}

/* === SECURITY BADGE === */
.security-badge {
    font-family: var(--font-mono);
    background: linear-gradient(90deg, rgba(0,255,157,0.12), transparent);
    border: 1px solid var(--neon-green);
    border-left: 4px solid var(--neon-green);
    padding: 14px 18px;
    border-radius: 0;
    font-size: 12px;
    color: var(--neon-green);
    font-weight: 500;
    text-align: left;
    margin-top: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.security-badge::before {
    content: '[ ACTIVE ]';
    font-family: var(--font-mono);
    background: var(--neon-green);
    color: var(--bg-0);
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    animation: badgePulse 1.5s ease-in-out infinite;
    letter-spacing: 1.5px;
}
@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 12px rgba(0,255,157,0.6); }
    50%      { opacity: 0.55; box-shadow: 0 0 4px rgba(0,255,157,0.3); }
}

/* === JACKPOT SECTION === */
.jackpot-section {
    width: 100%;
    max-width: 1100px;
    margin: 24px auto;
    padding: 16px 20px;
}
.jackpot-title {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--neon-cyan);
    margin-bottom: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.jackpot-title::before {
    content: '●';
    color: var(--neon-pink);
    animation: blink 1s steps(2) infinite;
    font-size: 14px;
}
.jackpot-title::after {
    content: 'REAL-TIME FEED';
    margin-left: auto;
    color: var(--fg-dim);
    font-size: 10px;
    letter-spacing: 2px;
}
.ticker-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(0,255,157,0.14);
    font-family: var(--font-mono);
    font-size: 13px;
    color: #c9d4ce;
}
.ticker-item:last-child { border-bottom: none; }
.ticker-time { color: var(--neon-cyan); min-width: 48px; font-size: 12px; }
.ticker-game { color: var(--fg); min-width: 110px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ticker-user { color: var(--fg-dim); flex: 1; font-size: 12px; }
.ticker-amount { color: var(--neon-amber); font-weight: 600; font-size: 13px; text-shadow: 0 0 10px rgba(255,204,0,0.4); }
.ticker-amount::before { content: '+ '; color: var(--neon-green); }

/* === REVIEW SECTION === */
.review-section {
    width: 100%;
    max-width: 1100px;
    margin: 44px auto 30px;
    padding: 36px 26px;
}
.review-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 700;
    color: var(--neon-green);
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(0,255,157,0.4);
}
.review-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
    padding-bottom: 26px;
    border-bottom: 1px dashed var(--border);
}
.rating-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.rating-box > span {
    font-family: var(--font-mono) !important;
    color: var(--neon-cyan) !important;
    letter-spacing: 2px;
    font-size: 12px !important;
    text-transform: uppercase;
    font-weight: 500 !important;
}
.stars {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}
.stars input { display: none; }
.stars label {
    font-size: 32px;
    color: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: transform 0.15s, color 0.15s, text-shadow 0.15s;
}
.stars label:hover,
.stars label:hover ~ label,
.stars input:checked ~ label {
    color: var(--neon-amber);
    text-shadow: 0 0 20px var(--neon-amber), 0 0 32px rgba(255,204,0,0.6);
    transform: scale(1.1);
}
.review-input {
    width: 100%;
    max-width: 620px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.review-input textarea {
    flex: 1;
    min-width: 240px;
    padding: 14px 18px;
    background: rgba(0,255,157,0.04);
    border: 1px solid var(--border);
    border-left: 3px solid var(--neon-green);
    color: var(--fg);
    font-size: 16px;
    font-family: var(--font-mono);
    resize: none;
    height: 64px;
    transition: 0.25s;
    border-radius: 0;
    letter-spacing: 0.5px;
}
.review-input textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    background: rgba(0,255,157,0.08);
    box-shadow: 0 0 22px rgba(0,255,157,0.3);
}
.review-input textarea::placeholder {
    color: var(--fg-dim);
    font-family: var(--font-mono);
    letter-spacing: 1px;
}
.submit-btn {
    padding: 0 26px;
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.25s;
    height: 64px;
    min-width: 120px;
    letter-spacing: 4px;
    text-transform: uppercase;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    position: relative;
    border-radius: 0;
    text-shadow: 0 0 10px rgba(0,255,157,0.5);
}
.submit-btn:hover {
    background: var(--neon-green);
    color: var(--bg-0);
    box-shadow: 0 0 30px rgba(0,255,157,0.55);
    transform: translateY(-2px);
    text-shadow: none;
}

.reviews-header {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 22px;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.reviews-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
    gap: 18px;
    flex-wrap: wrap;
    min-height: 260px;
}
.review-card {
    flex: 1;
    min-width: 240px;
    max-width: 340px;
    background: linear-gradient(180deg, rgba(10,17,24,0.72), rgba(5,8,13,0.82));
    border: 1px solid var(--border);
    padding: 22px 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: 0.3s;
    animation: fadeIn 0.3s ease;
    position: relative;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    border-radius: 0;
}
.review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
}
.review-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 28px; height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.review-card:hover {
    border-color: var(--neon-green);
    background: linear-gradient(180deg, rgba(0,255,157,0.05), rgba(5,8,13,0.9));
    box-shadow: 0 0 28px rgba(0,255,157,0.22);
    transform: translateY(-3px);
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 0;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
    background: linear-gradient(135deg, rgba(0,255,157,0.18), rgba(34,211,255,0.1));
    border: 1px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-size: 22px;
}
.reviewer-info { display: flex; flex-direction: column; gap: 2px; }
.reviewer-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--neon-cyan);
    font-size: 15px;
    letter-spacing: 1px;
}
.review-date {
    font-size: 11px;
    color: var(--fg-dim);
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}
.review-stars {
    color: var(--neon-amber);
    margin-bottom: 12px;
    font-size: 15px;
    text-shadow: 0 0 10px rgba(255,204,0,0.5);
}
.review-stars i { margin-right: 3px; }
.review-text {
    color: #c9d4ce;
    font-size: 14px;
    line-height: 1.65;
    word-break: break-word;
    font-family: var(--font-body);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .logo { width: 340px; }
    .flag { width: 94px; height: 94px; }
    .flag-item a::before { width: 118px; height: 118px; }
    .flag-item a::after  { width: 144px; height: 144px; }
    .flag-item { min-width: 116px; }
    .seo-content { padding: 28px 20px; }
    .review-section { padding: 30px 20px; }
}

@media (max-width: 480px) {
    .logo { width: 270px; }
    .flag { width: 80px; height: 80px; }
    .flag-item a::before { width: 104px; height: 104px; }
    .flag-item a::after  { width: 126px; height: 126px; }
    .flag-item { min-width: 100px; }
    .marquee-text::before { display: none; }
    .marquee-text { font-size: 12px; padding: 10px 0; letter-spacing: 2px; }
    .ref-btn {
        white-space: normal;
        letter-spacing: 3px;
        font-size: 18px;
        padding: 14px 26px;
        line-height: 1.3;
        word-break: keep-all;
    }
    .ticker-item { font-size: 12px; gap: 8px; }
    .ticker-time { min-width: 40px; }
    .ticker-game { min-width: 80px; }
    .terminal-line { font-size: 10px; }
    .jackpot-title::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .matrix-rain, .scan-sweep { display: none; }
}
