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

:root {
    --ws-bg: #111111;
    --ws-header-bg: #030303;
    --ws-footer-bg: #030303;
    --ws-btn-primary: #500202;
    --ws-btn-primary-hover: #6e0303;
    --ws-btn-secondary: #030303;
    --ws-btn-secondary-hover: #1a1a1a;
    --ws-text: #e8e8e8;
    --ws-text-muted: #9e9e9e;
    --ws-text-dark: #111111;
    --ws-accent: #c9a227;
    --ws-accent-light: #f0c040;
    --ws-success: #1e8449;
    --ws-success-light: #27ae60;
    --ws-warning: #d68910;
    --ws-error: #c0392b;
    --ws-border: #2a2a2a;
    --ws-border-light: #3a3a3a;
    --ws-card-bg: #1a1a1a;
    --ws-card-bg2: #181818;
    --ws-radius: 12px;
    --ws-radius-sm: 6px;
    --ws-radius-lg: 20px;
    --ws-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --ws-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --ws-transition: 0.25s ease;
    --ws-font: 'Poppins', sans-serif;
    --ws-container: 1200px;
    --ws-gap: 24px;
}

*, *::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(--ws-font);
    background-color: var(--ws-bg);
    color: var(--ws-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body.page-template-default.page.page-id-1 {
    background: var(--ws-bg);
}

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

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

a:hover {
    color: var(--ws-accent-light);
}

ul, ol {
    list-style: none;
}

.ws-container {
    max-width: var(--ws-container);
    margin: 0 auto;
    padding: 0 20px;
}

.ws-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;
}

.ws-header {
    background: var(--ws-header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1e1e1e;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.ws-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    height: 72px;
}

.ws-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ws-header__logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

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

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

.ws-header__nav a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--ws-accent);
}

.ws-nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.ws-online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--ws-text-muted);
    padding: 4px 10px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 20px;
    white-space: nowrap;
}

.ws-online-dot {
    width: 7px;
    height: 7px;
    background: var(--ws-success-light);
    border-radius: 50%;
    animation: ws-pulse 2s infinite;
}

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

.ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--ws-font);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 10px 20px;
    border-radius: var(--ws-radius-sm);
    border: none;
    cursor: pointer;
    transition: transform var(--ws-transition), box-shadow var(--ws-transition), background var(--ws-transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

.ws-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

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

.ws-btn--login {
    background: transparent;
    color: var(--ws-text);
    border: 1px solid var(--ws-border-light);
}

.ws-btn--login:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--ws-text);
    border-color: #4a4a4a;
}

.ws-btn--signup {
    background: var(--ws-btn-primary);
    color: #fff;
    box-shadow: 0 2px 12px rgba(80, 2, 2, 0.4);
}

.ws-btn--signup:hover {
    background: var(--ws-btn-primary-hover);
    color: #fff;
    box-shadow: 0 4px 20px rgba(80, 2, 2, 0.6);
}

.ws-btn--bonus {
    background: linear-gradient(135deg, var(--ws-accent) 0%, #e6ac1e 100%);
    color: #111;
    box-shadow: 0 2px 12px rgba(201, 162, 39, 0.35);
}

.ws-btn--bonus:hover {
    background: linear-gradient(135deg, var(--ws-accent-light) 0%, var(--ws-accent) 100%);
    color: #111;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.55);
}

.ws-btn--lg {
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--ws-radius-sm);
}

.ws-btn--xl {
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: var(--ws-radius-sm);
}

.ws-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--ws-border-light);
    border-radius: var(--ws-radius-sm);
    cursor: pointer;
    padding: 7px;
    transition: border-color var(--ws-transition);
}

.ws-burger span {
    display: block;
    height: 2px;
    background: var(--ws-text);
    border-radius: 2px;
    transition: transform var(--ws-transition), opacity var(--ws-transition);
}

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

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

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

.ws-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ws-header-bg);
    z-index: 999;
    padding: 24px 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.ws-mobile-menu.is-open {
    transform: translateX(0);
}

