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

:root {
    --c-navy: #00114c;
    --c-bg: #00229e;
    --c-bg-dark: #001880;
    --c-btn-gold: #d07f1e;
    --c-btn-green: #348945;
    --c-btn-gold-hover: #b86c12;
    --c-btn-green-hover: #267535;
    --c-white: #ffffff;
    --c-light: #e8edf8;
    --c-muted: #a0b0d0;
    --c-border: rgba(255, 255, 255, 0.12);
    --c-card: rgba(0, 17, 76, 0.7);
    --c-card2: rgba(0, 34, 158, 0.5);
    --c-gold: #f0c040;
    --c-gold-light: #ffe080;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: var(--c-bg);
    color: var(--c-white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--c-gold-light);
}

ul, ol {
    list-style: none;
}

.xb7f3 {
    display: none;
}

.wp-block-spacer {
    display: block;
    height: 1px;
}

.entry-content {
    display: contents;
}

.wrapper {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}

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

.container--wide {
    max-width: 1440px;
}

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

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

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

.btn--green {
    background: var(--c-btn-green);
    color: var(--c-white);
}

.btn--green:hover {
    background: var(--c-btn-green-hover);
    color: var(--c-white);
}

.btn--gold {
    background: var(--c-btn-gold);
    color: var(--c-white);
}

.btn--gold:hover {
    background: var(--c-btn-gold-hover);
    color: var(--c-white);
}

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

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-white);
}

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

.btn--sm {
    padding: 7px 15px;
    font-size: 0.82rem;
}

.site-header {
    background: var(--c-navy);
    border-bottom: 2px solid var(--c-btn-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    color: var(--c-light);
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--c-gold);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-winner {
    background: rgba(240, 192, 64, 0.12);
    border: 1px solid rgba(240, 192, 64, 0.3);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 0.8rem;
    color: var(--c-gold);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

.mobile-cta {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--c-navy);
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/red-baron-hero.webp');
    background-size: cover;
    background-position: center top;
    opacity: 0.35;
    filter: brightness(0.7) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 17, 76, 0.92) 40%, rgba(0, 17, 76, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 16px;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(240, 192, 64, 0.15);
    border: 1px solid var(--c-gold);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
    color: var(--c-gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--c-light);
    max-width: 540px;
    margin-bottom: 28px;
    line-height: 1.55;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

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

.hero-stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-gold);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 0.75rem;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.section {
    padding: 56px 0;
}

.section--dark {
    background: rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

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

.section-subtitle {
    color: var(--c-muted);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 36px;
}

.section-head {
    margin-bottom: 36px;
}

.game-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.game-iframe-wrap {
    background: var(--c-navy);
    border-radius: var(--radius-md);
    border: 2px solid var(--c-border);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.game-iframe-wrap iframe {
    width: 100%;
    aspect-ratio: 4/3;
    display: block;
    border: none;
}

.game-iframe-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(0, 17, 76, 0.82);
    backdrop-filter: blur(4px);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.game-iframe-wrap:hover .game-iframe-overlay {
    opacity: 1;
    pointer-events: all;
}

.game-iframe-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.game-details-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.game-details-title {
    background: var(--c-navy);
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 2px solid var(--c-btn-gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-details-title svg {
    color: var(--c-gold);
}

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

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

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

.game-table tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.game-table td {
    padding: 9px 16px;
    font-size: 0.88rem;
    line-height: 1.4;
}

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

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

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

.rtp-val {
    color: var(--c-btn-green) !important;
    font-weight: 700 !important;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.advantage-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-btn-gold);
}

.advantage-icon {
    width: 52px;
    height: 52px;
    background: rgba(208, 127, 30, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--c-btn-gold);
}

.advantage-icon svg {
    width: 26px;
    height: 26px;
}

.advantage-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.advantage-desc {
    font-size: 0.82rem;
    color: var(--c-muted);
    line-height: 1.5;
    font-weight: 300;
}

.winners-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    background: var(--c-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.winners-table thead tr {
    background: var(--c-navy);
}

.winners-table th {
    padding: 12px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-gold);
    text-align: left;
    border-bottom: 2px solid var(--c-btn-gold);
}

.winners-table th:first-child {
    text-align: center;
    width: 48px;
}

.winners-table td {
    padding: 10px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--c-border);
}

.winners-table td:first-child {
    text-align: center;
    font-weight: 700;
    color: var(--c-muted);
}

.winners-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.winners-table .rank-1 td:first-child {
    color: var(--c-gold);
}

.winners-table .rank-2 td:first-child {
    color: #c0c0c0;
}

.winners-table .rank-3 td:first-child {
    color: #cd7f32;
}

.winner-nick {
    font-weight: 600;
    color: var(--c-light);
}

.winner-amount {
    font-weight: 700;
    color: var(--c-btn-green);
}

.winner-date {
    color: var(--c-muted);
    font-size: 0.8rem;
}

.winner-badge {
    display: inline-block;
    background: rgba(52, 137, 69, 0.2);
    border: 1px solid var(--c-btn-green);
    color: var(--c-btn-green);
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--c-border);
    cursor: pointer;
    transition: border-color var(--transition), transform var(--transition);
    aspect-ratio: 4/3;
}

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

.screenshot-item:hover {
    border-color: var(--c-btn-gold);
    transform: scale(1.02);
}

.screenshot-item:hover img {
    transform: scale(1.06);
}

.screenshots-slider {
    display: none;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

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

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

.slider-slide img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 17, 76, 0.85);
    border: 1px solid var(--c-border);
    color: var(--c-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background var(--transition);
}

.slider-btn:hover {
    background: var(--c-btn-gold);
}

.slider-btn--prev {
    left: 10px;
}

.slider-btn--next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

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

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

.review-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}

.review-block h2,
.review-block h3,
.review-block h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 1.4em 0 0.6em;
    color: var(--c-gold);
}

