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

:root {
    --clr-header: #3f1300;
    --clr-header-dark: #2a0d00;
    --clr-btn-blue: #0076f0;
    --clr-btn-yellow: #ffce0a;
    --clr-bg: #5470ca;
    --clr-bg-dark: #3d57b0;
    --clr-bg-light: #6880d4;
    --clr-text-light: #ffffff;
    --clr-text-muted: rgba(255, 255, 255, 0.75);
    --clr-card: rgba(255, 255, 255, 0.08);
    --clr-card-border: rgba(255, 255, 255, 0.15);
    --clr-gold: #ffce0a;
    --clr-gold-dark: #e0b300;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --transition: 0.25s ease;
    --font: 'Oswald', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--clr-bg);
}

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

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

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

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

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

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

.box {
    width: 100%;
}

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

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    filter: brightness(1.08);
}

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

.btn--yellow {
    background: var(--clr-gold);
    color: #1a0a00;
}

.btn--yellow:hover {
    color: #1a0a00;
}

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

.btn--blue:hover {
    color: #fff;
}

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

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

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

.btn--sm {
    padding: 7px 14px;
    font-size: 0.85rem;
}

/* ===================== 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 0;
}

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

.header-logo {
    flex-shrink: 0;
}

.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;
    padding: 6px 12px;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

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

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

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

.header-winner {
    background: rgba(255, 206, 10, 0.1);
    border: 1px solid rgba(255, 206, 10, 0.3);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.78rem;
    color: var(--clr-gold);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

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

.winner-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    flex-shrink: 0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .5;
        transform: scale(1.4);
    }
}

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

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

.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 nav */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--clr-header-dark);
    z-index: 1001;
    padding: 70px 20px 20px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    display: flex;
    transform: translateX(0);
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--clr-text-muted);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

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

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

.mobile-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.mobile-nav-btns .btn {
    justify-content: center;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 6, 0, 0.88) 0%, rgba(63, 19, 0, 0.7) 50%, rgba(20, 6, 0, 0.3) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 206, 10, 0.15);
    border: 1px solid rgba(255, 206, 10, 0.4);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.8rem;
    color: var(--clr-gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
    color: #fff;
}

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

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

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

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.stars {
    display: flex;
    gap: 3px;
}

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

.rating-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.rating-count {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs-wrap {
    background: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

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

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

.breadcrumbs .sep {
    opacity: 0.4;
}

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

/* ===================== SECTION TITLES ===================== */
.section-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

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

.section-sub {
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
    font-weight: 300;
}

/* ===================== CONTENT SECTION ===================== */
.content-section {
    padding: 48px 0;
}

.content-section + .content-section {
    padding-top: 0;
}

/* DEMO + TABLE BLOCK */
.demo-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 40px;
}

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

.demo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: #000;
}

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

.demo-frame-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 6, 0, 0.75);
    z-index: 2;
    cursor: pointer;
    transition: background var(--transition);
}

.demo-frame-overlay:hover {
    background: rgba(20, 6, 0, 0.55);
}

.play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--clr-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 206, 10, 0.5);
    transition: transform var(--transition);
}

.demo-frame-overlay:hover .play-icon {
    transform: scale(1.08);
}

.play-icon svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
}

.demo-cta {
    padding: 16px;
    text-align: center;
    border-top: 1px solid var(--clr-card-border);
    background: rgba(0, 0, 0, 0.2);
}

.demo-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* GAME DETAILS TABLE */
.game-details-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.game-details-title {
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.25);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-gold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--clr-card-border);
}

.game-details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

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

.game-details-table td {
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

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

.gd-param {
    color: var(--clr-text-muted);
    white-space: nowrap;
    font-weight: 400;
    width: 45%;
}

.gd-param-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gd-param-inner svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    flex-shrink: 0;
}

.gd-val {
    color: #fff;
    font-weight: 500;
}

.badge-rtp {
    display: inline-block;
    background: rgba(46, 204, 113, 0.18);
    border: 1px solid rgba(46, 204, 113, 0.35);
    color: #2ecc71;
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 0.82rem;
}

.badge-vol {
    display: inline-block;
    background: rgba(255, 206, 10, 0.14);
    border: 1px solid rgba(255, 206, 10, 0.3);
    color: var(--clr-gold);
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 0.82rem;
}

/* ADVANTAGES TILES */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

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

.advantage-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.advantage-tile svg {
    width: 36px;
    height: 36px;
    color: var(--clr-gold);
    margin: 0 auto 14px;
    display: block;
}

.advantage-tile h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.advantage-tile p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 300;
    line-height: 1.5;
}

/* MOBILE BLOCK */
.mobile-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 40px;
}

.phone-frame {
    position: relative;
    width: 200px;
    margin: 0 auto;
}

.phone-shell {
    width: 200px;
    height: 400px;
    border-radius: 32px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    background: #111;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.phone-shell::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.phone-shell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-info-content {
}

.mobile-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.mobile-table td {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.mobile-table .val {
    color: #fff;
    font-weight: 500;
}

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

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition);
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.app-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

