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

:root {
    --ws-bg: #111111;
    --ws-header: #030303;
    --ws-btn-primary: #500202;
    --ws-btn-primary-hover: #6e0303;
    --ws-btn-secondary: #030303;
    --ws-text: #f0f0f0;
    --ws-text-muted: #9a9a9a;
    --ws-text-dim: #cccccc;
    --ws-gold: #d4a017;
    --ws-gold-light: #f0c040;
    --ws-red: #500202;
    --ws-border: #2a2a2a;
    --ws-card: #1a1a1a;
    --ws-card2: #1e1e1e;
    --ws-radius: 12px;
    --ws-radius-sm: 8px;
    --ws-space: 8px;
    --ws-font: 'Poppins', sans-serif;
    --ws-trans: all 0.25s ease
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

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

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

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

ul, ol {
    list-style: none
}

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

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

.ws7x-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--ws-space) * 2)
}

.ws7x-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
}

.ws7x-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--ws-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: var(--ws-trans);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none
}

.ws7x-btn--primary {
    background: var(--ws-btn-primary);
    color: #fff;
    border: 2px solid var(--ws-btn-primary)
}

.ws7x-btn--primary:hover {
    background: var(--ws-btn-primary-hover);
    border-color: var(--ws-btn-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(80, 2, 2, 0.5)
}

.ws7x-btn--secondary {
    background: transparent;
    color: var(--ws-text);
    border: 2px solid var(--ws-border)
}

.ws7x-btn--secondary:hover {
    border-color: var(--ws-text-muted);
    color: #fff
}

.ws7x-btn--gold {
    background: linear-gradient(135deg, var(--ws-gold), var(--ws-gold-light));
    color: #111;
    border: none;
    font-weight: 700
}

.ws7x-btn--gold:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4)
}

.ws7x-btn--lg {
    padding: 14px 32px;
    font-size: 1rem
}

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

.ws7x-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ws-header);
    border-bottom: 1px solid #1a1a1a
}

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

.ws7x-header__logo {
    flex-shrink: 0
}

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

.ws7x-header__nav {
    display: flex;
    align-items: center;
    gap: 4px
}

.ws7x-header__nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--ws-radius-sm);
    color: var(--ws-text-dim);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--ws-trans)
}

.ws7x-header__nav-link:hover, .ws7x-header__nav-link--active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06)
}

.ws7x-header__nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor
}

.ws7x-header__actions {
    display: flex;
    align-items: center;
    gap: 8px
}

.ws7x-header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--ws-text-muted);
    white-space: nowrap;
    padding: 0 8px
}

.ws7x-header__online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: ws7x-pulse 2s infinite
}

.ws7x-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    border-radius: 6px;
    transition: var(--ws-trans)
}

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

.ws7x-burger span:nth-child(1) {
    width: 22px
}

.ws7x-burger span:nth-child(2) {
    width: 16px
}

.ws7x-burger span:nth-child(3) {
    width: 19px
}

.ws7x-burger.ws7x-burger--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    width: 22px
}

.ws7x-burger.ws7x-burger--open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px)
}

.ws7x-burger.ws7x-burger--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 22px
}

.ws7x-mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 3, 3, 0.98);
    backdrop-filter: blur(8px);
    z-index: 999;
    flex-direction: column;
    padding: 24px 16px;
    gap: 4px;
    overflow-y: auto
}

.ws7x-mobile-nav.ws7x-mobile-nav--open {
    display: flex
}

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

.ws7x-mobile-nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--ws-border)
}

.ws7x-mobile-nav__link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0
}

.ws7x-mobile-nav__divider {
    height: 1px;
    background: var(--ws-border);
    margin: 12px 0
}

.ws7x-mobile-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px
}

.ws7x-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0
}

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

.ws7x-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 3, 3, 0.92) 0%, rgba(3, 3, 3, 0.7) 55%, rgba(3, 3, 3, 0.2) 100%);
    z-index: 1
}

.ws7x-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%
}

.ws7x-hero__content {
    flex: 1;
    max-width: 560px
}

.ws7x-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.6);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ws-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px
}

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

.ws7x-hero__title span {
    color: var(--ws-gold-light)
}

