@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

:root {
    --c-primary: #66005b;
    --c-primary-dark: #4a0041;
    --c-primary-light: #7d0070;
    --c-gold: #d4a81c;
    --c-gold-dark: #b88c10;
    --c-green: #08d460;
    --c-green-dark: #06b550;
    --c-bg: #f5f7f5;
    --c-bg-alt: #eaf5ee;
    --c-white: #ffffff;
    --c-text: #1a1a1a;
    --c-text-muted: #555;
    --c-border: #d0e4d0;
    --radius: 10px;
    --shadow: 0 4px 18px rgba(0, 0, 0, .12);
    --shadow-hover: 0 8px 32px rgba(102, 0, 91, .22);
    --transition: .22s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--c-primary-dark)
}

h1 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    margin-bottom: .75rem
}

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

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

p {
    margin-bottom: .9rem
}

ul, ol {
    padding-left: 1.4rem;
    margin-bottom: .9rem
}

li {
    margin-bottom: .35rem
}

strong {
    font-weight: 700
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px
}

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

main {
    flex: 1
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: .55rem 1.35rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

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

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

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

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

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

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

.btn--sm {
    padding: .38rem .9rem;
    font-size: .8rem
}

.btn--lg {
    padding: .75rem 2rem;
    font-size: 1.05rem
}

.btn--xl {
    padding: .9rem 2.4rem;
    font-size: 1.15rem
}

.btn svg, .btn img {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.box {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden
}

.xz4k9 {
    display: none;
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.wp-block-spacer {
    height: 20px
}

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

.entry-meta, .post-meta {
    display: none
}

.elementor-invisible {
    visibility: hidden
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: .6rem 18px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.header-logo img {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35))
}

.header-logo-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .03em
}

.header-logo-text span {
    color: var(--c-gold)
}

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

.header-nav a {
    color: rgba(255, 255, 255, .88);
    font-size: .82rem;
    font-weight: 600;
    padding: .42rem .72rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition), color var(--transition);
}

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

.header-nav a svg {
    width: 14px;
    height: 14px;
    opacity: .8
}

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

.header-winner {
    background: rgba(255, 255, 255, .1);
    border-radius: 50px;
    padding: .28rem .8rem;
    font-size: .75rem;
    color: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.header-winner-dot {
    width: 7px;
    height: 7px;
    background: var(--c-green);
    border-radius: 50%;
    animation: pulse 1.6s infinite
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    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-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-primary-dark);
    padding: 1rem 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.mobile-menu.open {
    display: block;
    animation: fadeDown .22s ease
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .88);
    font-size: .9rem;
    font-weight: 600;
    padding: .65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu a:last-child {
    border-bottom: none
}

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

.mobile-menu-btns {
    display: flex;
    gap: 8px;
    margin-top: .8rem;
    flex-wrap: wrap
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 60%, #2a003c 100%);
    color: #fff;
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/hero-dragon.png') center/cover no-repeat;
    opacity: .18;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 168, 28, .2);
    border: 1px solid var(--c-gold);
    border-radius: 50px;
    padding: .3rem .85rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--c-gold);
    margin-bottom: 1.1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero h1 {
    color: #fff;
    font-size: clamp(1.9rem, 5vw, 3.2rem);
    margin-bottom: .6rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3)
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .82);
    max-width: 640px;
    margin-bottom: 2rem;
    line-height: 1.7
}

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

.hero-tiles {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 1.5rem
}

.hero-tile {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    padding: .85rem .9rem;
    text-align: center;
    transition: background var(--transition), transform var(--transition);
}

.hero-tile:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateY(-3px)
}

.hero-tile-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-gold);
    display: block;
    margin-bottom: .2rem
}

.hero-tile-lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .05em
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    padding: .6rem 0
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .8rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: .2rem
}

.breadcrumb-list li + li::before {
    content: '/';
    color: var(--c-text-muted);
    margin-right: .2rem
}

.breadcrumb-list a {
    color: var(--c-gold);
    font-weight: 600
}

.breadcrumb-list span {
    color: var(--c-text-muted)
}

/* ===== SECTIONS ===== */
.section {
    padding: 2.8rem 0
}

.section-alt {
    background: var(--c-bg-alt)
}

.section-title {
    font-size: clamp(1.3rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--c-primary-dark);
    margin-bottom: .4rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.section-title-icon {
    font-size: 1.2rem
}

.section-sub {
    color: var(--c-text-muted);
    font-size: .95rem;
    margin-bottom: 1.8rem;
    max-width: 700px
}

.section-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-gold));
    border-radius: 2px;
    width: 60px;
    margin: .5rem 0 1.5rem
}