.ws-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.ws-mobile-menu__nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ws-text);
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: var(--ws-radius-sm);
    border: 1px solid var(--ws-border);
    transition: background var(--ws-transition);
}

.ws-mobile-menu__nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ws-accent);
}

.ws-mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ws-mobile-menu__actions .ws-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
}

.ws-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0d0d0d 100%);
}

.ws-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ws-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.ws-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.ws-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: center;
    width: 100%;
    padding: 60px 0;
}

.ws-hero__content {
    max-width: 620px;
}

.ws-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: var(--ws-accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.ws-hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--ws-accent);
    border-radius: 50%;
    animation: ws-pulse 2s infinite;
}

.ws-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

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

.ws-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(232, 232, 232, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.ws-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ws-hero__bonus-card {
    background: linear-gradient(145deg, #1e0404 0%, #2a0606 50%, #1a1a1a 100%);
    border: 1px solid rgba(80, 2, 2, 0.5);
    border-radius: var(--ws-radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--ws-shadow-lg), 0 0 40px rgba(80, 2, 2, 0.2);
    position: relative;
    overflow: hidden;
}

.ws-hero__bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.ws-bonus-badge {
    display: inline-block;
    background: var(--ws-btn-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.ws-bonus-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--ws-accent);
    line-height: 1;
    margin-bottom: 4px;
}

.ws-bonus-sub {
    font-size: 1rem;
    color: var(--ws-text-muted);
    margin-bottom: 8px;
}

.ws-bonus-spins {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ws-bonus-label {
    font-size: 0.8rem;
    color: var(--ws-text-muted);
    margin-bottom: 24px;
}

.ws-bonus-card__btn {
    width: 100%;
    margin-bottom: 12px;
}

.ws-bonus-card__terms {
    font-size: 0.7rem;
    color: #666;
}

.ws-section {
    padding: 64px 0;
}

.ws-section--alt {
    background: rgba(255, 255, 255, 0.015);
}

.ws-section__header {
    text-align: center;
    margin-bottom: 40px;
}

.ws-section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ws-accent);
    margin-bottom: 10px;
}

.ws-section__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ws-section__lead {
    font-size: 1rem;
    color: var(--ws-text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.ws-procon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ws-procon__col {
    background: var(--ws-card-bg);
    border-radius: var(--ws-radius);
    padding: 28px 24px;
    border: 1px solid var(--ws-border);
}

.ws-procon__col--pros {
    border-top: 3px solid var(--ws-success-light);
}

.ws-procon__col--cons {
    border-top: 3px solid var(--ws-error);
}

.ws-procon__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ws-procon__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ws-procon__col--pros .ws-procon__icon {
    background: rgba(39, 174, 96, 0.15);
    color: var(--ws-success-light);
}

.ws-procon__col--cons .ws-procon__icon {
    background: rgba(192, 57, 43, 0.15);
    color: var(--ws-error);
}

.ws-procon__head-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.ws-procon__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ws-procon__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--ws-text);
}

.ws-procon__item-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 10px;
    font-weight: 700;
}

.ws-procon__col--pros .ws-procon__item-icon {
    background: rgba(39, 174, 96, 0.2);
    color: var(--ws-success-light);
}

.ws-procon__col--cons .ws-procon__item-icon {
    background: rgba(192, 57, 43, 0.2);
    color: var(--ws-error);
}

.ws-mirror {
    background: var(--ws-card-bg);
    border-radius: var(--ws-radius);
    border: 1px solid var(--ws-border);
    overflow: hidden;
}

.ws-mirror__head {
    padding: 20px 24px;
    border-bottom: 1px solid var(--ws-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ws-mirror__title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

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

.ws-mirror__ts-dot {
    width: 7px;
    height: 7px;
    background: var(--ws-success-light);
    border-radius: 50%;
    animation: ws-pulse 2s infinite;
}

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

.ws-table {
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.ws-table th {
    background: rgba(255, 255, 255, 0.04);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ws-text-muted);
    border-bottom: 1px solid var(--ws-border);
}

.ws-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--ws-border);
    color: var(--ws-text);
    vertical-align: middle;
}

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

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