.ws7x-hero__subtitle {
    font-size: 1.05rem;
    color: var(--ws-text-dim);
    margin-bottom: 32px;
    line-height: 1.7
}

.ws7x-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.ws7x-hero__bonus {
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    backdrop-filter: blur(10px)
}

.ws7x-hero__bonus-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ws-text-muted)
}

.ws7x-hero__bonus-amount {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--ws-gold-light);
    line-height: 1
}

.ws7x-hero__bonus-detail {
    font-size: 0.82rem;
    color: var(--ws-text-dim)
}

.ws7x-hero__stats {
    display: flex;
    gap: 24px
}

.ws7x-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.ws7x-hero__stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff
}

.ws7x-hero__stat-label {
    font-size: 0.75rem;
    color: var(--ws-text-muted)
}

.ws7x-section {
    padding: 64px 0
}

.ws7x-section--alt {
    background: rgba(255, 255, 255, 0.02)
}

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

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

.ws7x-section__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px
}

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

.ws7x-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.ws7x-feature-card {
    flex: 1 1 calc(25% - 12px);
    min-width: 200px;
    background: var(--ws-card);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--ws-trans)
}

.ws7x-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 160, 23, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4)
}

.ws7x-feature-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(80, 2, 2, 0.15);
    border: 1px solid rgba(80, 2, 2, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.ws7x-feature-card__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--ws-gold)
}

.ws7x-feature-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff
}

.ws7x-feature-card__text {
    font-size: 0.875rem;
    color: var(--ws-text-muted);
    line-height: 1.6
}

.ws7x-screenshots {
    position: relative
}

.ws7x-screenshots__grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.ws7x-screenshot {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 240px;
    border-radius: var(--ws-radius);
    overflow: hidden;
    border: 1px solid var(--ws-border);
    transition: var(--ws-trans);
    cursor: pointer
}

.ws7x-screenshot:hover {
    transform: scale(1.02);
    border-color: var(--ws-gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5)
}

.ws7x-screenshot img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block
}

.ws7x-tournaments {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.ws7x-tournament-card {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 260px;
    background: var(--ws-card);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    overflow: hidden;
    transition: var(--ws-trans)
}

.ws7x-tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5)
}

.ws7x-tournament-card__top {
    background: linear-gradient(135deg, #500202, #2a0101);
    padding: 20px;
    position: relative
}

.ws7x-tournament-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ws-gold);
    color: #111;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    text-transform: uppercase
}

.ws7x-tournament-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.ws7x-tournament-card__desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5
}

.ws7x-tournament-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ws7x-tournament-card__prize {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ws7x-tournament-card__prize-label {
    font-size: 0.75rem;
    color: var(--ws-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em
}

.ws7x-tournament-card__prize-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ws-gold-light)
}

.ws7x-tournament-card__timer {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-sm);
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ws7x-tournament-card__timer-label {
    font-size: 0.75rem;
    color: var(--ws-text-muted)
}

.ws7x-tournament-card__timer-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    font-variant-numeric: tabular-nums
}

.ws7x-tournament-card__btn {
    width: 100%
}

.ws7x-slot {
    background: var(--ws-card);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 40px;
    max-width: 520px;
    margin: 0 auto;
    text-align: center
}

.ws7x-slot__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff
}

.ws7x-slot__subtitle {
    font-size: 0.875rem;
    color: var(--ws-text-muted);
    margin-bottom: 32px
}

.ws7x-slot__machine {
    background: #0a0a0a;
    border: 2px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.ws7x-slot__reels {
    display: flex;
    gap: 12px;
    align-items: center
}

.ws7x-slot__reel {
    width: 80px;
    height: 80px;
    background: var(--ws-header);
    border: 2px solid var(--ws-border);
    border-radius: var(--ws-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    line-height: 1;
    transition: var(--ws-trans);
    overflow: hidden;
    position: relative
}

.ws7x-slot__reel--spinning {
    animation: ws7x-spin 0.15s linear infinite
}

.ws7x-slot__divider {
    font-size: 1.4rem;
    color: var(--ws-border)
}

.ws7x-slot__spin-btn {
    width: 100%
}

.ws7x-slot__result {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.ws7x-slot__result-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ws-gold-light)
}

.ws7x-slot__result-sub {
    font-size: 0.875rem;
    color: var(--ws-text-muted)
}

.ws7x-review {
    padding: 64px 0
}

.ws7x-review__inner {
    background: var(--ws-card);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 48px;
    position: relative
}

.ws7x-review__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ws-btn-primary), var(--ws-gold));
    border-radius: var(--ws-radius) var(--ws-radius) 0 0
}