/* ===== CASINO RATINGS ===== */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.casino-card {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
    padding: 1.2rem 1.4rem;
    display: grid;
    grid-template-columns:32px 90px 1fr auto;
    gap: 14px;
    align-items: center;
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

.casino-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px)
}

.casino-card.top-1 {
    border-left: 4px solid #d4a81c;
    background: linear-gradient(135deg, #fffbef 0%, #fff 100%)
}

.casino-card.top-2 {
    border-left: 4px solid #aaa;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%)
}

.casino-card.top-3 {
    border-left: 4px solid #cd7f32;
    background: linear-gradient(135deg, #fdf5ed 0%, #fff 100%)
}

.casino-rank {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--c-text-muted);
    text-align: center;
    min-width: 28px;
}

.casino-card.top-1 .casino-rank {
    color: #d4a81c
}

.casino-card.top-2 .casino-rank {
    color: #aaa
}

.casino-card.top-3 .casino-rank {
    color: #cd7f32
}

.casino-logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
    border-radius: 6px;
    background: #f5f5f5;
    padding: 4px
}

.casino-body {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.casino-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--c-primary-dark);
    display: flex;
    align-items: center;
    gap: 6px
}

.casino-au-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: .68rem;
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: 4px;
}

.casino-bonus {
    font-size: .95rem;
    font-weight: 700;
    color: var(--c-green-dark)
}

.casino-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .76rem;
    color: var(--c-text-muted)
}

.casino-meta-item {
    display: flex;
    align-items: center;
    gap: 3px
}

.casino-pros {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px
}

.casino-pro {
    background: var(--c-bg-alt);
    border-radius: 4px;
    padding: .18rem .5rem;
    font-size: .72rem;
    color: var(--c-primary);
    font-weight: 600;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--c-gold)
}

.casino-stars {
    color: var(--c-gold);
    font-size: .95rem
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-end;
    flex-shrink: 0
}

.casino-legal {
    font-size: .66rem;
    color: var(--c-text-muted);
    text-align: right;
    max-width: 120px;
    line-height: 1.3
}

.casino-legal a {
    font-size: .66rem;
    color: var(--c-text-muted)
}

.casino-games-count {
    font-size: .72rem;
    color: var(--c-text-muted)
}

.ajax-more-wrap {
    text-align: center;
    margin-top: 1.4rem
}

.ajax-spinner {
    display: none;
    width: 28px;
    height: 28px;
    border: 3px solid var(--c-border);
    border-top-color: var(--c-primary);
    border-radius: 50%;
    animation: spin .8s linear infinite;
    margin: .6rem auto
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* ===== DEMO BLOCK ===== */
.demo-block {
    background: var(--c-primary-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.demo-frame-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

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

.demo-cta-bar {
    background: var(--c-primary);
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .8rem
}

.demo-cta-text {
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
    font-weight: 600
}

.demo-cta-text strong {
    color: var(--c-gold)
}

/* ===== ADVANTAGES ===== */
.adv-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem
}

.adv-card {
    background: var(--c-white);
    border-radius: var(--radius);
    padding: 1.4rem 1.2rem;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--c-primary);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.adv-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.adv-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.adv-card h3 {
    font-size: .95rem;
    font-weight: 800;
    color: var(--c-primary-dark);
    margin-bottom: .4rem
}

.adv-card p {
    font-size: .82rem;
    color: var(--c-text-muted);
    margin: 0;
    line-height: 1.5
}

/* ===== MOBILE BLOCK ===== */
.mobile-block {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 2rem;
    align-items: center
}

.phone-frame {
    position: relative;
    width: 220px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 32px;
    padding: 12px 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35), inset 0 1px 1px rgba(255, 255, 255, .1);
    border: 2px solid #333;
}

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

.phone-screen {
    border-radius: 22px;
    background: #000
}

.phone-screen img {
    width: 100%;
    height: auto;
    display: block
}

.phone-btn-row {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 1.4rem;
    flex-wrap: wrap
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    padding: .5rem .9rem;
    font-size: .78rem;
    font-weight: 700;
    transition: background var(--transition), transform var(--transition);
}

.app-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px)
}

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

.mobile-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem
}

.mobile-table th {
    background: var(--c-primary);
    color: #fff;
    padding: .55rem .75rem;
    text-align: left;
    font-weight: 700
}

.mobile-table td {
    padding: .5rem .75rem;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text)
}

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

.mobile-table tr:nth-child(even) td {
    background: var(--c-bg-alt)
}

/* ===== WINNERS ===== */
.winners-table-wrap {
    overflow-x: auto
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px
}

.winners-table thead th {
    background: var(--c-primary);
    color: #fff;
    padding: .6rem 1rem;
    text-align: left;
    font-size: .82rem;
    font-weight: 700;
}

