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

:root {
    --clr-header: #262A34;
    --clr-header-alt: #1e2230;
    --clr-btn-primary: #F9C23C;
    --clr-btn-primary-hover: #ffd060;
    --clr-btn-secondary: #3C3C3C;
    --clr-btn-secondary-hover: #525252;
    --clr-bg: #000a12;
    --clr-bg-card: #071520;
    --clr-bg-card2: #0c1e2e;
    --clr-text: #e8edf4;
    --clr-text-muted: #8a9ab0;
    --clr-accent: #F9C23C;
    --clr-accent2: #ff6b35;
    --clr-border: rgba(249, 194, 60, 0.18);
    --clr-border-subtle: rgba(255, 255, 255, 0.07);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.55);
    --shadow-btn: 0 4px 18px rgba(249, 194, 60, 0.3);
    --font: 'Rubik', 'Helvetica Neue', Arial, sans-serif;
    --transition: 0.22s ease;
}

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

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

body {
    font-family: var(--font);
    background: var(--clr-bg);
    color: var(--clr-text);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

.x7b2k {
    display: none !important;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

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

.entry-content {
    display: block;
}

.wp-site-blocks {
    display: block;
}

.qm3r9 {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
}

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

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

.c-site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(249, 194, 60, 0.12);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.c-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

.c-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.c-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

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

.c-nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.c-nav__link {
    color: #c8d2e0;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 13px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.c-nav__link:hover {
    color: var(--clr-accent);
    background: rgba(249, 194, 60, 0.08);
}

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

.c-online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--clr-text-muted);
    white-space: nowrap;
    margin-right: 4px;
}

.c-online-count__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2dce89;
    box-shadow: 0 0 6px #2dce89;
    animation: c-pulse 2s infinite;
}

@keyframes c-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.c-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.c-burger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.c-burger__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.c-burger.is-active .c-burger__line:nth-child(2) {
    opacity: 0;
}

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

.c-mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--clr-header-alt);
    border-top: 1px solid var(--clr-border-subtle);
    padding: 12px 0 16px;
}

.c-mobile-nav.is-active {
    display: flex;
}

.c-mobile-nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0 16px;
}

.c-mobile-nav__link {
    color: #c8d2e0;
    font-size: 15px;
    font-weight: 500;
    padding: 11px 12px;
    border-radius: var(--radius-sm);
    display: block;
    transition: color var(--transition), background var(--transition);
}

.c-mobile-nav__link:hover {
    color: var(--clr-accent);
    background: rgba(249, 194, 60, 0.08);
}

.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    text-decoration: none;
    gap: 6px;
}

.c-btn--primary {
    background: var(--clr-btn-primary);
    color: #1a1200;
    padding: 10px 20px;
    box-shadow: var(--shadow-btn);
}

.c-btn--primary:hover {
    background: var(--clr-btn-primary-hover);
    color: #1a1200;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(249, 194, 60, 0.45);
}

.c-btn--secondary {
    background: var(--clr-btn-secondary);
    color: var(--clr-text);
    padding: 10px 18px;
}

.c-btn--secondary:hover {
    background: var(--clr-btn-secondary-hover);
    color: #fff;
    transform: translateY(-1px);
}

.c-btn--lg {
    font-size: 16px;
    padding: 14px 32px;
}

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

.c-btn:active {
    transform: translateY(0) scale(0.98);
}

.c-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg);
}

.c-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/hero-roc.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.c-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 10, 18, 0.92) 40%, rgba(0, 10, 18, 0.55) 100%);
    z-index: 1;
}

.c-hero__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 80px 0 80px;
}

.c-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 194, 60, 0.12);
    border: 1px solid rgba(249, 194, 60, 0.35);
    color: var(--clr-accent);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    animation: c-fadein 0.6s ease both;
}

.c-hero__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
    animation: c-fadein 0.7s ease both 0.1s;
}

.c-hero__title span {
    color: var(--clr-accent);
}

.c-hero__desc {
    font-size: 17px;
    color: #b0bec9;
    margin-bottom: 32px;
    line-height: 1.7;
    animation: c-fadein 0.7s ease both 0.2s;
}

.c-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: c-fadein 0.7s ease both 0.3s;
}

.c-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    animation: c-fadein 0.7s ease both 0.4s;
}

.c-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--clr-text-muted);
}

.c-hero__trust-icon {
    width: 20px;
    height: 20px;
    background: rgba(249, 194, 60, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 11px;
    flex-shrink: 0;
}

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

.c-section {
    padding: 72px 0;
}

.c-section--sm {
    padding: 48px 0;
}

.c-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.c-section__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 10px;
}

