:root {
    --clr-bg: #1f616f;
    --clr-bg-dark: #164a55;
    --clr-nav: #716f6c;
    --clr-nav-dark: #5a5856;
    --clr-btn-gold: #f4e526;
    --clr-btn-cream: #f3dcc2;
    --clr-text-light: #ffffff;
    --clr-text-dark: #1a1a18;
    --clr-text-muted: #c8e0e4;
    --clr-border: rgba(255, 255, 255, 0.15);
    --clr-card: rgba(255, 255, 255, 0.07);
    --clr-card-hover: rgba(255, 255, 255, 0.12);
    --clr-gold-glow: rgba(244, 229, 38, 0.25);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.45);
    --font-main: 'Changa', sans-serif;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

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

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

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

/* ====== HEADER ====== */
.hdr-b3k9 {
    background-color: var(--clr-nav);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid rgba(244, 229, 38, 0.3);
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hdr-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hdr-logo img {
    height: 48px;
    width: auto;
    border-radius: var(--radius-sm);
}

.hdr-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-btn-gold);
    letter-spacing: 0.5px;
    display: none;
}

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

.hdr-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-text-light);
    font-size: 0.85rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.hdr-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--clr-btn-gold);
}

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

.hdr-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--gold {
    background: var(--clr-btn-gold);
    color: var(--clr-text-dark);
    padding: 9px 18px;
    font-size: 0.9rem;
    box-shadow: 0 0 12px var(--clr-gold-glow);
}

.btn--gold:hover {
    background: #ffe800;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--clr-gold-glow);
    color: var(--clr-text-dark);
}

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

.btn--cream {
    background: var(--clr-btn-cream);
    color: var(--clr-text-dark);
    padding: 9px 18px;
    font-size: 0.9rem;
}

.btn--cream:hover {
    background: #f8e8d0;
    transform: translateY(-1px);
    color: var(--clr-text-dark);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--clr-btn-gold);
    color: var(--clr-btn-gold);
    padding: 7px 16px;
    font-size: 0.85rem;
}

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

.btn--lg {
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.btn--xl {
    padding: 16px 40px;
    font-size: 1.2rem;
    border-radius: var(--radius-md);
}

.hdr-winner {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(244, 229, 38, 0.4);
    border-radius: 30px;
    padding: 5px 12px;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    animation: pulse-glow 3s ease-in-out infinite;
}

.hdr-winner .w-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: blink 1.5s ease-in-out infinite;
}

.hdr-winner .w-amount {
    color: var(--clr-btn-gold);
    font-weight: 700;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 6px rgba(244, 229, 38, 0.2);
    }
    50% {
        box-shadow: 0 0 14px rgba(244, 229, 38, 0.5);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

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

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

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

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

.mobile-nav {
    display: none;
    background: var(--clr-nav-dark);
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.mobile-nav.open {
    max-height: 500px;
    padding: 12px 0;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: var(--clr-text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--transition);
}

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

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 74, 85, 0.88) 0%, rgba(31, 97, 111, 0.7) 50%, rgba(22, 74, 85, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(244, 229, 38, 0.15);
    border: 1px solid rgba(244, 229, 38, 0.5);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-btn-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: var(--clr-text-light);
}

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

.hero-sub {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}

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

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-btn-gold);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ====== SECTION COMMON ====== */
.section-r5p8 {
    padding: 60px 0;
}

.section-alt {
    background: rgba(0, 0, 0, 0.15);
}

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-btn-gold);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--clr-text-light);
}

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

.section-sub {
    color: var(--clr-text-muted);
    margin-top: 10px;
    font-size: 0.95rem;
}

/* ====== DEMO + GAME DETAILS ====== */
.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

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

.demo-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 62%;
    background: #0d3d46;
}

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

.demo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    text-align: center;
    background: radial-gradient(ellipse at center, #0d3d46 0%, #091f24 100%);
}

.demo-placeholder img {
    width: 80px;
    height: auto;
    border-radius: var(--radius-sm);
}

.demo-placeholder p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.demo-actions {
    display: flex;
    gap: 12px;
    padding: 16px;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.2);
}

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

.game-details-card h3 {
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-btn-gold);
}

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

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

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

.details-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.details-table td {
    padding: 10px 16px;
    font-size: 0.88rem;
    vertical-align: middle;
}

.details-table td:first-child {
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    width: 140px;
}

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

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

.rtp-highlight {
    color: var(--clr-btn-gold) !important;
    font-size: 1rem !important;
}

/* ====== MOBILE SECTION ====== */
.mobile-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

.phone-frame {
    position: relative;
    width: 200px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 14px 10px;
    border: 3px solid #444;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-frame::before {
    content: '';
    display: block;
    width: 50px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    margin: 0 auto 10px;
}