.ws-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ws-status-badge--active {
    background: rgba(39, 174, 96, 0.15);
    color: var(--ws-success-light);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.ws-status-badge--dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.ws-screenshots {
    position: relative;
}

.ws-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ws-slider__item {
    border-radius: var(--ws-radius);
    overflow: hidden;
    border: 1px solid var(--ws-border);
    aspect-ratio: 16/9;
    background: var(--ws-card-bg);
    transition: transform var(--ws-transition), box-shadow var(--ws-transition);
    cursor: pointer;
}

.ws-slider__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--ws-shadow-lg);
}

.ws-slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ws-slider__item:hover img {
    transform: scale(1.04);
}

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

.ws-bonus-card2 {
    background: var(--ws-card-bg);
    border-radius: var(--ws-radius);
    border: 1px solid var(--ws-border);
    overflow: hidden;
    transition: transform var(--ws-transition), box-shadow var(--ws-transition), border-color var(--ws-transition);
}

.ws-bonus-card2:hover {
    transform: translateY(-4px);
    box-shadow: var(--ws-shadow-lg);
    border-color: rgba(201, 162, 39, 0.3);
}

.ws-bonus-card2__img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    background: linear-gradient(135deg, #1a0404, #2a2a2a);
}

.ws-bonus-card2__body {
    padding: 20px;
}

.ws-bonus-card2__tag {
    display: inline-block;
    background: rgba(80, 2, 2, 0.3);
    color: #f08080;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    border: 1px solid rgba(80, 2, 2, 0.4);
}

.ws-bonus-card2__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ws-bonus-card2__amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ws-accent);
    margin-bottom: 4px;
    line-height: 1;
}

.ws-bonus-card2__sub {
    font-size: 0.85rem;
    color: var(--ws-text-muted);
    margin-bottom: 16px;
}

.ws-bonus-card2__btn {
    width: 100%;
    justify-content: center;
    font-size: 0.875rem;
    padding: 10px 16px;
}

.ws-wheel-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ws-wheel-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.ws-wheel-container {
    position: relative;
    width: 320px;
    height: 320px;
}

#ws-wheel-canvas {
    display: block;
}

.ws-wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--ws-accent);
    filter: drop-shadow(0 2px 6px rgba(201, 162, 39, 0.6));
    z-index: 5;
}

.ws-wheel-info {
    text-align: left;
}

.ws-wheel-info__title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

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

.ws-wheel-info__desc {
    font-size: 1rem;
    color: var(--ws-text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.ws-wheel-result {
    display: none;
    padding: 20px 24px;
    border-radius: var(--ws-radius);
    text-align: center;
    animation: ws-fade-in 0.4s ease;
}

.ws-wheel-result--win {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.ws-wheel-result--lose {
    background: rgba(192, 57, 43, 0.1);
    border: 1px solid rgba(192, 57, 43, 0.3);
}

.ws-wheel-result__emoji {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.ws-wheel-result__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.ws-wheel-result__text {
    font-size: 0.9rem;
    color: var(--ws-text-muted);
    margin-bottom: 16px;
}

.ws-wheel-spin-btn {
    min-width: 200px;
}

.ws-review {
    background: var(--ws-card-bg);
    border-radius: var(--ws-radius-lg);
    border: 1px solid var(--ws-border);
    overflow: hidden;
}

.ws-review__header {
    padding: 32px 40px 24px;
    border-bottom: 1px solid var(--ws-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.ws-review__meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ws-review__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ws-border-light);
}

.ws-review__author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.ws-review__author-title {
    font-size: 0.8rem;
    color: var(--ws-text-muted);
}

.ws-review__author-links {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.ws-review__author-links a {
    font-size: 0.75rem;
    color: var(--ws-accent);
}

.ws-review__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ws-stars {
    display: flex;
    gap: 3px;
}

.ws-star {
    color: var(--ws-accent);
    font-size: 1rem;
}

.ws-rating-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.ws-review__body {
    padding: 32px 40px;
}

.ws-review__body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
    line-height: 1.3;
}

.ws-review__body h2:first-child {
    margin-top: 0;
}

.ws-review__body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 22px 0 10px;
    line-height: 1.3;
}

.ws-review__body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ws-text);
    margin: 18px 0 8px;
}

.ws-review__body p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--ws-text);
    margin-bottom: 16px;
}