.ws7x-review__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ws-border)
}

.ws7x-review__author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ws-gold)
}

.ws7x-review__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

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

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

.ws7x-review__author-link {
    font-size: 0.78rem;
    color: var(--ws-gold);
    transition: var(--ws-trans)
}

.ws7x-review__author-link:hover {
    color: var(--ws-gold-light)
}

.ws7x-review__content {
    color: var(--ws-text-dim);
    line-height: 1.8;
    font-size: 0.95rem
}

.ws7x-review__content h1, .ws7x-review__content h2, .ws7x-review__content h3, .ws7x-review__content h4 {
    color: #fff;
    font-weight: 700;
    margin: 32px 0 14px;
    line-height: 1.3
}

.ws7x-review__content h1 {
    font-size: 1.8rem
}

.ws7x-review__content h2 {
    font-size: 1.4rem
}

.ws7x-review__content h3 {
    font-size: 1.15rem
}

.ws7x-review__content h4 {
    font-size: 1rem
}

.ws7x-review__content p {
    margin-bottom: 16px
}

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

.ws7x-review__content ul {
    list-style: disc
}

.ws7x-review__content ol {
    list-style: decimal
}

.ws7x-review__content li {
    color: var(--ws-text-dim);
    line-height: 1.7
}

.ws7x-review__content a {
    color: var(--ws-gold);
    text-decoration: underline
}

.ws7x-review__content a:hover {
    color: var(--ws-gold-light)
}

.ws7x-review__content strong, .ws7x-review__content b {
    color: #fff;
    font-weight: 600
}

.ws7x-review__content em, .ws7x-review__content i {
    color: var(--ws-text-dim);
    font-style: italic
}

.ws7x-review__content blockquote {
    border-left: 3px solid var(--ws-gold);
    padding: 12px 20px;
    background: rgba(212, 160, 23, 0.05);
    border-radius: 0 var(--ws-radius-sm) var(--ws-radius-sm) 0;
    margin: 20px 0;
    color: var(--ws-text-dim)
}

.ws7x-review__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    display: block;
    overflow-x: auto;
    text-align: left
}

.ws7x-review__content th, .ws7x-review__content td {
    padding: 12px 16px;
    border: 1px solid var(--ws-border);
    font-size: 0.875rem
}

.ws7x-review__content th {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600
}

.ws7x-review__content td {
    color: var(--ws-text-dim)
}

.ws7x-review__content tr:hover td {
    background: rgba(255, 255, 255, 0.02)
}

.ws7x-review__content img {
    border-radius: var(--ws-radius-sm);
    margin: 16px 0
}

.ws7x-review__content hr {
    border: none;
    border-top: 1px solid var(--ws-border);
    margin: 32px 0
}

.ws7x-review__content pre {
    background: #0a0a0a;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-sm);
    padding: 20px;
    overflow-x: auto;
    margin: 16px 0
}

.ws7x-review__content code {
    background: #0a0a0a;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--ws-gold)
}

.ws7x-review__h1 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3
}

.ws7x-comments {
    padding: 64px 0
}

.ws7x-comments__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px
}

.ws7x-comment {
    background: var(--ws-card);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 20px;
    display: flex;
    gap: 14px
}

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

.ws7x-comment__body {
    flex: 1
}

.ws7x-comment__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 8px;
    flex-wrap: wrap
}

.ws7x-comment__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff
}

.ws7x-comment__meta {
    display: flex;
    align-items: center;
    gap: 10px
}

.ws7x-comment__date {
    font-size: 0.75rem;
    color: var(--ws-text-muted)
}

.ws7x-comment__stars {
    display: flex;
    gap: 2px;
    color: var(--ws-gold);
    font-size: 0.8rem
}

