@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

:root {
    --clr-nav: #00114c;
    --clr-nav-dark: #000d3a;
    --clr-bg: #00229e;
    --clr-bg-dark: #001a7a;
    --clr-btn-gold: #d07f1e;
    --clr-btn-gold-hover: #b86b10;
    --clr-btn-green: #348945;
    --clr-btn-green-hover: #276b35;
    --clr-text: #ffffff;
    --clr-text-muted: #b0c4f8;
    --clr-card: #001a7a;
    --clr-card-border: #0033cc;
    --clr-accent: #f0c040;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
    background: var(--clr-bg);
}

body {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-text);
    background: var(--clr-bg);
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--clr-btn-gold);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--clr-accent);
}

ul, ol {
    padding-left: 1.2em;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

.box {
    border-radius: var(--radius);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-text);
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: .8rem;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: .6rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: .9rem;
    line-height: 1.65;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform .15s, box-shadow .15s, background .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
}

.btn:active {
    transform: translateY(0);
}

.btn--green {
    background: var(--clr-btn-green);
    color: #fff;
}

.btn--green:hover {
    background: var(--clr-btn-green-hover);
    color: #fff;
}

.btn--gold {
    background: var(--clr-btn-gold);
    color: #fff;
}

.btn--gold:hover {
    background: var(--clr-btn-gold-hover);
    color: #fff;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--clr-btn-gold);
    color: var(--clr-btn-gold);
}

.btn--outline:hover {
    background: var(--clr-btn-gold);
    color: #fff;
}

.btn--sm {
    padding: 7px 16px;
    font-size: .82rem;
}

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

.btn--xl {
    padding: 16px 40px;
    font-size: 1.15rem;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--clr-text-muted);
}

/* ===================== HEADER ===================== */
.site-header {
    background: var(--clr-nav);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 12px;
    flex-wrap: wrap;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    color: var(--clr-text-muted);
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s, background .2s;
    text-decoration: none;
}

.header-nav a:hover {
    color: var(--clr-text);
    background: rgba(255, 255, 255, .08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.jackpot-ticker {
    background: linear-gradient(90deg, #7b1a00, #d07f1e 50%, #7b1a00);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: #fff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

@keyframes shimmer {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    border-radius: var(--radius-sm);
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--clr-nav-dark);
    padding: 16px;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--clr-text-muted);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

/* =====================  ===================== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 40px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/red-h.jpg');
    background-size: cover;
    background-position: center top;
    filter: brightness(.45);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 17, 76, .92) 0%, rgba(0, 34, 158, .5) 60%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(208, 127, 30, .2);
    border: 1px solid var(--clr-btn-gold);
    color: var(--clr-btn-gold);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
    margin-bottom: 14px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    max-width: 500px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-tiles {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-tile {
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    text-align: center;
    backdrop-filter: blur(6px);
    min-width: 90px;
}

.hero-tile-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-accent);
    line-height: 1;
}

.hero-tile-lbl {
    font-size: .72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    margin-top: 3px;
    letter-spacing: .05em;
}

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs {
    padding: 12px 0;
    font-size: .82rem;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumbs li + li::before {
    content: '/';
    color: var(--clr-text-muted);
}

.breadcrumbs a {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumbs a:hover {
    color: var(--clr-accent);
}

.breadcrumbs span {
    color: var(--clr-accent);
}

/* ===================== SECTION LAYOUT ===================== */
.section {
    padding: 48px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 14px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--clr-btn-gold);
    border-radius: 2px;
}

/* ===================== GAME DEMO + DETAILS ===================== */
.game-main-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.game-demo-col {
    flex: 1;
    min-width: 0;
}

.game-details-col {
    flex: 1;
    min-width: 0;
}

.demo-frame-wrap {
    background: #000;
    border-radius: var(--radius);
    position: relative;
    border: 2px solid var(--clr-card-border);
    box-shadow: var(--shadow);
}

.demo-frame-wrap iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
}

.demo-overlay-btn {
    text-align: center;
    padding: 14px;
    background: var(--clr-card);
    border-top: 1px solid var(--clr-card-border);
}

.game-details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
    background: var(--clr-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-card-border);
    box-shadow: var(--shadow);
}

.game-details-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.game-details-table tr:last-child {
    border-bottom: none;
}

