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

:root {
    --clr-bg: #111111;
    --clr-header: #030303;
    --clr-primary: #500202;
    --clr-primary-hover: #6b0303;
    --clr-secondary: #030303;
    --clr-text: #e8e8e8;
    --clr-text-muted: #a0a0a0;
    --clr-text-dim: #787878;
    --clr-accent: #c8922a;
    --clr-accent-light: #f0b840;
    --clr-border: #2a2a2a;
    --clr-card: #1a1a1a;
    --clr-card-hover: #222222;
    --clr-white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 24px rgba(80, 2, 2, 0.4);
    --transition: 0.25s ease;
    --font: 'Poppins', sans-serif;
}

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

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

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

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font);
}

input, textarea, select {
    font-family: var(--font);
}

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

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

.box {
    position: relative;
}

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

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

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.5;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--transition);
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.06);
}

.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    background: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    background: var(--clr-primary-hover);
    box-shadow: 0 0 32px rgba(80, 2, 2, 0.6);
    transform: translateY(-1px);
}

.btn--secondary {
    background: var(--clr-secondary);
    color: var(--clr-white);
    border: 1px solid #3a3a3a;
}

.btn--secondary:hover {
    border-color: #555;
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.04);
}

.btn--accent {
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
    color: #111;
    font-weight: 700;
}

.btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 146, 42, 0.4);
}

.btn--lg {
    padding: 15px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn--sm {
    padding: 7px 16px;
    font-size: 0.8rem;
}

.btn--full {
    width: 100%;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--clr-header);
    border-bottom: 1px solid #1e1e1e;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    max-width: 1240px;
    margin: 0 auto;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-white);
    letter-spacing: -0.03em;
}

.header-logo .logo-text span {
    color: var(--clr-primary);
}

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

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

.header-nav a:hover {
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.05);
}

.header-nav a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #2a2a2a;
    white-space: nowrap;
}

.header-online .pulse {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-anim 2s ease infinite;
}

@keyframes pulse-anim {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
    }
}

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

.header-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
}

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 65px;
    z-index: 800;
    background: rgba(3, 3, 3, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 8px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text);
    border: 1px solid #1e1e1e;
    transition: background var(--transition), border-color var(--transition);
}

.mobile-menu a:hover {
    background: #1e1e1e;
    border-color: #333;
}

.mobile-menu a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--clr-primary);
}

.mobile-menu-btns {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.mobile-menu-btns .btn {
    flex: 1;
    justify-content: center;
}

.hero-section {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/cas-woospin-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.35);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(80, 2, 2, 0.3) 0%, rgba(17, 17, 17, 0.7) 60%, rgba(17, 17, 17, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    padding: 80px 20px;
    animation: fadeInUp 0.7s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(80, 2, 2, 0.3);
    border: 1px solid rgba(80, 2, 2, 0.5);
    color: var(--clr-accent-light);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--clr-white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    color: var(--clr-accent-light);
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--clr-text-muted);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.hero-trust-item svg {
    width: 14px;
    height: 14px;
    color: #22c55e;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    margin-top: 0;
}

.feature-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    display: grid;
    gap: 12px;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(80, 2, 2, 0.5);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(80, 2, 2, 0.15);
    border: 1px solid rgba(80, 2, 2, 0.3);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    color: var(--clr-accent-light);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-white);
}

.feature-desc {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

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

.winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.winners-table th {
    background: #0e0e0e;
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
}

.winners-table td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--clr-text);
    vertical-align: middle;
}

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

.winners-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.winners-table .rank {
    font-weight: 700;
    color: var(--clr-text-dim);
}

.winners-table .rank.top-3 {
    color: var(--clr-accent-light);
}

.winners-table .username {
    font-weight: 600;
    color: var(--clr-white);
}

.winners-table .amount {
    font-weight: 700;
    color: #4ade80;
}

.winners-table .game-name {
    color: var(--clr-text-muted);
    font-size: 0.8rem;
}

.app-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.app-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.app-info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--clr-border);
    vertical-align: top;
}

.app-info-table td:first-child {
    color: var(--clr-text-muted);
    width: 45%;
    font-weight: 500;
}

.app-info-table td:last-child {
    color: var(--clr-white);
    font-weight: 600;
}

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

.app-table-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.app-dl-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-white);
    font-size: 0.875rem;
    font-weight: 500;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    text-decoration: none;
}

.app-dl-btn:hover {
    border-color: #500202;
    background: rgba(80, 2, 2, 0.1);
    transform: translateX(4px);
}

