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

:root {
    --wr-header-bg: #371d10;
    --wr-footer-bg: #371d10;
    --wr-bg: #1a0a03;
    --wr-btn-secondary: #680f09;
    --wr-btn-primary: #25690e;
    --wr-text: #f0e6d3;
    --wr-text-muted: #b89a7a;
    --wr-gold: #d4a843;
    --wr-gold-light: #f0c860;
    --wr-border: rgba(212, 168, 67, 0.25);
    --wr-card-bg: rgba(55, 29, 16, 0.7);
    --wr-card-bg2: rgba(26, 10, 3, 0.85);
    --wr-radius: 12px;
    --wr-radius-sm: 8px;
    --wr-transition: 0.28s ease;
    --wr-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
    --wr-shadow-gold: 0 0 18px rgba(212, 168, 67, 0.22);
}

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

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

body {
    font-family: 'Cinzel', serif;
    background: var(--wr-bg);
    color: var(--wr-text);
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    line-height: 1.25;
}

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

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

/* =========================================================
   HEADER
   ========================================================= */
.wr-hdr {
    background: var(--wr-header-bg);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid var(--wr-border);
}

.wr-hdr__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    max-width: 1180px;
    margin: 0 auto;
}

.wr-hdr__logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.wr-hdr__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wr-hdr__logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wr-gold);
    letter-spacing: 1px;
}

.wr-hdr__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.wr-hdr__nav a {
    color: var(--wr-text);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--wr-radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: background var(--wr-transition), color var(--wr-transition);
    letter-spacing: 0.5px;
}

.wr-hdr__nav a:hover {
    background: rgba(212, 168, 67, 0.12);
    color: var(--wr-gold);
}

.wr-hdr__nav svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

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

.wr-hdr__status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--wr-text-muted);
    white-space: nowrap;
}

.wr-hdr__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 6px #2ecc71;
    animation: wr-pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes wr-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.45;
    }
}

.wr-hdr__players {
    color: var(--wr-gold-light);
    font-weight: 600;
}

.wr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    border-radius: var(--wr-radius-sm);
    padding: 8px 16px;
    transition: transform var(--wr-transition), box-shadow var(--wr-transition), filter var(--wr-transition);
    text-decoration: none;
    white-space: nowrap;
}

.wr-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.12);
}

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

.wr-btn--login {
    background: var(--wr-btn-secondary);
    color: #fff;
}

.wr-btn--login:hover {
    color: #fff;
}

.wr-btn--signup {
    background: var(--wr-btn-primary);
    color: #fff;
    box-shadow: 0 0 14px rgba(37, 105, 14, 0.4);
}

.wr-btn--signup:hover {
    color: #fff;
    box-shadow: 0 0 22px rgba(37, 105, 14, 0.65);
}

.wr-btn--lg {
    padding: 13px 28px;
    font-size: 1rem;
    border-radius: var(--wr-radius);
}

.wr-btn--gold {
    background: linear-gradient(135deg, #d4a843, #f0c860);
    color: #1a0a03;
    font-weight: 700;
}

.wr-btn--gold:hover {
    color: #1a0a03;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.55);
}

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

.wr-btn--outline:hover {
    background: rgba(212, 168, 67, 0.12);
    color: var(--wr-gold);
}

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

.wr-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--wr-gold);
    border-radius: 2px;
    transition: transform var(--wr-transition), opacity var(--wr-transition);
}

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

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

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

.wr-mobile-menu {
    display: none;
    background: var(--wr-header-bg);
    border-top: 1px solid var(--wr-border);
    padding: 12px 20px 16px;
}

.wr-mobile-menu.is-open {
    display: block;
}

.wr-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--wr-text);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
    transition: color var(--wr-transition);
}

.wr-mobile-menu a:hover {
    color: var(--wr-gold);
}

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

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

/* =========================================================
   HERO
   ========================================================= */
.wr-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.wr-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 10, 3, 0.92) 0%, rgba(26, 10, 3, 0.6) 55%, rgba(26, 10, 3, 0.18) 100%);
    z-index: 1;
}

.wr-hero__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 60px 20px;
}