.ws-review__body ul, .ws-review__body ol {
    margin: 12px 0 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ws-review__body ul {
    list-style: disc;
}

.ws-review__body ol {
    list-style: decimal;
}

.ws-review__body li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ws-text);
    padding-left: 4px;
}

.ws-review__body a {
    color: var(--ws-accent);
    text-decoration: underline;
}

.ws-review__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.ws-review__body table th {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    color: var(--ws-text-muted);
    border: 1px solid var(--ws-border);
}

.ws-review__body table td {
    padding: 10px 14px;
    border: 1px solid var(--ws-border);
    color: var(--ws-text);
}

.ws-review__body blockquote {
    border-left: 3px solid var(--ws-accent);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(201, 162, 39, 0.05);
    border-radius: 0 var(--ws-radius-sm) var(--ws-radius-sm) 0;
    font-style: italic;
    color: var(--ws-text-muted);
}

.ws-review__body strong {
    color: #fff;
    font-weight: 600;
}

.ws-review__body em {
    color: var(--ws-text-muted);
}

.ws-review__body img {
    border-radius: var(--ws-radius-sm);
    margin: 16px 0;
    max-width: 100%;
}

.ws-footer {
    background: var(--ws-footer-bg);
    border-top: 1px solid #1e1e1e;
    padding: 60px 0 0;
}

.ws-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.ws-footer__logo {
    margin-bottom: 16px;
}

.ws-footer__logo img {
    height: 40px;
}

.ws-footer__tagline {
    font-size: 0.875rem;
    color: var(--ws-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ws-footer__social {
    display: flex;
    gap: 10px;
}

.ws-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-sm);
    transition: background var(--ws-transition), border-color var(--ws-transition);
    color: var(--ws-text-muted);
}

.ws-footer__social-link:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: rgba(201, 162, 39, 0.3);
    color: var(--ws-accent);
}

.ws-footer__col-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 16px;
}

.ws-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ws-footer__nav a {
    font-size: 0.875rem;
    color: var(--ws-text-muted);
    transition: color var(--ws-transition);
}

.ws-footer__nav a:hover {
    color: var(--ws-text);
}

.ws-footer__contact p {
    font-size: 0.875rem;
    color: var(--ws-text-muted);
    margin-bottom: 8px;
}

.ws-footer__contact a {
    color: var(--ws-accent);
    font-size: 0.875rem;
}

.ws-footer__country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--ws-text-muted);
    margin-top: 12px;
}

.ws-footer__divider {
    border: none;
    border-top: 1px solid var(--ws-border);
    margin: 0;
}

.ws-footer__logos {
    padding: 32px 0;
}

.ws-footer__logos-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.ws-footer__logos-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    width: 100%;
    margin-bottom: 8px;
}

.ws-footer__logo-item {
    height: 28px;
    opacity: 0.55;
    filter: grayscale(1) brightness(1.5);
    transition: opacity var(--ws-transition), filter var(--ws-transition);
}

.ws-footer__logo-item:hover {
    opacity: 0.85;
    filter: grayscale(0.3) brightness(1.2);
}

.ws-logo-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ws-border);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.ws-footer__bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 0;
    text-align: center;
}

.ws-footer__copyright {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 8px;
}

.ws-footer__legal {
    font-size: 0.75rem;
    color: #444;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 12px;
}

.ws-footer__legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.ws-footer__legal-links a {
    font-size: 0.75rem;
    color: #555;
    transition: color var(--ws-transition);
}

.ws-footer__legal-links a:hover {
    color: var(--ws-text-muted);
}

.ws-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1a0404 0%, #0d0d0d 50%, #1a0404 100%);
    border-top: 1px solid rgba(80, 2, 2, 0.5);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.ws-widget.is-hidden {
    transform: translateY(100%);
}

.ws-widget__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    max-width: var(--ws-container);
    margin: 0 auto;
}

.ws-widget__text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ws-widget__bonus {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ws-accent);
}