.ws7x-comment__text {
    font-size: 0.875rem;
    color: var(--ws-text-dim);
    line-height: 1.7
}

.ws7x-comment__form-wrap {
    background: var(--ws-card);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    padding: 32px
}

.ws7x-comment__form-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff
}

.ws7x-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ws7x-form__row {
    display: flex;
    gap: 16px
}

.ws7x-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1
}

.ws7x-form__label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ws-text-muted)
}

.ws7x-form__input, .ws7x-form__textarea, .ws7x-form__select {
    background: #0d0d0d;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-sm);
    padding: 12px 16px;
    color: var(--ws-text);
    font-size: 0.9rem;
    transition: var(--ws-trans);
    width: 100%;
    outline: none
}

.ws7x-form__input:focus, .ws7x-form__textarea:focus, .ws7x-form__select:focus {
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.08)
}

.ws7x-form__textarea {
    resize: vertical;
    min-height: 120px
}

.ws7x-form__select option {
    background: #0d0d0d
}

.ws7x-form__rating {
    display: flex;
    gap: 6px;
    flex-direction: row-reverse;
    justify-content: flex-end
}

.ws7x-form__rating input {
    display: none
}

.ws7x-form__rating label {
    font-size: 1.4rem;
    color: var(--ws-border);
    cursor: pointer;
    transition: var(--ws-trans)
}

.ws7x-form__rating label:hover, .ws7x-form__rating label:hover ~ label, .ws7x-form__rating input:checked ~ label {
    color: var(--ws-gold)
}

.ws7x-form__success {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--ws-radius-sm);
    padding: 16px;
    color: #86efac;
    font-size: 0.9rem;
    text-align: center
}

.ws7x-form__success--show {
    display: block
}

.ws7x-footer {
    background: var(--ws-header);
    border-top: 1px solid #1a1a1a;
    padding: 56px 0 0
}

.ws7x-footer__top {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 32px
}

.ws7x-footer__brand {
    flex: 0 0 220px
}

.ws7x-footer__logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px
}

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

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

.ws7x-footer__flag {
    font-size: 1.2rem
}

.ws7x-footer__nav-col {
    flex: 1;
    min-width: 140px
}

.ws7x-footer__nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ws-text-muted);
    margin-bottom: 16px
}

.ws7x-footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ws7x-footer__nav-link {
    font-size: 0.85rem;
    color: #888;
    transition: var(--ws-trans)
}

.ws7x-footer__nav-link:hover {
    color: #fff
}

.ws7x-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 20px
}

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

.ws7x-footer__social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2)
}

.ws7x-footer__social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--ws-text-muted)
}

.ws7x-footer__mid {
    padding: 24px 0;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ws7x-footer__logos-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #555;
    margin-bottom: 12px
}

.ws7x-footer__logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.ws7x-footer__logo-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius-sm);
    padding: 7px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    transition: var(--ws-trans)
}

.ws7x-footer__logo-badge:hover {
    color: #bbb;
    border-color: #3a3a3a
}

.ws7x-footer__bottom {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ws7x-footer__copyright {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.7
}

.ws7x-footer__legal {
    font-size: 0.72rem;
    color: #444;
    line-height: 1.6
}

.ws7x-footer__email {
    color: var(--ws-gold);
    transition: var(--ws-trans)
}

.ws7x-footer__email:hover {
    color: var(--ws-gold-light)
}

.ws7x-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1a0000, #0d0d0d);
    border-top: 2px solid var(--ws-btn-primary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.ws7x-widget__text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1
}

.ws7x-widget__emoji {
    font-size: 1.4rem;
    flex-shrink: 0
}

.ws7x-widget__info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.ws7x-widget__title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff
}

.ws7x-widget__bonus {
    font-size: 0.75rem;
    color: var(--ws-gold-light)
}

.ws7x-widget__promo {
    background: rgba(212, 160, 23, 0.1);
    border: 1px dashed var(--ws-gold);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--ws-gold-light);
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap
}

.ws7x-widget__close {
    background: none;
    border: none;
    color: #555;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: var(--ws-trans)
}

.ws7x-widget__close:hover {
    color: #fff
}

.ws7x-widget--hidden {
    display: none
}

body {
    padding-bottom: 72px
}