.c-section__title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.c-section__sub {
    font-size: 16px;
    color: var(--clr-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

.c-features__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.c-feature-card {
    flex: 1 1 260px;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.c-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent2));
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.c-feature-card:hover {
    border-color: var(--clr-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.c-feature-card:hover::before {
    opacity: 1;
}

.c-feature-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(249, 194, 60, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
}

.c-feature-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.c-feature-card__text {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.c-jackpots {
    background: linear-gradient(135deg, #070f1a 0%, #0d1e30 100%);
    border-top: 1px solid var(--clr-border-subtle);
    border-bottom: 1px solid var(--clr-border-subtle);
}

.c-jackpots__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.c-jackpot-card {
    flex: 1 1 200px;
    max-width: 260px;
    background: var(--clr-bg-card2);
    border: 1px solid rgba(249, 194, 60, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.c-jackpot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 36px rgba(249, 194, 60, 0.18);
}

.c-jackpot-card__icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.c-jackpot-card__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.c-jackpot-card__amount {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 800;
    color: var(--clr-accent);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(249, 194, 60, 0.35);
}

.c-jackpot-card__sub {
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-top: 6px;
}

.c-jackpot-card--featured {
    border-color: var(--clr-accent);
    background: linear-gradient(145deg, #0f1e30, #162130);
}

.c-jackpot-card--featured::after {
    content: 'TOP';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 800;
    background: var(--clr-accent);
    color: #1a1200;
    padding: 2px 8px;
    border-radius: 100px;
    letter-spacing: 0.08em;
}

.c-winners {
    background: var(--clr-bg);
}

.c-winners__table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border-subtle);
    box-shadow: var(--shadow-card);
}

.c-winners__table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: var(--clr-bg-card);
    font-size: 14px;
}

.c-winners__table thead tr {
    background: var(--clr-header);
}

.c-winners__table th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
    border-bottom: 2px solid var(--clr-border-subtle);
}

.c-winners__table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border-subtle);
    color: var(--clr-text);
}

.c-winners__table tr:last-child td {
    border-bottom: none;
}

.c-winners__table tbody tr {
    transition: background var(--transition);
}

.c-winners__table tbody tr:hover {
    background: rgba(249, 194, 60, 0.04);
}

.c-winners__rank {
    font-weight: 800;
    font-size: 13px;
    color: var(--clr-text-muted);
    width: 44px;
}

.c-winners__rank--top {
    color: var(--clr-accent);
}

.c-winners__name {
    font-weight: 600;
    color: #fff;
}

.c-winners__game {
    color: var(--clr-text-muted);
    font-size: 13px;
}

.c-winners__amount {
    font-weight: 800;
    color: #2dce89;
    font-size: 15px;
}

.c-winners__badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
}

.c-winners__badge--win {
    background: rgba(45, 206, 137, 0.15);
    color: #2dce89;
}

.c-winners__badge--jackpot {
    background: rgba(249, 194, 60, 0.15);
    color: var(--clr-accent);
}

.c-video {
    background: linear-gradient(180deg, var(--clr-bg) 0%, #060f18 100%);
}

.c-video__wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.65);
    border: 1px solid var(--clr-border-subtle);
    background: #000;
    aspect-ratio: 16/9;
    max-width: 900px;
    margin: 0 auto;
}

.c-video__wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.c-wheel-section {
    background: linear-gradient(135deg, #000a12 0%, #071420 100%);
    border-top: 1px solid var(--clr-border-subtle);
    border-bottom: 1px solid var(--clr-border-subtle);
}

.c-wheel-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.c-wheel-canvas-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(249, 194, 60, 0.25), 0 8px 32px rgba(0, 0, 0, 0.6);
    display: block;
}

.c-wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 26px solid var(--clr-accent);
    filter: drop-shadow(0 2px 6px rgba(249, 194, 60, 0.6));
    z-index: 10;
}

.c-wheel-info {
    flex: 1 1 280px;
    max-width: 400px;
}

.c-wheel-info__title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.c-wheel-info__title span {
    color: var(--clr-accent);
}

.c-wheel-info__desc {
    font-size: 15px;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
    line-height: 1.65;
}