.wr-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid var(--wr-gold);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.72rem;
    color: var(--wr-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.wr-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.wr-hero__title span {
    color: var(--wr-gold);
}

.wr-hero__sub {
    font-size: 1.05rem;
    color: var(--wr-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.wr-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.wr-hero__bonus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 105, 14, 0.18);
    border: 1px solid rgba(37, 105, 14, 0.45);
    border-radius: var(--wr-radius-sm);
    padding: 8px 16px;
    font-size: 0.82rem;
    color: #7ddf52;
    margin-top: 18px;
}

/* =========================================================
   SECTION TITLES
   ========================================================= */
.wr-section {
    padding: 48px 0;
}

.wr-section--alt {
    background: rgba(55, 29, 16, 0.18);
}

.wr-sec-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--wr-gold);
    margin-bottom: 28px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--wr-border);
}

.wr-sec-title svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.wr-sec-title__sub {
    color: var(--wr-text-muted);
    font-size: 0.78rem;
    font-weight: 400;
    margin-left: auto;
}

/* =========================================================
   TABLE OF CONTENTS
   ========================================================= */
.wr-toc {
    background: var(--wr-card-bg);
    border: 1px solid var(--wr-border);
    border-radius: var(--wr-radius);
    padding: 24px 28px;
    margin: 32px 0;
    box-shadow: var(--wr-shadow);
}

.wr-toc__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wr-gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wr-toc__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
}

.wr-toc__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--wr-text);
    font-size: 0.82rem;
    padding: 7px 10px;
    border-radius: var(--wr-radius-sm);
    border: 1px solid transparent;
    transition: background var(--wr-transition), border-color var(--wr-transition);
}

.wr-toc__item:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: var(--wr-border);
    color: var(--wr-gold);
}

.wr-toc__item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--wr-gold);
}

.wr-toc__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--wr-btn-secondary);
    font-size: 0.68rem;
    color: #fff;
    flex-shrink: 0;
    font-weight: 700;
}

/* =========================================================
   CASINO INFO TABLE
   ========================================================= */
.wr-info-table {
    width: 100%;
    border-collapse: collapse;
}

.wr-info-table th,
.wr-info-table td {
    padding: 13px 16px;
    text-align: left;
    border-bottom: 1px solid var(--wr-border);
    vertical-align: middle;
}

.wr-info-table th {
    background: rgba(55, 29, 16, 0.8);
    color: var(--wr-gold);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    white-space: nowrap;
}

.wr-info-table td {
    font-size: 0.85rem;
    color: var(--wr-text);
}

.wr-info-table tr:last-child th,
.wr-info-table tr:last-child td {
    border-bottom: none;
}

.wr-info-table tr:hover td,
.wr-info-table tr:hover th {
    background: rgba(212, 168, 67, 0.05);
}

.wr-info-table__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(212, 168, 67, 0.15);
    margin-right: 10px;
    flex-shrink: 0;
    vertical-align: middle;
}

.wr-info-table__icon svg {
    width: 16px;
    height: 16px;
    color: var(--wr-gold);
}

.wr-info-table__param {
    display: flex;
    align-items: center;
}

.wr-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--wr-border);
    border-radius: var(--wr-radius);
    box-shadow: var(--wr-shadow);
}

/* =========================================================
   JACKPOT BLOCK
   ========================================================= */
.wr-jackpot {
    background: linear-gradient(135deg, #371d10 0%, #200d04 60%, #1a0a03 100%);
    border: 1px solid var(--wr-border);
    border-radius: var(--wr-radius);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--wr-shadow-gold);
    position: relative;
    overflow: hidden;
}

.wr-jackpot::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.wr-jackpot__label {
    font-size: 0.78rem;
    color: var(--wr-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.wr-jackpot__amount {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--wr-gold-light);
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.55);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 10px;
}

.wr-jackpot__sub {
    font-size: 0.82rem;
    color: var(--wr-text-muted);
    margin-bottom: 20px;
}

.wr-jackpot__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.wr-jackpot__card {
    background: rgba(26, 10, 3, 0.7);
    border: 1px solid var(--wr-border);
    border-radius: var(--wr-radius-sm);
    padding: 16px;
    text-align: left;
}

.wr-jackpot__card-name {
    font-size: 0.78rem;
    color: var(--wr-text-muted);
    margin-bottom: 4px;
}

.wr-jackpot__card-amount {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--wr-gold);
}

/* =========================================================
   WINNERS TABLE
   ========================================================= */
.wr-winners {
    overflow-x: auto;
}

