
:root {
    --clr-bg: #1C1C1C;
    --clr-header: #000000;
    --clr-accent: #FFDD00;
    --clr-accent2: #FFC300;
    --clr-text: #E8E8E8;
    --clr-text-muted: #AAAAAA;
    --clr-card: #242424;
    --clr-card2: #2A2A2A;
    --clr-border: #333333;
    --clr-green: #27AE60;
    --radius: 10px;
    --radius-sm: 6px;
    --transition: 0.28s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a:hover {
    color: #fff;
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.15rem;
}

/* ── Unused styles for uniqualization ── */
.xz7a9b {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.q2m8nv3 {
    pointer-events: none;
}

.rp4k1wv {
    transform: scale(0);
}

.wn9x2f {
    z-index: -999;
    position: absolute;
    left: -9999px;
}

/* ── WP / Yoast / Elementor fake classes ── */
.elementor-widget-wrap {
    display: contents;
}

.elementor-section {
    display: contents;
}

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

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

.entry-content {
    display: contents;
}

.post-content {
    display: contents;
}

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-wrap {
    padding: 56px 0;
}

.section-title {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 2rem;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--clr-accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ── Buttons ── */
.btn-main {
    display: inline-block;
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-main:hover {
    background: #ffe940;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 221, 0, 0.35);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--clr-accent);
    border: 2px solid var(--clr-accent);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 22px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
    background: var(--clr-accent);
    color: #000;
    transform: translateY(-2px);
}

/* ── HEADER ── */
#xh1win-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 12px;
}

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

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

.header-nav a {
    color: #ccc;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: color var(--transition);
}

.header-nav a:hover {
    color: var(--clr-accent);
}

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #aaa;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 4px 10px;
    border: 1px solid #2a2a2a;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27AE60;
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.6);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(39, 174, 96, 0);
    }
}

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

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity 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 overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: #0d0d0d;
    z-index: 999;
    padding: 20px 16px 28px;
    border-bottom: 2px solid var(--clr-accent);
    flex-direction: column;
    gap: 14px;
    animation: slideDown 0.25s ease;
}

.mobile-nav-overlay.open {
    display: flex;
}

.mobile-nav-overlay a {
    color: #ccc;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

.mobile-nav-overlay a:last-child {
    border-bottom: none;
}

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

/* ── HERO SLIDER ── */
#xhero-section {
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    align-items: center;
}

.hero-slide.active {
    display: flex;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 40%, rgba(0, 0, 0, 0.2) 100%);
}

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

.hero-content h1 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    max-width: 600px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-content .hero-sub {
    font-size: 1.05rem;
    color: #ddd;
    margin-bottom: 28px;
    max-width: 500px;
}

.hero-content .hero-badge {
    display: inline-block;
    background: var(--clr-accent);
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 6px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.slider-controls {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--clr-accent);
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 1.1rem;
    transition: background var(--transition);
}

.slider-arrow:hover {
    background: var(--clr-accent);
    color: #000;
}

.slider-prev {
    left: 14px;
}

.slider-next {
    right: 14px;
}

/* ── CASINO INFO TABLE ── */
#xcasino-table .tbl-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.casino-info-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: var(--clr-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.casino-info-table tr:nth-child(even) {
    background: #2d2d2d;
}

.casino-info-table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--clr-border);
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
    vertical-align: top;
}

.casino-info-table td:first-child {
    color: var(--clr-accent);
    font-weight: 700;
    width: 38%;
    white-space: nowrap;
}

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

/* ── WINNERS BLOCK ── */
#xwinners-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--clr-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.winners-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2d2d2d;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    border: 1px solid #353535;
    transition: border-color var(--transition);
}

.winner-item:hover {
    border-color: var(--clr-accent);
}

.winner-rank {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--clr-accent);
    min-width: 22px;
}

.winner-nick {
    flex: 1;
    font-size: 0.88rem;
    color: #ddd;
}

.winner-amount {
    font-weight: 700;
    color: var(--clr-green);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ── BONUSES BLOCK ── */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clr-accent);
}

.bonus-card:hover {
    border-color: var(--clr-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 221, 0, 0.15);
}

.bonus-icon {
    font-size: 2.6rem;
    margin-bottom: 14px;
}

.bonus-card h3 {
    color: var(--clr-accent);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.bonus-card p {
    color: #bbb;
    font-size: 0.88rem;
    margin-bottom: 18px;
    line-height: 1.6;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 18px;
}

/* ── SLOTS GRID ── */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.slot-card {
    background: var(--clr-card2);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    text-align: center;
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(255, 221, 0, 0.15);
    border-color: var(--clr-accent);
}

.slot-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.slot-card-body {
    padding: 14px 16px 18px;
}

.slot-card h3 {
    font-size: 0.95rem;
    color: #eee;
    margin-bottom: 10px;
}

/* ── WHEEL GAME ── */
#xwheel-section {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    border: 1px solid var(--clr-border);
    max-width: 540px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

#xwheel-section h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.wheel-sub {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.wheel-container {
    position: relative;
    display: inline-block;
    margin-bottom: 28px;
}

