@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,400&display=swap');

:root {
    --clr-header: #92000b;
    --clr-header-dark: #6e0008;
    --clr-btn-gold: #957d4b;
    --clr-btn-gold-hover: #7e6939;
    --clr-btn-white: #ffffff;
    --clr-bg: #004b3e;
    --clr-bg-dark: #003830;
    --clr-bg-card: #005447;
    --clr-bg-card2: #006654;
    --clr-text: #f0ede6;
    --clr-text-muted: #c8c0b0;
    --clr-accent: #957d4b;
    --clr-gold: #c9a84c;
    --clr-border: #1a6b58;
    --clr-green-light: #00c484;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --font-main: 'Roboto Condensed', sans-serif;
    --transition: 0.25s ease;
}

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

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

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

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

.xb7f2 {
    display: none;
}

.k9p1m {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

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

.entry-content {
    display: contents;
}

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

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

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.header-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.header-logo-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.header-nav a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    padding: 9px 18px;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

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

.btn-play:hover {
    background: #f0e8d8;
    color: var(--clr-header-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.btn-bonus:hover {
    background: var(--clr-btn-gold-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--clr-btn-gold);
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-primary:hover {
    background: var(--clr-btn-gold-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(149, 125, 75, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--clr-gold);
    border: 2px solid var(--clr-gold);
    padding: 10px 24px;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

.btn-secondary:hover {
    background: var(--clr-gold);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--clr-header);
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-white:hover {
    background: #f5f0e8;
    color: var(--clr-header-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.1rem;
}

/* Winner ticker */
.winner-ticker {
    background: var(--clr-header-dark);
    padding: 5px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
}

.winner-ticker-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.winner-ticker-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-gold);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.winner-ticker-label svg {
    width: 14px;
    height: 14px;
}

.winner-ticker-text {
    white-space: nowrap;
}

.winner-ticker-text strong {
    color: var(--clr-gold);
}

/* Burger */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

.mobile-nav {
    display: none;
    background: var(--clr-header-dark);
    padding: 12px 16px 16px;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--transition);
    text-transform: uppercase;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav a svg {
    width: 16px;
    height: 16px;
}

/* ==================== HERO ==================== */
.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/ways-banner.jpg');
    background-size: cover;
    background-position: center top;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 27, 20, 0.92) 0%, rgba(0, 75, 62, 0.6) 60%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--clr-header);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
    text-balance: balance;
}

.hero-title em {
    color: var(--clr-gold);
    font-style: normal;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

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

.hero-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.hero-tile {
    background: rgba(0, 84, 71, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 14px 10px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.hero-tile-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-gold);
    line-height: 1.2;
}

.hero-tile-label {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 56px 0;
}

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

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 8px;
    text-balance: balance;
}

.section-title span {
    color: var(--clr-gold);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.section-divider {
    width: 48px;
    height: 3px;
    background: var(--clr-gold);
    border-radius: 2px;
    margin: 12px 0 28px;
}

/* ==================== DEMO + TABLE ==================== */
.game-demo-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.demo-frame-box {
    background: var(--clr-bg-dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-card);
}

.demo-frame-header {
    background: var(--clr-header);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.demo-frame-header span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.demo-iframe-wrap {
    position: relative;
    padding-bottom: 60%;
    height: 0;
}

.demo-iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-footer {
    padding: 14px 16px;
    text-align: center;
    background: var(--clr-bg-card);
}

/* Game details table */
.game-details-box {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.game-details-title {
    background: var(--clr-header);
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-details-title svg {
    width: 18px;
    height: 18px;
}

.game-table {
    width: 100%;
    border-collapse: collapse;
}

.game-table tr {
    border-bottom: 1px solid var(--clr-border);
}

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

.game-table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.12);
}

.game-table td {
    padding: 9px 16px;
    font-size: 0.875rem;
    line-height: 1.4;
    vertical-align: middle;
}

.game-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 600;
    white-space: nowrap;
    width: 45%;
    display: flex;
    align-items: center;
    gap: 7px;
}

.game-table td:first-child svg {
    width: 14px;
    height: 14px;
    color: var(--clr-gold);
    flex-shrink: 0;
}

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

.game-table .highlight-val {
    color: var(--clr-gold);
    font-weight: 700;
}

/* ==================== PROS CONS ==================== */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-box, .cons-box {
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--clr-border);
}

.pros-box {
    background: rgba(0, 196, 132, 0.07);
    border-color: rgba(0, 196, 132, 0.25);
}

.cons-box {
    background: rgba(146, 0, 11, 0.07);
    border-color: rgba(146, 0, 11, 0.3);
}

.pros-cons-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pros-box .pros-cons-head {
    color: var(--clr-green-light);
}

.cons-box .pros-cons-head {
    color: #ff6b6b;
}

.pros-cons-head svg {
    width: 22px;
    height: 22px;
}

.pros-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pros-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--clr-text);
}

.pros-cons-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.pros-box .pros-cons-list li svg {
    color: var(--clr-green-light);
}

.cons-box .pros-cons-list li svg {
    color: #ff6b6b;
}

/* ==================== SCREENSHOTS ==================== */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    aspect-ratio: 16/9;
    background: var(--clr-bg-dark);
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshots-slider {
    display: none;
}

/* ==================== VIDEO ==================== */
.video-wrap {
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-card);
    background: var(--clr-bg-dark);
}