.game-details-table td {
    padding: 9px 14px;
    vertical-align: middle;
    line-height: 1.4;
}

.game-details-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 500;
    width: 48%;
    display: flex;
    align-items: center;
    gap: 7px;
}

.game-details-table td:last-child {
    color: var(--clr-accent);
    font-weight: 600;
}

.game-details-table tr:nth-child(even) {
    background: rgba(255, 255, 255, .03);
}

.dt-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: var(--clr-btn-gold);
}

/* ===================== MOBILE BLOCK ===================== */
.mobile-block-grid {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.phone-frame {
    flex-shrink: 0;
    width: 160px;
    background: #0a0a1a;
    border: 3px solid #333;
    border-radius: 28px;
    padding: 12px 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, .6), inset 0 0 12px rgba(255, 255, 255, .04);
    position: relative;
}

.phone-frame::before {
    content: '';
    display: block;
    width: 40px;
    height: 5px;
    background: #222;
    border-radius: 10px;
    margin: 0 auto 10px;
}

.phone-frame img {
    border-radius: 14px;
    width: 100%;
}

.mobile-info {
    flex: 1;
    min-width: 240px;
}

.mobile-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-sm);
}

.mobile-table td {
    padding: 8px 12px;
    font-size: .88rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mobile-table td:first-child {
    color: var(--clr-text-muted);
    width: 50%;
}

.mobile-table td:last-child {
    color: var(--clr-text);
    font-weight: 500;
}

.mobile-table tr:last-child td {
    border-bottom: none;
}

.app-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ===================== PROS CONS ===================== */
.pros-cons-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pros-card, .cons-card {
    flex: 1;
    min-width: 260px;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid;
}

.pros-card {
    background: rgba(52, 137, 69, .12);
    border-color: rgba(52, 137, 69, .4);
}

.cons-card {
    background: rgba(180, 40, 40, .12);
    border-color: rgba(180, 40, 40, .4);
}

.pros-card h3 {
    color: #5adb74;
}

.cons-card h3 {
    color: #f07070;
}

.pros-cons-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.pros-cons-list li {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .9rem;
    line-height: 1.5;
}

.pros-cons-list li:last-child {
    border-bottom: none;
}

.pros-cons-list li::before {
    flex-shrink: 0;
    margin-top: 3px;
}

.pros-card .pros-cons-list li::before {
    content: '✓';
    color: #5adb74;
    font-weight: 700;
}

.cons-card .pros-cons-list li::before {
    content: '✗';
    color: #f07070;
    font-weight: 700;
}

/* ===================== VIDEO BLOCK ===================== */
.video-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--clr-card-border);
    box-shadow: var(--shadow);
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================== STRATEGY CARDS ===================== */
.strategy-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.strategy-card {
    flex: 1;
    min-width: 280px;
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
}

.strategy-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: var(--clr-bg-dark);
}

.strategy-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.strategy-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--clr-accent);
}

.strategy-card-desc {
    font-size: .85rem;
    color: var(--clr-text-muted);
    flex: 1;
    margin-bottom: 14px;
    line-height: 1.5;
}

/* ===================== CONTENT BLOCK ===================== */
.content-review {
    background: rgba(0, 0, 0, .25);
    border-radius: var(--radius);
    border: 1px solid var(--clr-card-border);
    padding: 32px 28px;
}

.content-review h2 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--clr-accent);
}

.content-review h3 {
    font-size: 1.15rem;
    margin: 20px 0 10px;
}

.content-review p {
    margin-bottom: .85rem;
    font-size: .95rem;
    line-height: 1.7;
    color: #d0dfff;
}

.content-review ul, .content-review ol {
    margin-bottom: 1rem;
    color: #d0dfff;
}

.content-review li {
    margin-bottom: .4rem;
    font-size: .95rem;
    line-height: 1.6;
}

.content-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    font-size: .9rem;
    border: 1px solid var(--clr-card-border);
}

.content-review table th, .content-review table td {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    text-align: left;
}

.content-review table th {
    background: rgba(255, 255, 255, .07);
    color: var(--clr-accent);
}

.content-review a {
    color: var(--clr-btn-gold);
}

.content-review a:hover {
    color: var(--clr-accent);
}

.author-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(0, 0, 0, .3);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-top: 24px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--clr-btn-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: .95rem;
    margin-bottom: 2px;
}