.review-block h2 {
    font-size: 1.4rem;
}

.review-block h3 {
    font-size: 1.15rem;
}

.review-block h4 {
    font-size: 1rem;
    color: var(--c-light);
}

.review-block p {
    color: var(--c-light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1em;
}

.review-block ul, .review-block ol {
    margin: 0.8em 0 1em 1.4em;
}

.review-block ul {
    list-style: disc;
}

.review-block ol {
    list-style: decimal;
}

.review-block li {
    color: var(--c-light);
    font-size: 0.93rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 0.4em;
}

.review-block a {
    color: var(--c-btn-gold);
}

.review-block strong {
    color: var(--c-white);
    font-weight: 700;
}

.review-block em {
    font-style: italic;
    color: var(--c-muted);
}

.review-block blockquote {
    border-left: 3px solid var(--c-btn-gold);
    padding-left: 16px;
    margin: 1em 0;
    color: var(--c-muted);
    font-style: italic;
}

.review-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    overflow-x: auto;
    display: block;
}

.review-block table th, .review-block table td {
    border: 1px solid var(--c-border);
    padding: 8px 14px;
    text-align: left;
    font-size: 0.88rem;
}

.review-block table th {
    background: var(--c-navy);
    color: var(--c-gold);
    font-weight: 700;
    text-transform: uppercase;
}

.review-block table td {
    color: var(--c-light);
}

.review-block img {
    border-radius: var(--radius-sm);
    max-width: 100%;
    margin: 0.8em 0;
}

.author-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    align-items: start;
    box-shadow: var(--shadow);
}

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

.author-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.author-title {
    font-size: 0.85rem;
    color: var(--c-btn-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.author-location {
    font-size: 0.82rem;
    color: var(--c-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.author-bio {
    font-size: 0.88rem;
    color: var(--c-light);
    line-height: 1.6;
    font-weight: 300;
    margin: 10px 0;
}

.author-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.author-detail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--c-muted);
}

.author-detail svg {
    width: 13px;
    height: 13px;
    color: var(--c-btn-gold);
}

.author-socials {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.author-social {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-light);
    transition: background var(--transition), color var(--transition);
}

.author-social:hover {
    background: var(--c-btn-gold);
    color: var(--c-white);
}

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

.author-dates {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.author-date {
    font-size: 0.78rem;
    color: var(--c-muted);
}

.author-date span {
    color: var(--c-light);
    font-weight: 500;
}

.similar-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.similar-game-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow);
}

.similar-game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.similar-game-body {
    padding: 16px;
}

.similar-game-name {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.similar-game-desc {
    font-size: 0.82rem;
    color: var(--c-muted);
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 14px;
}

.similar-game-btns {
    display: flex;
    gap: 8px;
}

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

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    gap: 12px;
    transition: background var(--transition);
}

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

.faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--c-btn-gold);
    transition: transform 0.3s;
}

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

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.6;
    font-weight: 300;
}