.wr-winners__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.wr-winners__table th {
    background: rgba(55, 29, 16, 0.9);
    color: var(--wr-gold);
    font-size: 0.78rem;
    padding: 12px 14px;
    text-align: left;
    border-bottom: 2px solid var(--wr-border);
    letter-spacing: 0.5px;
}

.wr-winners__table td {
    padding: 10px 14px;
    font-size: 0.83rem;
    color: var(--wr-text);
    border-bottom: 1px solid rgba(212, 168, 67, 0.08);
    vertical-align: middle;
}

.wr-winners__table tr:hover td {
    background: rgba(212, 168, 67, 0.04);
}

.wr-winners__rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.wr-winners__rank--1 {
    background: #d4a843;
    color: #1a0a03;
}

.wr-winners__rank--2 {
    background: #b0b8c1;
    color: #1a0a03;
}

.wr-winners__rank--3 {
    background: #cd7f32;
    color: #1a0a03;
}

.wr-winners__rank--other {
    background: rgba(55, 29, 16, 0.8);
    color: var(--wr-text-muted);
}

.wr-winners__amount {
    color: var(--wr-gold-light);
    font-weight: 600;
}

.wr-winners__game {
    color: var(--wr-text-muted);
    font-size: 0.78rem;
}

/* =========================================================
   SLOT MINI-GAME
   ========================================================= */
.wr-slot {
    background: linear-gradient(145deg, #2a1108, #1a0a03);
    border: 2px solid var(--wr-border);
    border-radius: var(--wr-radius);
    padding: 36px 28px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: var(--wr-shadow-gold);
}

.wr-slot__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--wr-gold);
    margin-bottom: 8px;
}

.wr-slot__sub {
    font-size: 0.82rem;
    color: var(--wr-text-muted);
    margin-bottom: 24px;
}