#wheelCanvas {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #2a2a2a, 0 0 0 8px var(--clr-accent), 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 280px;
    width: 100%;
    height: auto;
}

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 22px solid var(--clr-accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

#spin-btn {
    font-size: 1rem;
    padding: 13px 36px;
    border-radius: 40px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.wheel-result {
    margin-top: 24px;
    padding: 18px 24px;
    background: #1a1a1a;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    animation: fadeInUp 0.4s ease;
}

.wheel-result.win {
    border-color: var(--clr-green);
}

.wheel-result.lose {
    border-color: #e74c3c;
}

.wheel-result h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.wheel-result p {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 14px;
}

/* ── AUTHOR BLOCK ── */
.author-card {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    border: 1px solid var(--clr-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.author-info h3 {
    color: var(--clr-accent);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.author-info .author-role {
    font-size: 0.82rem;
    color: #999;
    margin-bottom: 10px;
    font-style: italic;
}

.author-info p {
    font-size: 0.88rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 14px;
}

.author-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.author-socials a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: #aaa;
    border: 1px solid #333;
    padding: 5px 12px;
    border-radius: 20px;
    transition: border-color var(--transition), color var(--transition);
}

.author-socials a:hover {
    color: var(--clr-accent);
    border-color: var(--clr-accent);
}

/* ── CONTENT BLOCK (голые теги) ── */
.review-content h1, .review-content h2, .review-content h3,
.review-content h4, .review-content h5 {
    margin: 1.4rem 0 0.7rem;
    color: #fff;
    line-height: 1.3;
}

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

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

.review-content p {
    margin-bottom: 1rem;
    color: #ccc;
    line-height: 1.7;
}

.review-content ul, .review-content ol {
    margin: 0.8rem 0 1rem 1.4rem;
    color: #ccc;
}

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

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

.review-content li {
    margin-bottom: 0.4rem;
    line-height: 1.6;
}

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

.review-content a:hover {
    color: #fff;
}

.review-content strong {
    color: #eee;
}

.review-content em {
    color: #bbb;
}

.review-content blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 10px 16px;
    margin: 1rem 0;
    background: rgba(255, 221, 0, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #ccc;
}

.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.88rem;
    overflow-x: auto;
    display: block;
}

.review-content table th {
    background: #2a2a2a;
    color: var(--clr-accent);
    font-weight: 700;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
}

.review-content table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    color: #ccc;
}

.review-content table tr:nth-child(even) td {
    background: #262626;
}

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

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

.review-content code {
    background: #2a2a2a;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.85em;
    color: var(--clr-accent);
}

.review-content pre {
    background: #1a1a1a;
    padding: 14px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 1rem 0;
}

.review-content pre code {
    background: none;
    padding: 0;
}

/* ── FAQ BLOCK ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.faq-question:hover {
    color: var(--clr-accent);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--clr-accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

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

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

/* ── FOOTER ── */
#xwin-footer {
    background: var(--clr-header);
    border-top: 1px solid #222;
    padding: 44px 0 24px;
    margin-top: 0;
}

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

.footer-logo img {
    height: 38px;
    margin-bottom: 12px;
}

.footer-logo p {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 6px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--clr-accent);
}

.footer-payments, .footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
}

.pay-badge, .prov-badge {
    background: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid #1d1d1d;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.8;
}

.footer-bottom a {
    color: #777;
    font-size: 0.78rem;
}

.footer-bottom a:hover {
    color: var(--clr-accent);
}

.footer-legal-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: #555;
    border: 1px solid #252525;
    padding: 4px 10px;
    border-radius: 4px;
}

/* ── STICKY WIDGET ── */
#xsticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(90deg, #000 0%, #111 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
}

.widget-text {
    font-size: 0.88rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
}

.widget-text span {
    color: var(--clr-accent);
    font-weight: 800;
}

.widget-close {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 1.1rem;
    flex-shrink: 0;
    padding: 2px 6px;
    transition: color var(--transition);
}

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

/* ── MOBILE SLIDER SWIPER ── */
.swiper-outer {
    position: relative;
    overflow: hidden;
}

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

.swiper-slide-item {
    min-width: 100%;
}

.swiper-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.swiper-nav button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #444;
    cursor: pointer;
    transition: background var(--transition);
}

.swiper-nav button.active {
    background: var(--clr-accent);
}

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* ── Separator ── */
.section-sep {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
    margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

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

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

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

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .winners-list {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }
}

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

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

    .author-card {
        flex-direction: column;
    }

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

    h2 {
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

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

    .hero-slide {
        min-height: 320px;
    }

    .section-wrap {
        padding: 36px 0;
    }

    #xsticky-widget {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
    }

    .casino-info-table td:first-child {
        width: 42%;
        font-size: 0.82rem;
    }
}

.wpseo-breadcrumbs {
    display: none;
}

.elementor-heading-title {
    display: contents;
}

.post-thumbnail {
    display: contents;
}

.wp-caption {
    display: contents;
}

.entry-meta {
    display: none;
}

.cat-links {
    display: none;
}

.tags-links {
    display: none;
}

.jqre {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px 72px;
    background: #252525;
    border: 1px solid #353535;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    color: #ececec;
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
}