.app-dl-btn svg {
    width: 26px;
    height: 26px;
    color: var(--clr-text-muted);
    flex-shrink: 0;
}

.app-dl-btn .btn-label {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.app-dl-btn .btn-label small {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    font-weight: 400;
}

.app-dl-btn .btn-label strong {
    font-size: 0.9rem;
}

.app-right-desc h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 12px;
}

.app-right-desc p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

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

.slot-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: pointer;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(80, 2, 2, 0.5);
}

.slot-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.slot-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.slot-card:hover .slot-card-img img {
    transform: scale(1.05);
}

.slot-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background var(--transition);
}

.slot-card:hover .slot-card-overlay {
    background: rgba(0, 0, 0, 0.55);
}

.slot-card-overlay .btn {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition);
}

.slot-card:hover .slot-card-overlay .btn {
    opacity: 1;
    transform: translateY(0);
}

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

.slot-card-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 4px;
}

.slot-card-provider {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.slot-card-body-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.slots-slider-nav {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.slider-btn {
    width: 36px;
    height: 36px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    color: var(--clr-white);
    display: grid;
    place-items: center;
    transition: background var(--transition), border-color var(--transition);
}

.slider-btn:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
}

.slider-btn svg {
    width: 16px;
    height: 16px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #1a1a1a;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 880px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--clr-border);
    background: #0e0e0e;
}

.modal-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
}

.modal-close {
    width: 32px;
    height: 32px;
    background: #2a2a2a;
    border: none;
    border-radius: 50%;
    color: var(--clr-white);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background var(--transition);
}

.modal-close:hover {
    background: var(--clr-primary);
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal-iframe-wrap {
    flex: 1;
    position: relative;
}

.modal-iframe-wrap iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.modal-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--clr-border);
    background: #0e0e0e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.modal-footer p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.wheel-section {
    position: relative;
}

.wheel-block {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
}

.wheel-canvas-wrap {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.wheel-canvas-wrap canvas {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(80, 2, 2, 0.3);
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    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-light);
    filter: drop-shadow(0 2px 6px rgba(240, 184, 64, 0.5));
    z-index: 2;
}

.wheel-right h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 10px;
}

.wheel-right p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.wheel-result {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 20px;
    display: none;
}

.wheel-result.show {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.wheel-result.lose {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.wheel-result p {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--clr-white);
}

.wheel-result .btn {
    margin-top: 4px;
}

.review-section {
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: rgba(80, 2, 2, 0.2);
    border: 2px solid rgba(80, 2, 2, 0.4);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-accent-light);
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-white);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

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

.content-box {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
}

.content-box h2, .text-block h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-white);
    margin: 28px 0 12px;
    line-height: 1.4;
}

.content-box h3, .text-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-white);
    margin: 22px 0 10px;
}

.content-box h4, .text-block h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-white);
    margin: 18px 0 8px;
}

.content-box h2:first-child, .text-block h2:first-child {
    margin-top: 0;
}

.content-box p, .text-block p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    line-height: 1.7;
}

.content-box ul, .text-block ul, .content-box ol, .text-block ol {
    margin: 12px 0 16px 0;
    padding-left: 0;
}

.content-box ul li, .text-block ul li {
    position: relative;
    padding-left: 18px;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    line-height: 1.6;
}

.content-box ul li::before, .text-block ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    width: 5px;
    height: 5px;
    background: var(--clr-primary);
    border-radius: 50%;
}

.content-box ol {
    counter-reset: list-counter;
}

.content-box ol li, .text-block ol li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 28px;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    line-height: 1.6;
}

.content-box ol li::before, .text-block ol li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 0.8rem;
}

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

.content-box table, .text-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.85rem;
}

.content-box table th, .text-block table th {
    background: #0e0e0e;
    color: var(--clr-text-muted);
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    font-size: 0.8rem;
}

.content-box table td, .text-block table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
}

.content-box table tr:nth-child(even) td, .text-block table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.content-box strong, .text-block strong {
    color: var(--clr-white);
    font-weight: 600;
}

.content-box blockquote, .text-block blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 20px;
    background: rgba(80, 2, 2, 0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.site-footer {
    background: var(--clr-header);
    border-top: 1px solid #1e1e1e;
    padding: 56px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 250px 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1e1e1e;
    margin-bottom: 36px;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-white);
}

.footer-brand .logo-text span {
    color: var(--clr-primary);
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 34px;
    height: 34px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    transition: border-color var(--transition), background var(--transition);
    color: var(--clr-text-muted);
}