.ws7x-slider-wrap {
    position: relative;
    overflow: hidden
}

.ws7x-slider-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform
}

.ws7x-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.ws7x-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ws-border);
    transition: var(--ws-trans);
    cursor: pointer;
    border: none
}

.ws7x-slider-dot--active {
    background: var(--ws-gold);
    transform: scale(1.2)
}

.ws7x-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(3, 3, 3, 0.8);
    border: 1px solid var(--ws-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ws-trans);
    z-index: 2
}

.ws7x-slider-btn:hover {
    background: rgba(80, 2, 2, 0.8);
    border-color: var(--ws-btn-primary)
}

.ws7x-slider-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff
}

.ws7x-slider-btn--prev {
    left: -20px
}

.ws7x-slider-btn--next {
    right: -20px
}

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

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

.ws7x-faq-item__q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--ws-trans)
}

.ws7x-faq-item__q:hover {
    background: rgba(255, 255, 255, 0.02)
}

.ws7x-faq-item__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: var(--ws-text-muted);
    transition: transform 0.25s ease
}

.ws7x-faq-item--open .ws7x-faq-item__icon {
    transform: rotate(45deg)
}

.ws7x-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease
}

.ws7x-faq-item--open .ws7x-faq-item__a {
    max-height: 400px
}

.ws7x-faq-item__a-inner {
    padding: 0 20px 18px;
    font-size: 0.875rem;
    color: var(--ws-text-muted);
    line-height: 1.7
}

@keyframes ws7x-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4)
    }
    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0)
    }
}

@keyframes ws7x-spin {
    0% {
        transform: translateY(-100%)
    }
    100% {
        transform: translateY(100%)
    }
}

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

@keyframes ws7x-shimmer {
    0% {
        background-position: -200% 0
    }
    100% {
        background-position: 200% 0
    }
}

.ws7x-anim-enter {
    animation: ws7x-fadeInUp 0.5s ease both
}

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

.ws7x-hidden-nav, .ws7x-wp-nonce, .ws7x-query-vars, .ws7x-reading-settings, .ws7x-content-width, .ws7x-editor-blocks {
    display: none !important;
    visibility: hidden !important
}

@media (max-width: 1024px) {
    .ws7x-feature-card {
        flex: 1 1 calc(50% - 8px)
    }

    .ws7x-tournament-card {
        flex: 1 1 calc(50% - 10px)
    }

    .ws7x-screenshot {
        flex: 1 1 calc(50% - 8px)
    }

    .ws7x-footer__top {
        gap: 32px
    }
}

@media (max-width: 768px) {
    .ws7x-header__nav {
        display: none
    }

    .ws7x-burger {
        display: flex
    }

    .ws7x-hero {
        min-height: auto;
        padding: 40px 0
    }

    .ws7x-hero__content {
        max-width: 100%
    }

    .ws7x-hero__stats {
        gap: 16px
    }

    .ws7x-hero__actions {
        flex-direction: column
    }

    .ws7x-feature-card {
        flex: 1 1 100%
    }

    .ws7x-section {
        padding: 48px 0
    }

    .ws7x-review__inner {
        padding: 28px 20px
    }

    .ws7x-comment__form-wrap {
        padding: 20px
    }

    .ws7x-form__row {
        flex-direction: column
    }

    .ws7x-footer__brand {
        flex: 0 0 100%
    }

    .ws7x-footer__nav-col {
        flex: 1 1 calc(50% - 16px)
    }

    .ws7x-footer__top {
        gap: 24px
    }

    .ws7x-widget__promo {
        display: none
    }

    .ws7x-tournament-card {
        flex: 1 1 100%
    }

    .ws7x-slider-btn--prev {
        left: 4px
    }

    .ws7x-slider-btn--next {
        right: 4px
    }
}

@media (max-width: 480px) {
    .ws7x-header__logo img {
        height: 34px
    }

    .ws7x-screenshot {
        flex: 1 1 100%
    }

    .ws7x-footer__nav-col {
        flex: 1 1 100%
    }

    .ws7x-hero__title {
        font-size: 1.7rem
    }

    .ws7x-hero__bonus-amount {
        font-size: 1.5rem
    }
}