.c-wheel-spin-btn {
    width: 100%;
    max-width: 280px;
    font-size: 16px;
    padding: 15px 32px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font);
    font-weight: 700;
    background: var(--clr-btn-primary);
    color: #1a1200;
    border: none;
    box-shadow: var(--shadow-btn);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.c-wheel-spin-btn:hover:not(:disabled) {
    background: var(--clr-btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(249, 194, 60, 0.5);
}

.c-wheel-spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.c-wheel-result {
    margin-top: 20px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    display: none;
    animation: c-fadein 0.4s ease;
}

.c-wheel-result.is-win {
    display: block;
    background: rgba(45, 206, 137, 0.1);
    border: 1px solid rgba(45, 206, 137, 0.3);
}

.c-wheel-result.is-lose {
    display: block;
    background: rgba(255, 75, 75, 0.08);
    border: 1px solid rgba(255, 75, 75, 0.2);
}

.c-wheel-result__title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.c-wheel-result.is-win .c-wheel-result__title {
    color: #2dce89;
}

.c-wheel-result.is-lose .c-wheel-result__title {
    color: #ff4b4b;
}

.c-wheel-result__text {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.c-review {
    background: var(--clr-bg);
}

.c-review__box {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px 40px;
    box-shadow: var(--shadow-card);
}

.c-review-content h1,
.c-review-content h2,
.c-review-content h3,
.c-review-content h4,
.c-review-content h5,
.c-review-content h6 {
    color: #fff;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 28px;
    margin-bottom: 12px;
}

.c-review-content h1 {
    font-size: clamp(22px, 3vw, 32px);
}

.c-review-content h2 {
    font-size: clamp(20px, 2.5vw, 28px);
}

.c-review-content h3 {
    font-size: clamp(18px, 2vw, 22px);
}

.c-review-content h4 {
    font-size: 18px;
}

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

.c-review-content ul,
.c-review-content ol {
    margin: 14px 0 18px 22px;
    color: var(--clr-text);
    font-size: 15px;
    line-height: 1.75;
}

.c-review-content li {
    margin-bottom: 6px;
}

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

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

.c-review-content blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 14px 20px;
    background: rgba(249, 194, 60, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    font-style: italic;
    color: #c8d2e0;
}

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

.c-review-content th {
    background: var(--clr-header);
    color: var(--clr-text-muted);
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--clr-border-subtle);
}

.c-review-content td {
    padding: 12px 16px;
    border: 1px solid var(--clr-border-subtle);
    color: var(--clr-text);
    font-size: 14px;
    text-align: left;
}

.c-review-content tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

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

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

.c-review-content code {
    background: rgba(249, 194, 60, 0.1);
    color: var(--clr-accent);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 13px;
}

.c-author {
    background: var(--clr-bg-card);
    border-top: 1px solid var(--clr-border-subtle);
}

.c-author__card {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
    background: var(--clr-bg-card2);
    border: 1px solid var(--clr-border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 32px;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.c-author__avatar {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--clr-border);
    box-shadow: 0 4px 18px rgba(249, 194, 60, 0.18);
}

.c-author__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-author__body {
    flex: 1 1 200px;
}

.c-author__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 4px;
}

.c-author__name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.c-author__role {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

.c-author__bio {
    font-size: 14px;
    color: #b0bec9;
    line-height: 1.7;
    margin-bottom: 16px;
}

.c-author__socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.c-author__social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    color: #c8d2e0;
    border: 1px solid var(--clr-border-subtle);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.c-author__social-link:hover {
    background: rgba(249, 194, 60, 0.12);
    color: var(--clr-accent);
    border-color: var(--clr-border);
}

.c-footer {
    background: var(--clr-header);
    border-top: 1px solid rgba(249, 194, 60, 0.1);
    padding: 56px 0 32px;
    margin-top: auto;
}

.c-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--clr-border-subtle);
}

.c-footer__brand {
    flex: 0 0 200px;
}

.c-footer__logo {
    margin-bottom: 14px;
}

.c-footer__logo img {
    height: 40px;
    width: auto;
}

.c-footer__tagline {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.c-footer__col {
    flex: 1 1 150px;
}

.c-footer__col-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 14px;
}

.c-footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.c-footer__nav-link {
    font-size: 14px;
    color: #8a9ab0;
    transition: color var(--transition);
}

.c-footer__nav-link:hover {
    color: var(--clr-accent);
}

.c-footer__payment-logos,
.c-footer__provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.c-footer__logo-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--clr-border-subtle);
    border-radius: 8px;
    padding: 7px 13px;
    font-size: 12px;
    font-weight: 600;
    color: #b0bec9;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}

.c-footer__logo-badge:hover {
    background: rgba(249, 194, 60, 0.1);
    color: var(--clr-accent);
}