.footer-social a:hover {
    border-color: var(--clr-primary);
    background: rgba(80, 2, 2, 0.2);
    color: var(--clr-white);
}

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

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

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

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

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

.footer-col .country-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
}

.footer-col .country-flag .flag {
    font-size: 1.2rem;
}

.footer-logos-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.footer-logos-group {
}

.footer-logos-group h5 {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-dim);
    margin-bottom: 12px;
}

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

.footer-pill {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color var(--transition), color var(--transition);
}

.footer-pill:hover {
    border-color: #3a3a3a;
    color: var(--clr-white);
}

.footer-pill svg {
    width: 14px;
    height: 14px;
}

.footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid #1e1e1e;
}

.footer-copyright {
    font-size: 0.76rem;
    color: var(--clr-text-dim);
    line-height: 1.6;
}

.footer-copyright a {
    color: var(--clr-text-muted);
    text-decoration: underline;
}

.footer-legal {
    max-width: 600px;
    font-size: 0.72rem;
    color: var(--clr-text-dim);
    line-height: 1.55;
}

.footer-legal a {
    color: var(--clr-text-muted);
    text-decoration: underline;
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(80, 2, 2, 0.2);
    border: 1px solid rgba(80, 2, 2, 0.4);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ff6b6b;
    flex-shrink: 0;
    margin-top: 4px;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 850;
    background: linear-gradient(90deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
    border-top: 2px solid var(--clr-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 30px rgba(80, 2, 2, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-widget.visible {
    transform: translateY(0);
}

.sticky-widget-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-widget-text strong {
    font-size: 0.9rem;
    color: var(--clr-white);
    font-weight: 700;
}

.sticky-widget-text span {
    font-size: 0.78rem;
    color: var(--clr-accent-light);
}

.sticky-widget-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 146, 42, 0.1);
    border: 1px solid rgba(200, 146, 42, 0.3);
    border-radius: var(--radius-md);
    padding: 8px 14px;
}

.sticky-widget-promo .promo-code {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-accent-light);
    letter-spacing: 0.08em;
}

.sticky-widget-promo .copy-btn {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    background: #2a2a2a;
    border: none;
    border-radius: 4px;
    padding: 3px 8px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.sticky-widget-promo .copy-btn:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.sticky-widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: color var(--transition);
    display: flex;
}

.sticky-widget-close:hover {
    color: var(--clr-white);
}

.sticky-widget-close svg {
    width: 18px;
    height: 18px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: 2px;
    margin: 12px auto 0;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.table-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.info-section {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.info-section-header {
    padding: 20px 28px;
    border-bottom: 1px solid var(--clr-border);
    background: #0e0e0e;
}

.info-section-header h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
}

.wp-site-footer::before {
    display: none;
}

.x7k3m {
    display: none;
}

.z9p2q {
    visibility: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.a4n8r::placeholder {
    opacity: 0.5;
}

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

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-burger {
        display: flex;
    }

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

    .app-block {
        grid-template-columns: 1fr;
    }

    .wheel-block {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wheel-canvas-wrap {
        margin: 0 auto;
    }

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

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

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

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

    .slots-grid {
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .slots-slider-nav {
        display: flex;
    }

    .modal-iframe-wrap iframe {
        height: 320px;
    }

    .sticky-widget {
        flex-wrap: wrap;
        gap: 10px;
    }

    .sticky-widget-text {
        display: none;
    }

    .wheel-canvas-wrap {
        width: 260px;
        height: 260px;
    }

    .wheel-canvas-wrap canvas {
        width: 260px;
        height: 260px;
    }

    .wheel-block {
        padding: 28px 20px;
        gap: 28px;
    }

    .content-box {
        padding: 24px 20px;
    }

    .header-online {
        display: none;
    }

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

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }
}

/* ===========================
   MOBILE FIX
=========================== */

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
    }

    .section-gap {
        padding: 42px 0;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    /* HERO */
    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding: 55px 16px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

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

    .hero-trust {
        display: grid;
        grid-template-columns:1fr;
        gap: 10px;
    }

    /* FEATURES */
    .features-grid {
        grid-template-columns:1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 22px;
    }

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

    .winners-table {
        min-width: 620px;
    }

    .app-info-table {
        min-width: 480px;
    }

    /* APP */
    .app-block {
        grid-template-columns:1fr;
        gap: 24px;
    }

    .app-right-desc {
        text-align: center;
    }

    .app-dl-btn {
        justify-content: center;
    }

    /* SLOTS */
    .slots-grid {
        grid-template-columns:1fr;
        gap: 18px;
    }

    .slot-card {
        width: 100%;
    }

    .slot-card-img {
        aspect-ratio: 16/10;
    }

    /* WHEEL */
    .wheel-block {
        padding: 24px 18px;
        gap: 24px;
    }

    .wheel-canvas-wrap {
        width: 250px;
        height: 250px;
        margin: auto;
    }

    .wheel-canvas-wrap canvas {
        width: 250px !important;
        height: 250px !important;
    }

    .wheel-right {
        text-align: center;
    }

    .wheel-right .btn {
        width: 100%;
    }

    /* REVIEW */
    .review-author {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .content-box {
        padding: 22px 18px;
    }

    .content-box table {
        min-width: 600px;
    }

    .content-box img {
        width: 100%;
        height: auto;
    }

    /* FOOTER */
    .footer-top {
        grid-template-columns:1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logos-pills {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* STICKY BONUS */
    .sticky-widget {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }

    .sticky-widget-promo {
        justify-content: center;
    }

    .sticky-widget .btn {
        width: 100%;
    }

}

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .wrapper,
    main,
    .container,
    .section-gap,
    .hero-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .header-inner {
        padding: 10px 12px;
        gap: 8px;
    }

    .header-logo img {
        max-width: 50px;
        height: auto;
    }

    .header-actions .btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .hero-section {
        display: block;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 52px 14px 36px;
        text-align: left;
        overflow: hidden;
    }

    .hero-badge {
        max-width: 100%;
        white-space: normal;
        font-size: 11px;
        line-height: 1.4;
    }

    .hero-title {
        width: 100%;
        max-width: 100%;
        font-size: 28px;
        line-height: 1.15;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        line-height: 1.55;
    }

    .hero-subtitle br,
    .hero-title br {
        display: none;
    }

    .hero-actions {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns:1fr;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
        padding: 14px 16px;
    }

    .hero-trust {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns:1fr;
        justify-content: start;
        gap: 8px;
        margin-top: 22px;
    }

    .hero-trust-item {
        max-width: 100%;
        font-size: 12px;
        justify-content: flex-start;
    }

    .section-title {
        width: 100%;
        max-width: 100%;
        font-size: 24px;
        line-height: 1.2;
        overflow-wrap: break-word;
    }

    .section-subtitle {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
        margin-bottom: 26px;
    }

    .features-grid,
    .app-block,
    .wheel-block,
    .footer-top {
        grid-template-columns:1fr;
        width: 100%;
        max-width: 100%;
    }

    .feature-card,
    .app-table-wrap,
    .app-right-desc,
    .slot-card,
    .wheel-block,
    .content-box,
    .review-author {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .table-scroll-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .winners-table,
    .app-info-table,
    .content-box table {
        min-width: 520px;
    }

    .slots-grid {
        display: grid;
        grid-template-columns:1fr;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .slot-card-img {
        aspect-ratio: 16/10;
    }

    .wheel-block {
        padding: 22px 14px;
        gap: 22px;
    }

    .wheel-canvas-wrap {
        width: min(240px, 100%);
        height: auto;
        aspect-ratio: 1/1;
        margin: 0 auto;
    }

    .wheel-canvas-wrap canvas {
        width: 100% !important;
        height: 100% !important;
    }

    .wheel-right {
        text-align: center;
    }

    .wheel-right .btn {
        width: 100%;
    }

    .content-box {
        padding: 20px 14px;
    }

    .content-box img,
    .text-block img {
        max-width: 100%;
        height: auto;
    }

    .sticky-widget {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns:1fr;
        gap: 8px;
        padding: 10px 12px;
        overflow: hidden;
    }

    .sticky-widget-promo {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .sticky-widget .btn {
        width: 100%;
    }

    .sticky-widget-close {
        position: absolute;
        left: 12px;
        bottom: 10px;
    }
}

@media (max-width: 420px) {
    .container {
        padding: 0 10px;
    }

    .hero-content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .btn--lg {
        padding: 13px 14px;
        font-size: 14px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-actions .btn {
        padding: 7px 10px;
        font-size: 11px;
    }
}

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
    background: #030303 !important;
    border-bottom: 1px solid #1e1e1e !important;
}

body {
    padding-top: 66px !important;
}

.header-inner {
    min-height: 66px !important;
}

.mobile-menu {
    position: fixed !important;
    top: 66px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 999998 !important;
}

@media (max-width: 768px) {
    body {
        padding-top: 62px !important;
    }

    .header-inner {
        min-height: 62px !important;
    }

    .mobile-menu {
        top: 62px !important;
    }
}