.video-header {
    background: var(--clr-header);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.video-header svg {
    width: 18px;
    height: 18px;
}

.video-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

/* ==================== CONTENT BLOCK ==================== */
.content-review-block {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--clr-border);
}

.content-review-block h2 {
    font-size: 1.5rem;
    color: var(--clr-text);
    margin: 28px 0 12px;
}

.content-review-block h3 {
    font-size: 1.2rem;
    color: var(--clr-gold);
    margin: 22px 0 10px;
}

.content-review-block h4 {
    font-size: 1.05rem;
    color: var(--clr-text);
    margin: 18px 0 8px;
}

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

.content-review-block ul, .content-review-block ol {
    margin: 0 0 16px 20px;
    line-height: 1.8;
    color: var(--clr-text);
}

.content-review-block li {
    margin-bottom: 6px;
}

.content-review-block a {
    color: var(--clr-gold);
    text-decoration: underline;
}

.content-review-block a:hover {
    color: #fff;
}

.content-review-block strong, .content-review-block b {
    color: var(--clr-gold);
}

.content-review-block em {
    color: var(--clr-text-muted);
}

.content-review-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.content-review-block table th,
.content-review-block table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
    font-size: 0.9rem;
}

.content-review-block table th {
    background: var(--clr-header);
    color: #fff;
    font-weight: 700;
}

.content-review-block table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.1);
}

.content-review-block blockquote {
    border-left: 4px solid var(--clr-gold);
    padding: 12px 20px;
    margin: 16px 0;
    background: rgba(149, 125, 75, 0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.content-review-block hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 24px 0;
}

/* ==================== FAQ ==================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--clr-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: var(--clr-gold);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    text-align: left;
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    gap: 12px;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--clr-gold);
    transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 4px 20px 18px;
}

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

/* ==================== AUTHOR ==================== */
.author-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    padding: 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-gold);
    flex-shrink: 0;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--clr-gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.author-location {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.author-location svg {
    width: 13px;
    height: 13px;
}

.author-bio {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.author-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-meta svg {
    width: 13px;
    height: 13px;
    color: var(--clr-gold);
}

.author-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.author-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-size: 0.82rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

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

.author-social-btn svg {
    width: 14px;
    height: 14px;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--clr-header);
    margin-top: auto;
    padding: 40px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 280px 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
}

.footer-brand-col {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.footer-logo-text small {
    display: block;
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.footer-email svg {
    width: 14px;
    height: 14px;
}

.footer-email:hover {
    color: #fff;
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.footer-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}

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

.footer-socials {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition);
}

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

.footer-social-link svg {
    width: 17px;
    height: 17px;
}

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

.footer-payments img {
    height: 26px;
    width: auto;
    border-radius: 4px;
}

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

.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal {
    max-width: 700px;
    line-height: 1.6;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

.footer-legal a:hover {
    color: var(--clr-gold);
}

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

.footer-flags img {
    height: 20px;
    border-radius: 3px;
}

.provider-badges {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.provider-badges img {
    height: 30px;
    width: auto;
    opacity: 0.8;
    filter: brightness(1.2);
}

/* ==================== WIDGET ==================== */
.sticky-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 990;
    background: var(--clr-header);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: widgetPulse 3s infinite;
}

@keyframes widgetPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px rgba(146, 0, 11, 0.5);
    }
}

.widget-logo {
    width: 56px;
    height: auto;
    border-radius: 8px;
}

.widget-bonus {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-gold);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
}

.widget-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1;
    transition: color var(--transition);
}

.widget-close:hover {
    color: #fff;
}

/* ==================== CARDS ==================== */
.card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    padding: 24px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slider-slide {
    min-width: 100%;
}

.slider-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.slider-btn:hover {
    background: var(--clr-header);
}

.slider-btn svg {
    width: 18px;
    height: 18px;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}

.slider-dot.active {
    background: var(--clr-gold);
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    padding: 14px 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--clr-gold);
}

.breadcrumb a:hover {
    color: #fff;
}

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

/* ==================== RATING ==================== */
.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars svg {
    width: 16px;
    height: 16px;
    color: var(--clr-gold);
}

.rating-stars svg.half {
    color: var(--clr-text-muted);
}

/* ==================== INFO PAGE ==================== */
.info-page-content {
    max-width: 780px;
    margin: 0 auto;
}

.info-page-content h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 8px;
}

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

.info-page-content h3 {
    font-size: 1.1rem;
    color: var(--clr-text);
    margin: 18px 0 8px;
}