.winners-table thead th:first-child {
    border-radius: 8px 0 0 0
}

.winners-table thead th:last-child {
    border-radius: 0 8px 0 0
}

.winners-table tbody tr {
    transition: background var(--transition)
}

.winners-table tbody tr:hover {
    background: var(--c-bg-alt)
}

.winners-table tbody td {
    padding: .55rem 1rem;
    border-bottom: 1px solid var(--c-border);
    font-size: .84rem
}

.winners-table tbody tr:nth-child(-n+3) td {
    font-weight: 700
}

.winners-table tbody tr:nth-child(1) td:first-child::before {
    content: '🥇 '
}

.winners-table tbody tr:nth-child(2) td:first-child::before {
    content: '🥈 '
}

.winners-table tbody tr:nth-child(3) td:first-child::before {
    content: '🥉 '
}

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

.win-mult {
    color: var(--c-primary);
    font-weight: 600;
    font-size: .8rem
}

/* ===== CONTENT / REVIEW ===== */
.content-block {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem
}

.content-block h2 {
    color: var(--c-primary-dark);
    margin-top: 1.4rem;
    margin-bottom: .6rem;
    font-size: 1.3rem
}

.content-block h3 {
    color: var(--c-primary);
    margin-top: 1.2rem;
    margin-bottom: .5rem;
    font-size: 1.1rem
}

.content-block p {
    line-height: 1.75;
    color: var(--c-text);
    margin-bottom: .85rem
}

.content-block ul {
    list-style: disc;
    padding-left: 1.4rem;
    margin-bottom: .85rem
}

.content-block ol {
    list-style: decimal;
    padding-left: 1.4rem;
    margin-bottom: .85rem
}

.content-block li {
    margin-bottom: .4rem;
    line-height: 1.65
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: .88rem
}

.content-block table th {
    background: var(--c-primary);
    color: #fff;
    padding: .55rem .8rem;
    text-align: left;
    font-weight: 700
}

.content-block table td {
    padding: .5rem .8rem;
    border: 1px solid var(--c-border)
}

.content-block table tr:nth-child(even) td {
    background: var(--c-bg-alt)
}

.content-block a {
    color: var(--c-gold);
    font-weight: 600
}

.content-block blockquote {
    border-left: 4px solid var(--c-primary);
    padding: .7rem 1rem;
    background: var(--c-bg-alt);
    border-radius: 0 8px 8px 0;
    margin: 1rem 0;
    font-style: italic;
    color: var(--c-text-muted);
}

.content-block img {
    border-radius: 8px;
    margin: 1rem 0
}

.content-block hr {
    border: none;
    border-top: 2px solid var(--c-border);
    margin: 1.5rem 0
}

/* ===== AUTHOR ===== */
.author-card {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.6rem;
    display: grid;
    grid-template-columns:140px 1fr;
    gap: 1.5rem;
    align-items: start;
    border-top: 3px solid var(--c-primary);
}

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

.author-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-primary-dark);
    margin-bottom: .15rem
}

.author-title {
    font-size: .85rem;
    color: var(--c-text-muted);
    font-weight: 600;
    margin-bottom: .6rem
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .9rem;
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-bottom: .7rem
}

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

.author-meta svg {
    width: 13px;
    height: 13px;
    opacity: .7
}

.author-bio {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--c-text);
    margin-bottom: .9rem
}

.author-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.author-social a {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--c-bg-alt);
    border-radius: 6px;
    padding: .3rem .65rem;
    font-size: .76rem;
    font-weight: 700;
    color: var(--c-primary);
    transition: background var(--transition), color var(--transition);
}

.author-social a:hover {
    background: var(--c-primary);
    color: #fff
}

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

.author-dates {
    font-size: .74rem;
    color: var(--c-text-muted);
    margin-top: .7rem;
    border-top: 1px solid var(--c-border);
    padding-top: .7rem
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--c-primary-dark);
    color: rgba(255, 255, 255, .82);
    padding: 2.5rem 0 1rem
}

.footer-grid {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    gap: 1.8rem;
    margin-bottom: 1.8rem
}

.footer-col h4 {
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    margin-bottom: .9rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

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

.footer-links li {
    margin-bottom: .45rem
}

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

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

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.2)
}

.footer-logo p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    margin-top: .6rem;
    line-height: 1.5
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem
}

.footer-badge {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: .3rem .65rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

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

.footer-pay-item {
    background: rgba(255, 255, 255, .12);
    border-radius: 5px;
    padding: .3rem .55rem;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 1rem;
    font-size: .72rem;
    color: rgba(255, 255, 255, .55);
    text-align: center;
    line-height: 1.7;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .6);
    margin: 0 6px
}