.ws-widget__sub {
    font-size: 0.8rem;
    color: var(--ws-text-muted);
}

.ws-widget__promo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ws-promo-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px dashed rgba(201, 162, 39, 0.5);
    border-radius: var(--ws-radius-sm);
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ws-accent);
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background var(--ws-transition);
    user-select: all;
}

.ws-promo-code:hover {
    background: rgba(201, 162, 39, 0.18);
}

.ws-widget__close {
    background: none;
    border: 1px solid var(--ws-border);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    flex-shrink: 0;
    transition: background var(--ws-transition), color var(--ws-transition);
}

.ws-widget__close:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--ws-text);
}

.ws-page-content {
    background: var(--ws-card-bg);
    border-radius: var(--ws-radius);
    border: 1px solid var(--ws-border);
    padding: 40px;
    margin: 40px 0;
}

.ws-page-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.ws-page-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin: 28px 0 12px;
    line-height: 1.3;
}

.ws-page-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ws-text);
    margin: 20px 0 8px;
}

.ws-page-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--ws-text);
    margin-bottom: 14px;
}

.ws-page-content ul, .ws-page-content ol {
    margin: 12px 0 16px 22px;
}

.ws-page-content ul {
    list-style: disc;
}

.ws-page-content ol {
    list-style: decimal;
}

.ws-page-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ws-text);
    margin-bottom: 6px;
}

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

.ws-breadcrumb {
    padding: 16px 0;
}

.ws-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #555;
    flex-wrap: wrap;
}

.ws-breadcrumb__list a {
    color: var(--ws-text-muted);
}

.ws-breadcrumb__list a:hover {
    color: var(--ws-text);
}

.ws-breadcrumb__sep {
    color: #444;
}

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

@keyframes ws-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ws-animate-in {
    animation: ws-slide-up 0.5s ease forwards;
}

.ws-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ws-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.d4f2a9 {
    font-size: 0;
    line-height: 0;
    visibility: hidden;
}

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

.entry-content {
    display: block;
}

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

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

.has-global-padding {
    display: block;
}

.ws-x7b3k {
    position: absolute;
    left: -9999px;
    top: -9999px;
    pointer-events: none;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.wp-caption-text {
    display: none;
}

.screen-reader-text {
    display: none;
}

.sticky.is-stuck {
    display: block;
}

@media (max-width: 1024px) {
    .ws-header__inner {
        grid-template-columns: auto auto 1fr;
    }

    .ws-header__nav {
        display: none;
    }

    .ws-burger {
        display: flex;
    }

    .ws-mobile-menu {
        display: block;
    }

    .ws-hero__inner {
        grid-template-columns: 1fr;
    }

    .ws-hero__bonus-card {
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
    }

    .ws-procon {
        grid-template-columns: 1fr;
    }

    .ws-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

    .ws-wheel-side {
        order: -1;
    }

    .ws-wheel-info {
        text-align: center;
    }

    .ws-wheel-container {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .ws-header__inner {
        height: 64px;
    }

    .ws-header__actions {
        gap: 8px;
    }

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

    .ws-hero {
        min-height: 480px;
    }

    .ws-hero__inner {
        padding: 48px 0;
    }

    .ws-slider {
        grid-template-columns: 1fr 1fr;
    }

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

    .ws-widget__inner {
        flex-direction: column;
        text-align: center;
        padding: 14px 16px;
        gap: 12px;
    }

    .ws-widget__text {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .ws-review__body, .ws-review__header {
        padding: 24px 20px;
    }

    .ws-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ws-page-content {
        padding: 24px 20px;
    }
}

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

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

    .ws-hero__actions .ws-btn {
        width: 100%;
        justify-content: center;
    }

    .ws-footer__logos-row {
        gap: 12px;
    }

    .ws-widget__promo {
        flex-direction: column;
    }

    .ws-widget__promo .ws-btn {
        width: 100%;
        justify-content: center;
    }
}

.ws-wheel-container {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1/1;
    overflow: visible;
}

#ws-wheel-canvas {
    max-width: 100%;
    height: auto;
}