.wr-slot__reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wr-slot__reel {
    width: 80px;
    height: 88px;
    background: #0f0501;
    border: 2px solid var(--wr-border);
    border-radius: var(--wr-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
}

.wr-slot__reel.is-spinning {
    animation: wr-spin-blur 0.12s steps(1) infinite;
}

@keyframes wr-spin-blur {
    0% {
        filter: blur(0px);
    }
    50% {
        filter: blur(2px);
    }
    100% {
        filter: blur(0px);
    }
}

.wr-slot__win {
    background: rgba(37, 105, 14, 0.2);
    border: 1px solid rgba(37, 105, 14, 0.5);
    border-radius: var(--wr-radius-sm);
    padding: 16px 20px;
    margin-bottom: 16px;
    display: none;
}

.wr-slot__win.is-visible {
    display: block;
    animation: wr-fadein 0.4s ease;
}

.wr-slot__win-title {
    font-size: 1rem;
    font-weight: 700;
    color: #7ddf52;
    margin-bottom: 4px;
}

.wr-slot__win-text {
    font-size: 0.85rem;
    color: var(--wr-text);
}

.wr-slot__lose {
    background: rgba(104, 15, 9, 0.2);
    border: 1px solid rgba(104, 15, 9, 0.4);
    border-radius: var(--wr-radius-sm);
    padding: 12px 20px;
    margin-bottom: 16px;
    display: none;
    font-size: 0.85rem;
    color: var(--wr-text-muted);
}

.wr-slot__lose.is-visible {
    display: block;
    animation: wr-fadein 0.4s ease;
}

.wr-slot__credits {
    font-size: 0.8rem;
    color: var(--wr-text-muted);
    margin-top: 12px;
}

@keyframes wr-fadein {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   REVIEW CONTENT BLOCK
   ========================================================= */
.wr-review {
    background: var(--wr-card-bg);
    border: 1px solid var(--wr-border);
    border-radius: var(--wr-radius);
    padding: 36px 40px;
    box-shadow: var(--wr-shadow);
    line-height: 1.8;
    font-size: 0.92rem;
}

.wr-review h1,
.wr-review h2,
.wr-review h3,
.wr-review h4,
.wr-review h5,
.wr-review h6 {
    color: var(--wr-gold);
    margin: 1.4em 0 0.6em;
    font-family: 'Cinzel', serif;
    line-height: 1.25;
}

.wr-review h2 {
    font-size: 1.3rem;
    border-bottom: 1px solid var(--wr-border);
    padding-bottom: 8px;
}

.wr-review h3 {
    font-size: 1.1rem;
}

.wr-review p {
    margin: 0 0 1em;
}

.wr-review ul, .wr-review ol {
    margin: 0.6em 0 1em 1.4em;
}

.wr-review li {
    margin-bottom: 0.4em;
}

.wr-review a {
    color: var(--wr-gold);
}

.wr-review a:hover {
    color: var(--wr-gold-light);
}

.wr-review strong {
    color: var(--wr-gold-light);
}

.wr-review em {
    color: var(--wr-text-muted);
}

.wr-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 0.85rem;
}

.wr-review table th,
.wr-review table td {
    padding: 10px 14px;
    border: 1px solid var(--wr-border);
    text-align: left;
}

.wr-review table th {
    background: rgba(55, 29, 16, 0.7);
    color: var(--wr-gold);
}

.wr-review blockquote {
    border-left: 3px solid var(--wr-gold);
    margin: 1em 0;
    padding: 10px 18px;
    background: rgba(212, 168, 67, 0.07);
    border-radius: 0 var(--wr-radius-sm) var(--wr-radius-sm) 0;
    color: var(--wr-text-muted);
}

.wr-review hr {
    border: none;
    border-top: 1px solid var(--wr-border);
    margin: 1.5em 0;
}

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

/* =========================================================
   SECURITY TABLE
   ========================================================= */
.wr-security {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.wr-security__card {
    background: var(--wr-card-bg);
    border: 1px solid var(--wr-border);
    border-radius: var(--wr-radius);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color var(--wr-transition), box-shadow var(--wr-transition);
}

.wr-security__card:hover {
    border-color: var(--wr-gold);
    box-shadow: var(--wr-shadow-gold);
}

.wr-security__icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(37, 105, 14, 0.2);
    border: 1px solid rgba(37, 105, 14, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wr-security__icon svg {
    width: 20px;
    height: 20px;
    color: #7ddf52;
}

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

.wr-security__text {
    font-size: 0.79rem;
    color: var(--wr-text-muted);
    line-height: 1.5;
}

.wr-security__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.68rem;
    color: #2ecc71;
    margin-top: 6px;
}

/* =========================================================
   COMMENTS
   ========================================================= */
.wr-comments__list {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.wr-comment {
    background: var(--wr-card-bg);
    border: 1px solid var(--wr-border);
    border-radius: var(--wr-radius);
    padding: 18px 22px;
}

.wr-comment__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.wr-comment__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wr-btn-secondary), var(--wr-btn-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.wr-comment__name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--wr-gold);
}

.wr-comment__date {
    font-size: 0.72rem;
    color: var(--wr-text-muted);
}

.wr-comment__stars {
    color: var(--wr-gold);
    font-size: 0.85rem;
}

.wr-comment__text {
    font-size: 0.84rem;
    color: var(--wr-text);
    line-height: 1.6;
}

.wr-form {
    display: grid;
    gap: 14px;
}

.wr-form__group {
    display: grid;
    gap: 5px;
}

.wr-form__label {
    font-size: 0.78rem;
    color: var(--wr-text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.wr-form__input,
.wr-form__textarea,
.wr-form__select {
    background: rgba(55, 29, 16, 0.4);
    border: 1px solid var(--wr-border);
    border-radius: var(--wr-radius-sm);
    color: var(--wr-text);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    padding: 11px 14px;
    width: 100%;
    transition: border-color var(--wr-transition), box-shadow var(--wr-transition);
    outline: none;
}

.wr-form__input:focus,
.wr-form__textarea:focus,
.wr-form__select:focus {
    border-color: var(--wr-gold);
    box-shadow: 0 0 0 2px rgba(212, 168, 67, 0.18);
}

.wr-form__textarea {
    min-height: 110px;
    resize: vertical;
}

.wr-form__select {
    appearance: none;
    cursor: pointer;
}

.wr-form__stars {
    display: flex;
    gap: 6px;
}

.wr-form__star-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--wr-border);
    transition: color var(--wr-transition), transform var(--wr-transition);
    line-height: 1;
}

.wr-form__star-btn.is-active,
.wr-form__star-btn:hover {
    color: var(--wr-gold);
    transform: scale(1.15);
}

.wr-form__msg {
    background: rgba(37, 105, 14, 0.18);
    border: 1px solid rgba(37, 105, 14, 0.4);
    border-radius: var(--wr-radius-sm);
    padding: 16px 20px;
    font-size: 0.88rem;
    color: #7ddf52;
    text-align: center;
    display: none;
}

.wr-form__msg.is-visible {
    display: block;
    animation: wr-fadein 0.4s ease;
}

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

.wr-author__photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--wr-gold);
    flex-shrink: 0;
    box-shadow: 0 0 18px rgba(212, 168, 67, 0.3);
}