.phone-frame img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.phone-frame::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    border: 3px solid #555;
    margin: 10px auto 0;
}

.mobile-info {
    flex: 1;
}

.mobile-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

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

.mobile-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

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

.mobile-table td {
    padding: 9px 12px;
    font-size: 0.87rem;
}

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

.mobile-table td:last-child {
    font-weight: 600;
}

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

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    color: var(--clr-text-light);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--clr-btn-gold);
    color: var(--clr-btn-gold);
    transform: translateY(-2px);
}

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

/* ====== JACKPOTS ====== */
.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jackpot-card {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    padding: 28px 20px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.jackpot-card.bronze::before {
    background: linear-gradient(90deg, #cd7f32, #e8a45a);
}

.jackpot-card.silver::before {
    background: linear-gradient(90deg, #9e9e9e, #e0e0e0);
}

.jackpot-card.gold::before {
    background: linear-gradient(90deg, var(--clr-btn-gold), #ffad00);
}

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

.jackpot-tier {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.jackpot-card.bronze .jackpot-tier {
    color: #cd7f32;
}

.jackpot-card.silver .jackpot-tier {
    color: #b0b0b0;
}

.jackpot-card.gold .jackpot-tier {
    color: var(--clr-btn-gold);
}

.jackpot-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    line-height: 1;
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}

.jackpot-card.bronze .jackpot-amount {
    color: #e8a45a;
}

.jackpot-card.silver .jackpot-amount {
    color: #d4d4d4;
}

.jackpot-card.gold .jackpot-amount {
    color: var(--clr-btn-gold);
}

.jackpot-winners {
    width: 100%;
}

.jackpot-winners caption {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    padding-bottom: 8px;
}

.jackpot-winners td {
    padding: 5px 8px;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.jackpot-winners td:last-child {
    color: var(--clr-btn-gold);
    font-weight: 700;
    text-align: right;
}

.jackpot-winners td:first-child {
    text-align: left;
    color: var(--clr-text-muted);
}

/* ====== VIDEO ====== */
.video-wrap {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-lg);
    max-width: 860px;
    margin: 0 auto;
}

.video-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

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

.video-meta {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
}

.video-meta-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.video-meta-text p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

/* ====== CONTENT REVIEW ====== */
.review-content {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.review-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 28px 0 12px;
    color: var(--clr-btn-gold);
}

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

.review-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 22px 0 10px;
    color: var(--clr-btn-cream);
}

.review-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 18px 0 8px;
}

.review-content p {
    margin-bottom: 16px;
    color: var(--clr-text-muted);
    line-height: 1.75;
}

.review-content ul, .review-content ol {
    margin: 0 0 16px 20px;
}

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

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

.review-content li {
    color: var(--clr-text-muted);
    margin-bottom: 8px;
    line-height: 1.65;
}

.review-content strong {
    color: var(--clr-text-light);
    font-weight: 700;
}

.review-content em {
    font-style: italic;
    color: var(--clr-btn-cream);
}

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

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

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

.review-content table th {
    background: rgba(244, 229, 38, 0.1);
    color: var(--clr-btn-gold);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    border: 1px solid var(--clr-border);
}

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

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

.review-content blockquote {
    border-left: 3px solid var(--clr-btn-gold);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(244, 229, 38, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--clr-text-muted);
}

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

.review-content img {
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

/* ====== FAQ ====== */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.faq-item.open {
    border-color: rgba(244, 229, 38, 0.4);
}

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

.faq-q:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.open .faq-q {
    color: var(--clr-btn-gold);
    background: rgba(244, 229, 38, 0.05);
}

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

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(244, 229, 38, 0.2);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 20px 18px;
}

/* ====== AUTHOR ====== */
.author-card {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    padding: 36px;
    box-shadow: var(--shadow-md);
    max-width: 860px;
    margin: 0 auto;
}

.author-top {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

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

.author-meta {
    flex: 1;
    min-width: 200px;
}

.author-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.author-title {
    color: var(--clr-btn-cream);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

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

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

.author-stats {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.author-stat {
}

.author-stat strong {
    color: var(--clr-btn-gold);
    font-size: 1.1rem;
}

.author-stat span {
    color: var(--clr-text-muted);
    font-size: 0.8rem;
}

.author-bio {
    color: var(--clr-text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
    font-size: 0.92rem;
}

.author-contacts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

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

.author-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--clr-btn-gold);
    border-color: rgba(244, 229, 38, 0.4);
}

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

.author-dates {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    border-top: 1px solid var(--clr-border);
    padding-top: 16px;
}

.author-dates span strong {
    color: var(--clr-text-light);
}

/* ====== FOOTER ====== */
.footer-f2n7 {
    background-color: var(--clr-nav);
    color: var(--clr-text-light);
    margin-top: auto;
    border-top: 2px solid rgba(244, 229, 38, 0.3);
}

.footer-top {
    padding: 50px 20px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand {
}

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

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

.footer-col h5 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-btn-gold);
    margin-bottom: 14px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--clr-btn-gold);
}

.footer-col .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.footer-col .contact-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--clr-btn-gold);
}