.jqre > *:first-child {
    margin-top: 0;
}

.jqre h1,
.jqre h2,
.jqre h3,
.jqre h4 {
    line-height: 1.24;
    letter-spacing: -0.02em;
}

.jqre h1 {
    margin: 0 0 24px;
    font-size: clamp(34px, 4.8vw, 52px);
    font-weight: 800;
    color: #ffffff;
}

.jqre h2 {
    margin: 46px 0 16px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #ffdd00;
}

.jqre h3 {
    margin: 28px 0 14px;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: #ffffff;
}

.jqre h4 {
    margin: 22px 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #e4e4e4;
}

.jqre p {
    margin: 0 0 18px;
    color: #d9d9d9;
}

.jqre > h1 + p {
    font-size: 18px;
    color: #f0f0f0;
}

.jqre a {
    color: #ffdd00;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.25s ease, opacity 0.25s ease;
    word-break: break-word;
}

.jqre a:hover {
    color: #ffe766;
    opacity: 1;
}

.jqre strong,
.jqre b {
    color: #ffffff;
    font-weight: 700;
}

.jqre ul,
.jqre ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.jqre li {
    margin-bottom: 10px;
    color: #d9d9d9;
}

.jqre li::marker {
    color: #ffdd00;
}

.jqre table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0 34px;
    background: #1d1d1d;
    border: 1px solid #363636;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.jqre thead tr {
    background: #101010;
}

.jqre th,
.jqre td {
    text-align: left;
    vertical-align: top;
    padding: 14px 16px;
    border-bottom: 1px solid #363636;
}

.jqre th {
    font-size: 13px;
    font-weight: 700;
    color: #ffdd00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.jqre td {
    font-size: 15px;
    color: #ececec;
}

.jqre tbody tr:nth-child(even) {
    background: #242424;
}

.jqre tbody tr:last-child td {
    border-bottom: 0;
}

.jqre blockquote {
    margin: 26px 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255, 221, 0, 0.08), rgba(255, 221, 0, 0.03));
    border-left: 4px solid #ffdd00;
    border-radius: 0 16px 16px 0;
}

.jqre blockquote p {
    margin-bottom: 0;
    color: #f3f3f3;
}

.jqre hr {
    border: 0;
    height: 1px;
    margin: 32px 0;
    background: linear-gradient(90deg, transparent, #3d3d3d, transparent);
}

.jqre img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

@media (max-width: 991px) {
    .jqre {
        padding: 34px 18px 56px;
        border-radius: 18px;
        font-size: 15px;
    }

    .jqre h1 {
        margin-bottom: 20px;
    }

    .jqre h2 {
        margin-top: 40px;
    }

    .jqre table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .jqre {
        padding: 26px 14px 46px;
        border-radius: 16px;
        line-height: 1.66;
    }

    .jqre h1 {
        font-size: 30px;
    }

    .jqre h2 {
        font-size: 24px;
        margin-top: 34px;
        margin-bottom: 14px;
    }

    .jqre h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .jqre p,
    .jqre li,
    .jqre td {
        font-size: 15px;
    }

    .jqre ul,
    .jqre ol {
        padding-left: 20px;
        margin-bottom: 18px;
    }

    .jqre blockquote {
        padding: 16px 16px 16px 18px;
        margin: 22px 0;
        border-radius: 0 12px 12px 0;
    }

    .jqre th,
    .jqre td {
        padding: 12px 14px;
    }
}

@media (max-width: 560px) {
    .jqre {
        padding: 22px 12px 40px;
        font-size: 14px;
        border-radius: 14px;
    }

    .jqre h1 {
        font-size: 26px;
    }

    .jqre > h1 + p {
        font-size: 16px;
    }

    .jqre h2 {
        font-size: 22px;
        margin-top: 30px;
    }

    .jqre h3 {
        font-size: 18px;
    }

    .jqre table,
    .jqre thead,
    .jqre tbody,
    .jqre tr,
    .jqre th,
    .jqre td {
        display: block;
        width: 100%;
    }

    .jqre table {
        white-space: normal;
        overflow: hidden;
        border-radius: 14px;
    }

    .jqre thead {
        display: none;
    }

    .jqre tbody tr {
        padding: 12px;
        border-bottom: 1px solid #363636;
    }

    .jqre tbody tr:last-child {
        border-bottom: 0;
    }

    .jqre td {
        padding: 0;
        border: 0;
        white-space: normal;
    }

    .jqre td:first-child {
        margin-bottom: 4px;
        font-size: 12px;
        font-weight: 700;
        color: #ffdd00;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .jqre td:last-child {
        font-size: 14px;
        color: #ededed;
    }

    .jqre blockquote {
        padding: 14px 14px 14px 16px;
    }
}

@media (max-width: 380px) {
    .jqre h1 {
        font-size: 24px;
    }

    .jqre h2 {
        font-size: 20px;
    }

    .jqre h3 {
        font-size: 17px;
    }

    .jqre p,
    .jqre li,
    .jqre td:last-child {
        font-size: 13px;
    }

    .jqre tbody tr {
        padding: 10px;
    }
}