.wr-author__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wr-author__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wr-gold);
    margin-bottom: 2px;
}

.wr-author__role {
    font-size: 0.78rem;
    color: var(--wr-text-muted);
    margin-bottom: 10px;
}

.wr-author__bio {
    font-size: 0.83rem;
    color: var(--wr-text);
    line-height: 1.65;
    margin-bottom: 12px;
}

.wr-author__links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wr-author__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--wr-gold);
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid var(--wr-border);
    border-radius: 4px;
    padding: 4px 10px;
    transition: background var(--wr-transition), border-color var(--wr-transition);
}

.wr-author__link:hover {
    background: rgba(212, 168, 67, 0.2);
    border-color: var(--wr-gold);
    color: var(--wr-gold-light);
}

.wr-author__link svg {
    width: 12px;
    height: 12px;
}

.wr-author__dates {
    font-size: 0.73rem;
    color: var(--wr-text-muted);
    margin-top: 10px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.wr-ftr {
    background: var(--wr-footer-bg);
    border-top: 1px solid var(--wr-border);
    padding: 40px 0 0;
    margin-top: 48px;
}

.wr-ftr__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
}

.wr-ftr__logo img {
    height: 44px;
    width: auto;
}

.wr-ftr__logo-text {
    font-size: 0.8rem;
    color: var(--wr-text-muted);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wr-ftr__nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.wr-ftr__nav a {
    color: var(--wr-text-muted);
    font-size: 0.78rem;
    transition: color var(--wr-transition);
    padding: 3px 0;
}

.wr-ftr__nav a:hover {
    color: var(--wr-gold);
}

.wr-ftr__social {
    display: flex;
    gap: 8px;
}

.wr-ftr__social-link {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--wr-border);
    color: var(--wr-text-muted);
    transition: background var(--wr-transition), color var(--wr-transition);
}

.wr-ftr__social-link:hover {
    background: rgba(212, 168, 67, 0.15);
    color: var(--wr-gold);
}

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

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

.wr-ftr__badge-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--wr-border);
    border-radius: var(--wr-radius-sm);
    padding: 6px 14px;
    font-size: 0.72rem;
    color: var(--wr-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.wr-ftr__badge-item svg {
    width: 14px;
    height: 14px;
    color: var(--wr-gold);
}

.wr-ftr__providers {
    margin-bottom: 20px;
}

.wr-ftr__prov-title {
    font-size: 0.72rem;
    color: var(--wr-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.wr-ftr__prov-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wr-ftr__prov-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--wr-border);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.72rem;
    color: var(--wr-text-muted);
}

.wr-ftr__legal {
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid var(--wr-border);
    padding: 20px;
    margin: 0 -0px;
    text-align: center;
}

.wr-ftr__copyright {
    font-size: 0.73rem;
    color: var(--wr-text-muted);
    margin-bottom: 8px;
}

.wr-ftr__disclaimer {
    font-size: 0.68rem;
    color: rgba(184, 154, 122, 0.55);
    line-height: 1.55;
    max-width: 820px;
    margin: 0 auto;
}

.wr-ftr__email {
    color: var(--wr-gold);
}

/* =========================================================
   STICKY WIDGET
   ========================================================= */
.wr-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: linear-gradient(90deg, #25690e, #1e5a0b);
    border-top: 2px solid rgba(125, 223, 82, 0.35);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.wr-widget__text {
    font-size: 0.82rem;
    color: #fff;
    font-weight: 600;
}

.wr-widget__bonus {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.8);
}

.wr-widget__cta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.wr-widget__link {
    background: #fff;
    color: #1a0a03;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--wr-radius-sm);
    padding: 8px 20px;
    white-space: nowrap;
    text-decoration: none;
    transition: transform var(--wr-transition), box-shadow var(--wr-transition);
}

.wr-widget__link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #1a0a03;
}

.wr-widget__close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--wr-transition);
}

.wr-widget__close:hover {
    background: rgba(255, 255, 255, 0.28);
}

/* =========================================================
   MISC UTILITY
   ========================================================= */