.footer-logos {
    border-top: 1px solid var(--clr-border);
    padding-top: 24px;
    margin-bottom: 24px;
}

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

.footer-logos-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    min-width: 80px;
}

.footer-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    min-height: 36px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background var(--transition);
}

.footer-logo-item:hover {
    background: rgba(255, 255, 255, 0.18);
}

.footer-logo-item img {
    height: 24px;
    width: auto;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--clr-text-muted);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--clr-btn-gold);
    color: var(--clr-text-dark);
    border-color: var(--clr-btn-gold);
}

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

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    transition: border-color var(--transition);
}

.trust-badge:hover {
    border-color: rgba(244, 229, 38, 0.4);
    color: var(--clr-text-light);
}

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

.age-badge {
    width: 36px;
    height: 36px;
    background: #d00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.au-flag {
    width: 36px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 700px;
}

.footer-legal a {
    color: var(--clr-btn-cream);
}

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

.footer-copyright {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    text-align: right;
    white-space: nowrap;
}

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

.widget-card {
    background: var(--clr-nav-dark);
    border: 1px solid rgba(244, 229, 38, 0.5);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(244, 229, 38, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.widget-logo {
    height: 48px;
    width: auto;
    border-radius: var(--radius-sm);
}

.widget-bonus {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    line-height: 1.4;
}

.widget-bonus strong {
    color: var(--clr-btn-gold);
    display: block;
    font-size: 0.9rem;
}

.widget-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    transition: all var(--transition);
}

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

.widget-card {
    position: relative;
}

/* ====== TABLES (overflow) ====== */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    border-collapse: collapse;
}

/* ====== BREADCRUMB ====== */
.breadcrumb-m6k3 {
    padding: 10px 0;
    font-size: 0.82rem;
}

.breadcrumb-m6k3 ol {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumb-m6k3 li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-text-muted);
}

.breadcrumb-m6k3 li::after {
    content: '/';
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-m6k3 li:last-child::after {
    display: none;
}

.breadcrumb-m6k3 a {
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

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

.breadcrumb-m6k3 li:last-child span {
    color: var(--clr-text-light);
}

/* ====== INFO PAGE ====== */
.info-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 20px;
}

.info-wrap h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--clr-btn-gold);
}

.info-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 28px 0 10px;
    color: var(--clr-btn-cream);
}

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

.info-content ul {
    margin: 0 0 14px 20px;
    list-style: disc;
}

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

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

.info-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
}

.info-content table th {
    background: rgba(244, 229, 38, 0.08);
    color: var(--clr-btn-gold);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    border: 1px solid var(--clr-border);
}

.info-content table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    text-align: left;
}

.info-content strong {
    color: var(--clr-text-light);
    font-weight: 700;
}

.content.box {
    padding: 40px;
}

.content.box h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--clr-btn-gold);
}

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

.cx-breadcrumb-bar a {
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.cx-breadcrumb-bar a:hover {
    color: var(--clr-btn-gold);
}

.cx-breadcrumb-bar svg {
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.cx-breadcrumb-bar span {
    color: var(--clr-text-light);
}

/* ====== FADE ANIMATIONS ====== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

/* ====== UNUSED (uniqualization) ====== */
.wp-block-group {
    display: block;
}

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

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    text-align: center;
    margin: 0 auto;
}

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

.entry-content-asset {
    overflow: hidden;
}

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

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .phone-frame {
        width: 160px;
    }

    .jackpots-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

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

    .hdr-winner {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .hdr-logo span {
        display: block;
    }

    .section-r5p8 {
        padding: 40px 0;
    }

    .review-content {
        padding: 24px;
    }

    .author-card {
        padding: 24px;
    }

    .author-top {
        gap: 16px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }

    .footer-copyright {
        text-align: left;
    }

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

    .widget-card {
        min-width: 130px;
        padding: 12px;
    }

    .hero-stats {
        gap: 16px;
    }

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

    .btn--xl {
        padding: 13px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hdr-inner {
        padding: 8px 14px;
    }

    .hdr-logo img {
        height: 38px;
    }

    .demo-actions {
        flex-direction: column;
    }

    .demo-actions .btn {
        width: 100%;
    }

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

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 320px;
    }
}