.info-page-content p {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.info-page-content ul, .info-page-content ol {
    margin: 0 0 14px 22px;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.info-page-content a {
    color: var(--clr-gold);
    text-decoration: underline;
}

.info-page-content a:hover {
    color: #fff;
}

.info-page-content .meta-date {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-page-content .meta-date svg {
    width: 13px;
    height: 13px;
    color: var(--clr-gold);
}

/* ==================== TABLE SCROLL ==================== */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ==================== UTILITIES ==================== */
.text-center {
    text-align: center;
}

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

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

.mt-0 {
    margin-top: 0;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.gap-8 {
    gap: 8px;
}

.d-flex {
    display: flex;
}

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

.flex-wrap {
    flex-wrap: wrap;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* WP compat elements */
.wp-content {
    display: contents;
}

.elementor-section {
    display: contents;
}

.elementor-widget-wrap {
    display: contents;
}

.post-thumbnail {
    display: contents;
}

.entry-header {
    display: contents;
}

.site-content {
    display: contents;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Section transitions */
.section-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Btn pulse */
@keyframes btnGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(149, 125, 75, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(149, 125, 75, 0);
    }
}

.btn-pulse {
    animation: btnGlow 2.5s infinite;
}

/* ==================== LIGHTBOX ==================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: var(--radius-md);
    border: 2px solid var(--clr-border);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.lightbox-close:hover {
    background: var(--clr-header);
}

/* ==================== SECTION BG VARIANTS ==================== */
.bg-dark {
    background: var(--clr-bg-dark);
}

.bg-card {
    background: var(--clr-bg-card);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hero-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .game-demo-wrap {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .section {
        padding: 36px 0;
    }

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

    .hero-content {
        padding: 40px 0;
    }

    .hero-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .author-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }

    .author-location {
        justify-content: center;
    }

    .author-socials {
        justify-content: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
    }

    .sticky-widget {
        bottom: 12px;
        right: 12px;
        max-width: 140px;
        padding: 10px 12px;
    }

    .content-review-block {
        padding: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== INFO PAGES ==================== */
.info-page-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 0 60px;
}

.info-page-wrap .lead {
    font-size: 1.15rem;
    color: var(--clr-text);
    line-height: 1.7;
    margin-bottom: 28px;
    border-left: 4px solid var(--clr-gold);
    padding-left: 16px;
}

.info-page-wrap .info-meta {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
}

.info-page-wrap .info-date {
    color: var(--clr-gold);
}

.info-page-wrap h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clr-btn-white);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--clr-border);
}

.info-page-wrap p {
    color: var(--clr-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.info-page-wrap ul, .info-page-wrap ol {
    margin: 0 0 16px 0;
    padding-left: 24px;
}

.info-page-wrap li {
    color: var(--clr-text);
    line-height: 1.7;
    margin-bottom: 6px;
}

.info-page-wrap strong {
    color: var(--clr-btn-white);
}

.info-page-wrap a {
    color: var(--clr-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.info-page-wrap a:hover {
    color: var(--clr-btn-white);
}

.info-page-wrap em {
    color: var(--clr-text-muted);
    font-style: italic;
}

/* Contact cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.contact-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: var(--clr-gold);
}

.contact-card-icon {
    color: var(--clr-gold);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.contact-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-bottom: 4px;
}

.contact-card-value {
    font-weight: 600;
    color: var(--clr-btn-white);
}

.contact-card-value a {
    color: var(--clr-gold);
    text-decoration: none;
}

.contact-card-value a:hover {
    color: var(--clr-btn-white);
}

/* Contact form */
.contact-form {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px;
    margin: 24px 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group .req {
    color: var(--clr-header);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--clr-bg);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--clr-text);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--clr-text-muted);
}

.form-group select option {
    background: var(--clr-bg-dark);
    color: var(--clr-text);
}

.form-check {
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--clr-gold);
}

/* Responsible gambling */
.rg-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(146, 0, 11, 0.15);
    border: 1.5px solid var(--clr-header);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-bottom: 28px;
    color: var(--clr-text);
    line-height: 1.6;
}

.rg-alert svg {
    color: var(--clr-header);
    flex-shrink: 0;
    margin-top: 2px;
}

.rg-alert strong {
    color: var(--clr-btn-white);
}

.rg-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 20px 0;
}

.rg-service-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px;
    transition: border-color var(--transition);
}

.rg-service-card:hover {
    border-color: var(--clr-gold);
}

.rg-service-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--clr-btn-white);
    margin-bottom: 6px;
}

.rg-service-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
    line-height: 1.5;
}

.rg-service-contact {
    font-size: 0.88rem;
    color: var(--clr-text);
}

.rg-service-contact a {
    color: var(--clr-gold);
}

.rg-service-contact strong {
    color: var(--clr-btn-white);
}

/* About page author card */
.about-author-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 20px 0;
}

.about-author-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--clr-gold);
}

.about-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-btn-white);
}

.about-author-title {
    font-size: 0.85rem;
    color: var(--clr-gold);
    margin-bottom: 10px;
}

.about-author-card p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

/* Info page responsive */
@media (max-width: 767px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .rg-services {
        grid-template-columns: 1fr;
    }

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

    .info-page-wrap {
        padding: 28px 0 40px;
    }

    .contact-form {
        padding: 18px;
    }
}