.pros-block, .cons-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pros-head, .cons-head {
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-head {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border-bottom: 1px solid rgba(46, 204, 113, 0.2);
}

.cons-head {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border-bottom: 1px solid rgba(231, 76, 60, 0.2);
}

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

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

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

.pros-list li::before {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    margin-top: 7px;
}

.cons-list li::before {
    content: '';
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e74c3c;
    margin-top: 7px;
}

/* WINNERS TABLE */
.winners-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.winners-head {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--clr-card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.winners-head h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #2ecc71;
}

.winners-table-wrap {
    overflow-x: auto;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 500px;
}

.winners-table th {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 14px;
    text-align: left;
    color: var(--clr-text-muted);
    font-weight: 500;
    letter-spacing: 0.03em;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.winners-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.winners-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.07);
}

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

.rank-1 td:first-child {
    color: var(--clr-gold);
    font-weight: 700;
}

.rank-2 td:first-child {
    color: #c0c0c0;
    font-weight: 700;
}

.rank-3 td:first-child {
    color: #cd7f32;
    font-weight: 700;
}

.win-amount {
    color: #2ecc71;
    font-weight: 600;
}

.nick-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-bg-dark), var(--clr-btn-blue));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
}

.nick-cell {
    display: flex;
    align-items: center;
}

/* REVIEW CONTENT */
.review-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-lg);
    padding: 28px 28px;
    margin-bottom: 40px;
}

.author-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-header), var(--clr-btn-blue));
    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: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.author-info p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    font-weight: 300;
}

.author-info a {
    font-size: 0.8rem;
    color: var(--clr-btn-blue);
}

.review-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 22px 0 10px;
    color: #fff;
}

.review-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 18px 0 8px;
    color: var(--clr-gold);
}

.review-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 14px 0 6px;
    color: #fff;
}

.review-content p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    line-height: 1.7;
    font-weight: 300;
}

.review-content ul, .review-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.review-content li {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 6px;
    font-weight: 300;
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9rem;
}

.review-content table th {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-gold);
}

.review-content table td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--clr-text-muted);
}

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

.review-content strong {
    color: #fff;
    font-weight: 600;
}

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

.review-content blockquote {
    border-left: 3px solid var(--clr-gold);
    padding: 10px 16px;
    margin: 14px 0;
    background: rgba(255, 206, 10, 0.05);
    color: var(--clr-text-muted);
    font-style: italic;
    font-size: 0.95rem;
}

/* FAQ */
.faq-block {
    margin-bottom: 40px;
}

.faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    user-select: none;
    gap: 12px;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), border-color var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--clr-gold);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    font-weight: 300;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

/* FOOTER */
.site-footer {
    background: var(--clr-header);
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 32px;
    padding: 40px 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-block {
}

.footer-logo img {
    height: 44px;
    object-fit: contain;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    font-weight: 300;
    line-height: 1.6;
}

.footer-nav h4, .footer-trust h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--clr-gold);
    margin-bottom: 14px;
}

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

.footer-nav a {
    color: var(--clr-text-muted);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-mid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-mid-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.footer-mid-group h5 {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    width: 100%;
    margin-bottom: 4px;
}

.footer-pay-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.7);
    transition: filter var(--transition);
}

.footer-pay-logo:hover {
    filter: brightness(1);
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
    text-decoration: none;
    transition: background var(--transition);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-text-muted);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

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

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

.footer-bottom {
    padding: 20px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
}

.au-flag {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.au-flag svg {
    width: 22px;
    height: 16px;
}

.footer-legal {
}

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

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

.footer-email {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
}

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

/* STICKY WIDGET */
.sticky-widget {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.widget-card {
    background: var(--clr-header-dark);
    border: 1px solid rgba(255, 206, 10, 0.35);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: widget-in 0.4s ease both;
    max-width: 220px;
}

@keyframes widget-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.widget-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.07);
}

.widget-text {
}

.widget-bonus {
    font-size: 0.72rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.widget-promo {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-gold);
    line-height: 1.3;
}

.widget-close {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background var(--transition);
}

.widget-close:hover {
    background: rgba(255, 0, 0, 0.4);
}

.widget-wrap {
    position: relative;
}

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

.info-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--clr-gold);
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 16px 0 8px;
    color: #fff;
}

.info-content p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
    font-weight: 300;
}

.info-content ul, .info-content ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

.info-content li {
    color: var(--clr-text-muted);
    font-size: 0.92rem;
    margin-bottom: 6px;
    line-height: 1.6;
}

.info-content a {
    color: var(--clr-btn-blue);
}

.info-content strong {
    color: #fff;
}

.page-h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    padding: 32px 0 0;
    color: #fff;
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 520px;
    margin: 20px 0;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-field label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.form-field input, .form-field textarea, .form-field select {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: #fff;
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

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

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

.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

    .footer-logo-block {
        grid-column: span 2;
    }
}

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

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header-cta .btn:not(.btn--visible-mobile) {
        display: none;
    }

    .header-cta {
        gap: 6px;
    }

    .hero {
        min-height: 380px;
    }

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

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

    .mobile-info-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-logo-block {
        grid-column: span 1;
    }

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

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

    .widget-card {
        max-width: 180px;
        padding: 10px 12px;
    }

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

    .info-content {
        padding: 22px 16px;
    }
}

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

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

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

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

.wp-block-group, .wp-block-columns {
    display: block;
}

.elementor-widget-wrap {
}

.wp-caption {
    display: none !important;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.xf91a {
    display: none;
}

.b3k72 {
    visibility: hidden;
}

.qr8w2-hidden {
    position: absolute;
    left: -9999px;
}