.author-info .author-title {
    font-size: .8rem;
    color: var(--clr-btn-gold);
    margin-bottom: 5px;
}

.author-info p {
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin: 0;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--clr-nav);
    margin-top: auto;
    border-top: 2px solid var(--clr-btn-gold);
}

.footer-top {
    padding: 40px 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.footer-heading {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--clr-btn-gold);
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 7px;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: .85rem;
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--clr-accent);
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}

.payment-badge {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--clr-text);
    letter-spacing: .04em;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    color: #fff;
}

.social-link:hover {
    background: var(--clr-btn-gold);
    color: #fff;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.trust-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: .72rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.footer-flag {
    font-size: 1.3rem;
}

.footer-legal {
    font-size: .76rem;
    color: var(--clr-text-muted);
    max-width: 800px;
    text-align: center;
    line-height: 1.55;
}

.footer-copyright {
    font-size: .8rem;
    color: var(--clr-text-muted);
}

/* ===================== BONUS WIDGET ===================== */
.bonus-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, var(--clr-nav-dark) 0%, #0d3060 50%, var(--clr-nav-dark) 100%);
    border-top: 2px solid var(--clr-btn-gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 12px;
}

.bonus-widget-text {
    flex: 1;
}

.bonus-widget-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--clr-accent);
}

.bonus-widget-sub {
    font-size: .78rem;
    color: var(--clr-text-muted);
}

.bonus-widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color .2s;
}

.bonus-widget-close:hover {
    color: var(--clr-text);
}

body {
    padding-bottom: 70px;
}

.block-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.block-card:last-child {
    margin-bottom: 0;
}

.section-gap {
    margin: 24px 0;
}

.section-padded {
    padding: 36px 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .game-main-grid {
        flex-direction: column;
    }

    .game-details-col {
        width: 100%;
    }

    .mobile-block-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .phone-frame {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: 420px;
        padding: 48px 0 32px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .footer-grid {
        gap: 20px;
    }

    .footer-col {
        min-width: 140px;
    }

    .pros-cons-grid {
        flex-direction: column;
    }

    .strategy-grid {
        flex-direction: column;
    }

    .strategy-card {
        min-width: unset;
    }

    .bonus-widget {
        flex-wrap: wrap;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-tiles {
        gap: 8px;
    }

    .hero-tile {
        min-width: 80px;
    }

    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-actions .btn--gold {
        display: none;
    }

    .game-details-table td:first-child {
        width: 50%;
    }

    .block-card {
        padding: 16px;
    }
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wp-post-image {
    display: none;
}

.entry-meta {
    display: none;
}

.wp-block-group {
    display: none;
}

.elementor-invisible {
    display: none;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.rb7f2x {
    color: transparent;
}

.ac91kz {
    display: none;
    font-style: italic;
}

.zx3b8m::after {
    content: '';
    display: none;
}

.qw51ad {
    background: none;
}

.lp2n7s {
    outline: none;
}

.mn44cx {
    pointer-events: none;
    opacity: 0;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp .5s ease forwards;
}

.fade-in-delay-1 {
    animation-delay: .1s;
}

.fade-in-delay-2 {
    animation-delay: .2s;
}

.fade-in-delay-3 {
    animation-delay: .3s;
}

/* Jackpot pulse */
@keyframes jackpotPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

.jackpot-num {
    animation: jackpotPulse 1.8s ease-in-out infinite;
    display: inline-block;
}

/* Separator */
.sep {
    width: 60px;
    height: 3px;
    background: var(--clr-btn-gold);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.info-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    margin: 32px 0;
}

.info-content h2 {
    font-size: 1.4rem;
    color: var(--clr-accent);
    margin: 24px 0 10px;
}

.info-content h2:first-child {
    margin-top: 0;
}

.info-content p {
    color: #d0dfff;
    font-size: .95rem;
}

.info-content ul {
    color: #d0dfff;
    font-size: .95rem;
    margin-bottom: .8rem;
}

.contact-form {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form label {
    font-size: .88rem;
    color: var(--clr-text-muted);
    margin-bottom: 4px;
    display: block;
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    background: rgba(0, 0, 0, .35);
    border: 1.5px solid var(--clr-card-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: 'Oswald', sans-serif;
    font-size: .95rem;
    padding: 10px 14px;
    transition: border-color .2s;
    outline: none;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--clr-btn-gold);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