.footer-bottom a:hover {
    color: var(--c-gold)
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: .9rem
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.footer-social a:hover {
    background: var(--c-gold)
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, .8)
}

.footer-au-flag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .65);
    margin-top: .4rem;
    justify-content: center
}

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

/* ===== STICKY WIDGET ===== */
.sticky-widget {
    position: fixed;
    bottom: 22px;
    right: 20px;
    z-index: 999;
    background: var(--c-primary);
    border-radius: 14px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .35);
    padding: .8rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    max-width: 240px;
    animation: slideUp .4s ease;
}

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

.sticky-widget-logo {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, .12);
    padding: 4px;
    flex-shrink: 0
}

.sticky-widget-body {
    flex: 1;
    min-width: 0
}

.sticky-widget-name {
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.sticky-widget-bonus {
    font-size: .72rem;
    color: var(--c-gold);
    font-weight: 600;
    margin: .1rem 0 .4rem
}

.sticky-widget-close {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: rgba(0, 0, 0, .5);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    transition: background var(--transition);
}

.sticky-widget-close:hover {
    background: #000
}

/* ===== INFO PAGES ===== */
.info-content {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem 2.5rem;
    margin: 2rem 0
}

.info-content h1 {
    color: var(--c-primary-dark);
    margin-bottom: 1rem
}

.info-content h2 {
    color: var(--c-primary);
    font-size: 1.2rem;
    margin: 1.4rem 0 .5rem
}

.info-content p {
    line-height: 1.75;
    margin-bottom: .85rem
}

.info-content ul {
    padding-left: 1.4rem;
    margin-bottom: .85rem
}

.info-content li {
    margin-bottom: .4rem
}

.info-content a {
    color: var(--c-gold);
    font-weight: 600
}

.contact-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0
}

.contact-item {
    background: var(--c-bg-alt);
    border-radius: 8px;
    padding: 1rem 1.2rem
}

.contact-item h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--c-primary-dark);
    margin-bottom: .35rem
}

.contact-item p, .contact-item a {
    font-size: .88rem;
    color: var(--c-text-muted)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    max-width: 520px;
    margin: 1.5rem 0
}

.contact-form label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: .2rem
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: .6rem .85rem;
    border: 2px solid var(--c-border);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: .88rem;
    color: var(--c-text);
    background: #fff;
    transition: border-color var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--c-primary)
}

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

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

.faq-item {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.2rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--c-primary-dark);
    font-size: .92rem;
    gap: .7rem;
}

.faq-q svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform var(--transition);
    stroke: var(--c-primary)
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease
}

.faq-item.open .faq-a {
    max-height: 600px;
    padding: .1rem 1.2rem 1rem
}

.faq-a p {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--c-text-muted);
    margin: 0
}

/* ===== UTIL ===== */
.text-center {
    text-align: center
}

.mt1 {
    margin-top: 1rem
}

.mb1 {
    margin-bottom: 1rem
}

.mt2 {
    margin-top: 2rem
}

.mb2 {
    margin-bottom: 2rem
}

.w-full {
    width: 100%
}

.hidden {
    display: none !important
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--c-text);
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    flex-shrink: 0;
}

.licence-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: .68rem;
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: 4px;
}

.wp-block-group__inner-container {
    display: contents
}

.wp-content-placeholder, .elementor-section-wrap {
    display: contents
}

.yoast-schema-graph {
    display: none
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .casino-card {
        grid-template-columns:28px 70px 1fr
    }

    .casino-actions {
        grid-column: 1/-1;
        flex-direction: row;
        justify-content: flex-end
    }
}

@media (max-width: 900px) {
    .mobile-block {
        grid-template-columns:1fr
    }

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

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

    .author-photo {
        margin: 0 auto
    }

    .author-social {
        justify-content: center
    }

    .author-meta {
        justify-content: center
    }
}

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

    .burger {
        display: flex
    }

    .site-header {
        position: sticky
    }

    .casino-card {
        grid-template-columns:26px 1fr;
        padding: .9rem 1rem
    }

    .casino-logo {
        grid-row: 1;
        grid-column: 2
    }

    .casino-body {
        grid-column: 1/-1
    }

    .casino-actions {
        grid-column: 1/-1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 6px
    }

    .casino-legal {
        text-align: left;
        max-width: none
    }

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

    .contact-grid {
        grid-template-columns:1fr
    }

    .hero {
        padding: 2.2rem 0 2rem
    }

    .info-content {
        padding: 1.4rem
    }
}

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

    .sticky-widget {
        bottom: 14px;
        right: 12px;
        padding: .6rem .8rem;
        max-width: 200px
    }

    .demo-cta-bar {
        flex-direction: column;
        align-items: flex-start
    }

    .phone-frame {
        width: 170px
    }
}