.c-footer__section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
    margin-top: 20px;
}

.c-footer__section-label:first-child {
    margin-top: 0;
}

.c-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.c-footer__legal {
    font-size: 12px;
    color: #5a6a7e;
    line-height: 1.7;
}

.c-footer__copyright {
    font-size: 12px;
    color: #5a6a7e;
    text-align: center;
}

.c-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0f1925 0%, #1a2638 100%);
    border-top: 2px solid var(--clr-accent);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    animation: c-slideup 0.5s ease 1s both;
}

@keyframes c-slideup {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.c-widget__close {
    background: transparent;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color var(--transition);
}

.c-widget__close:hover {
    color: #fff;
}

.c-widget__content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.c-widget__text {
    flex: 1 1 200px;
}

.c-widget__headline {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.c-widget__sub {
    font-size: 12px;
    color: var(--clr-accent);
    font-weight: 600;
}

.c-widget__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-btn-primary);
    color: #1a1200;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-btn);
    transition: background var(--transition), transform var(--transition);
    text-decoration: none;
}

.c-widget__cta:hover {
    background: var(--clr-btn-primary-hover);
    color: #1a1200;
    transform: translateY(-1px);
}

.c-rating-stars {
    display: inline-flex;
    gap: 3px;
    color: var(--clr-accent);
    font-size: 16px;
}

.c-info-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 0;
}

.c-info-page__content h1 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.c-info-page__content h2 {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.c-info-page__content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #e0e8f0;
    margin: 22px 0 10px;
}

.c-info-page__content p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--clr-text);
    margin-bottom: 14px;
}

.c-info-page__content ul, .c-info-page__content ol {
    margin: 12px 0 16px 22px;
    color: var(--clr-text);
    font-size: 15px;
    line-height: 1.75;
}

.c-info-page__content li {
    margin-bottom: 6px;
}

.c-info-page__content a {
    color: var(--clr-accent);
    text-decoration: underline;
}

.c-info-page__content strong {
    color: #fff;
}

.c-info-page__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.c-info-page__content th {
    background: var(--clr-header);
    color: var(--clr-text-muted);
    padding: 12px 16px;
    border: 1px solid var(--clr-border-subtle);
    font-size: 13px;
    text-align: left;
}

.c-info-page__content td {
    padding: 12px 16px;
    border: 1px solid var(--clr-border-subtle);
    font-size: 14px;
    text-align: left;
    color: var(--clr-text);
}

.c-faq {
    background: linear-gradient(180deg, #060f18 0%, var(--clr-bg) 100%);
}

.c-faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-faq__item {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.c-faq__item.is-open {
    border-color: rgba(249, 194, 60, 0.25);
}

.c-faq__question {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: background var(--transition);
}

.c-faq__question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.c-faq__chevron {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(249, 194, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.c-faq__item.is-open .c-faq__chevron {
    transform: rotate(180deg);
}

.c-faq__answer {
    display: none;
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.75;
}

.c-faq__item.is-open .c-faq__answer {
    display: block;
}

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

.u-mb-0 {
    margin-bottom: 0;
}

.u-mt-4 {
    margin-top: 16px;
}

.u-mt-8 {
    margin-top: 32px;
}

.p4n9a {
    position: absolute;
    top: -99999px;
    left: -99999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.wp-post-thumbnail {
    display: none;
}

.wp-caption {
    display: none;
}

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

    .c-burger {
        display: flex;
    }

    .c-online-count {
        display: none;
    }
}

@media (max-width: 768px) {
    .c-section {
        padding: 48px 0;
    }

    .c-hero {
        min-height: 420px;
    }

    .c-hero__content {
        padding: 60px 0 60px;
    }

    .c-features__grid {
        gap: 14px;
    }

    .c-feature-card {
        flex: 1 1 100%;
    }

    .c-jackpot-card {
        flex: 1 1 140px;
    }

    .c-review__box {
        padding: 24px 20px;
    }

    .c-author__card {
        padding: 24px 20px;
    }

    .c-widget {
        padding: 10px 14px;
    }

    .c-footer__top {
        gap: 24px;
    }

    .c-footer__brand {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .c-hero__title {
        font-size: 28px;
    }

    .c-hero__actions {
        flex-direction: column;
    }

    .c-btn--xl {
        width: 100%;
    }

    .c-widget__content {
        flex-direction: column;
        gap: 10px;
    }

    .c-widget__cta {
        width: 100%;
    }
}