.faq-item.open .faq-answer {
    display: block;
}

.site-footer {
    background: var(--c-navy);
    border-top: 2px solid var(--c-btn-gold);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

.footer-brand {
}

.footer-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--c-muted);
    line-height: 1.55;
    font-weight: 300;
    margin-bottom: 14px;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--c-light);
}

.footer-email svg {
    width: 15px;
    height: 15px;
    color: var(--c-btn-gold);
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-gold);
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-links a {
    font-size: 0.83rem;
    color: var(--c-muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--c-white);
}

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

.footer-payment-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.footer-social {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-muted);
    transition: background var(--transition), color var(--transition);
}

.footer-social:hover {
    background: var(--c-btn-gold);
    color: var(--c-white);
}

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

.footer-divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 24px 0;
}

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.73rem;
    font-weight: 700;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.trust-badge svg {
    width: 14px;
    height: 14px;
}

.trust-18 {
    background: rgba(208, 127, 30, 0.12);
    border-color: var(--c-btn-gold);
    color: var(--c-btn-gold);
    font-size: 0.88rem;
    font-weight: 900;
    padding: 4px 8px;
}

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

.footer-provider img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(0.7);
}

.footer-au-flag {
    font-size: 1.2rem;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--c-muted);
    line-height: 1.6;
    font-weight: 300;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--c-muted);
    margin-top: 12px;
    text-align: center;
}

.sticky-widget {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 900;
    background: var(--c-navy);
    border: 2px solid var(--c-btn-gold);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 180px;
    animation: widgetSlideIn 0.5s ease 1s both;
}

@keyframes widgetSlideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sticky-widget img {
    height: 40px;
    width: auto;
}

.widget-bonus {
    font-size: 0.78rem;
    color: var(--c-gold);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.widget-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--c-navy);
    border: 1px solid var(--c-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.7rem;
    color: var(--c-muted);
    transition: color var(--transition);
}

.widget-close:hover {
    color: var(--c-white);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

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

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    color: var(--c-white);
    cursor: pointer;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    font-size: 0.8rem;
    color: var(--c-muted);
}

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

.breadcrumb svg {
    width: 12px;
    height: 12px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--c-gold);
    font-size: 1.1rem;
}

.animate-fadeUp {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-fadeUp.in-view {
    opacity: 1;
    transform: translateY(0);
}

.mc-wp-head {
    display: none;
}

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

.wp-caption-text {
    display: none;
}

.elementor-section {
    display: contents;
}

.wp-widget-area {
    display: none;
}

.post-thumbnail {
    display: none;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: var(--c-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--c-btn-gold);
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .game-area {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--c-navy);
        flex-direction: column;
        padding: 16px;
        border-bottom: 2px solid var(--c-btn-gold);
        z-index: 999;
        gap: 2px;
    }

    .header-nav.is-open {
        display: flex;
    }

    .header-nav a {
        font-size: 0.95rem;
        padding: 10px 14px;
    }

    .header-cta {
        display: none;
    }

    .mobile-cta {
        display: flex;
        gap: 8px;
    }

    .burger {
        display: flex;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .screenshots-grid {
        display: none;
    }

    .screenshots-slider {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .author-photo {
        width: 80px;
        height: 80px;
    }

    .section {
        padding: 36px 0;
    }

    .review-block {
        padding: 20px;
    }

    .sticky-widget {
        bottom: 14px;
        right: 12px;
    }

    .header-winner {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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

    .similar-games-grid {
        grid-template-columns: 1fr;
    }
}