.wr-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.wr-badge--green {
    background: rgba(37, 105, 14, 0.2);
    color: #7ddf52;
    border: 1px solid rgba(37, 105, 14, 0.35);
}

.wr-badge--gold {
    background: rgba(212, 168, 67, 0.15);
    color: var(--wr-gold);
    border: 1px solid var(--wr-border);
}

.wr-badge--red {
    background: rgba(104, 15, 9, 0.2);
    color: #f07070;
    border: 1px solid rgba(104, 15, 9, 0.4);
}

.wr-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wr-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.wr-mb-28 {
    margin-bottom: 28px;
}

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

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

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

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

.wr-text-sm {
    font-size: 0.82rem;
}

/* page body padding for sticky widget */
body {
    padding-bottom: 64px;
}

/* hidden dummy elements for uniqualization */
.xk9f2r-dummy {
    display: none !important;
    visibility: hidden;
}

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

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

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

.wr-anim-in {
    animation: wr-slideup 0.55s ease both;
}

.wr-anim-in--d1 {
    animation-delay: 0.1s;
}

.wr-anim-in--d2 {
    animation-delay: 0.2s;
}

.wr-anim-in--d3 {
    animation-delay: 0.3s;
}

.wr-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wr-gold), transparent);
    border: none;
    margin: 40px 0;
    opacity: 0.35;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
    .wr-hdr__nav {
        display: none;
    }

    .wr-burger {
        display: flex;
    }

    .wr-hdr__inner {
        grid-template-columns: auto 1fr auto;
    }

    .wr-ftr__top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wr-ftr__nav {
        justify-content: center;
    }

    .wr-ftr__social {
        justify-content: center;
    }

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

    .wr-author__photo {
        margin: 0 auto;
    }

    .wr-author__links {
        justify-content: center;
    }

    .wr-author__dates {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .wr-section {
        padding: 32px 0;
    }

    .wr-review {
        padding: 22px 18px;
    }

    .wr-jackpot {
        padding: 22px 16px;
    }

    .wr-slot__reel {
        width: 64px;
        height: 72px;
        font-size: 2rem;
    }

    .wr-toc__grid {
        grid-template-columns: 1fr 1fr;
    }

    .wr-security {
        grid-template-columns: 1fr;
    }

    .wr-grid-2 {
        grid-template-columns: 1fr;
    }

    .wr-grid-3 {
        grid-template-columns: 1fr;
    }

    .wr-hero {
        min-height: 360px;
    }

    .wr-widget {
        flex-wrap: wrap;
        gap: 8px;
    }

    .wr-widget__text {
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .wr-slot__reels {
        gap: 6px;
    }

    .wr-slot__reel {
        width: 54px;
        height: 62px;
        font-size: 1.7rem;
    }

    .wr-toc__grid {
        grid-template-columns: 1fr;
    }
}

/* WP-like dummy ids for uniqualization */
#wpadminbar {
    display: none;
}

#wp-toolbar {
    display: none;
}

.site-main .entry-content {
    display: none;
}

:root {
    --wr-header-height: 70px;
}

html.menu-open,
body.menu-open {
    overflow: hidden;
}

.wr-review {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.wr-review * {
    max-width: 100%;
    box-sizing: border-box;
}

.wr-table-scroll {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    overflow-x: auto;
    border: 1px solid var(--wr-border);
    border-radius: 10px;
    -webkit-overflow-scrolling: touch;
}

.wr-table-scroll table {
    width: 100%;
    min-width: 600px;
    margin: 0;
}

.wr-widget {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
}

.wr-widget.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.wr-widget.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(120%);
}

.wr-scroll-top {
    position: fixed;
    right: 16px;
    bottom: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--wr-border);
    border-radius: 50%;
    background: var(--wr-card-bg);
    color: var(--wr-gold);
    box-shadow: var(--wr-shadow);
    font-size: 21px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: .25s ease;
    z-index: 500;
}

.wr-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .page-template-info #main-content > .wr-container {
        padding-top: 24px !important;
        padding-bottom: 34px !important;
    }

    .wr-review {
        padding: 22px 15px !important;
        border-radius: 12px !important;
    }

    .wr-table-scroll table {
        min-width: 520px;
    }

    .wr-scroll-top {
        right: 10px;
        bottom: 84px;
        width: 38px;
        height: 38px;
    }
}