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

:root {
    --clr-header: #0F442E;
    --clr-bg: #1C724D;
    --clr-primary: #F9CB16;
    --clr-secondary: #0F442E;
    --clr-text: #ffffff;
    --clr-text-dark: #1a1a1a;
    --clr-card: #0c3a26;
    --clr-card-border: rgba(249, 203, 22, 0.25);
    --clr-green: #22c55e;
    --font-main: 'Roboto', Arial, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --tr: .3s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35)
}

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

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.65;
    min-height: 100vh;
    padding-bottom: 70px
}

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

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

ul, ol {
    list-style: none
}

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

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

.box {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius);
    padding: 28px;
    margin: 14px 0
}

.box--accent {
    border-color: var(--clr-primary);
    border-width: 2px
}

.box--flat {
    border-radius: 0;
    margin: 0
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 14px
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.4rem)
}

h2 {
    font-size: clamp(1.2rem, 3vw, 1.9rem);
    color: var(--clr-primary)
}

h3 {
    font-size: clamp(1rem, 2.5vw, 1.35rem)
}

p {
    margin-bottom: 12px;
    line-height: 1.75
}

.section-title {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: var(--clr-primary);
    border-radius: 2px
}

/* ===== HEADER ===== */
.header {
    background: var(--clr-header);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45)
}

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

.logo img {
    height: 48px;
    width: auto;
    transition: opacity var(--tr)
}

.logo:hover img {
    opacity: .82
}

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

.header-nav li a {
    color: rgba(255, 255, 255, .88);
    font-size: .875rem;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 6px;
    transition: background var(--tr), color var(--tr);
    white-space: nowrap;
    display: block
}

.header-nav li a:hover {
    background: rgba(249, 203, 22, .14);
    color: var(--clr-primary)
}

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .65);
    white-space: nowrap;
    margin-right: 4px
}

.online-counter .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseGreen 2s infinite;
    flex-shrink: 0
}

@keyframes pulseGreen {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .55;
        transform: scale(1.4)
    }
}

/* ===== BURGER ===== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 7px;
    z-index: 200;
    flex-shrink: 0
}

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

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

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: .875rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform var(--tr), box-shadow var(--tr), background var(--tr), opacity var(--tr);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1
}

.btn--primary {
    background: var(--clr-primary);
    color: var(--clr-text-dark);
    box-shadow: 0 2px 10px rgba(249, 203, 22, .4)
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 203, 22, .55);
    background: #fdd835
}

.btn--secondary {
    background: var(--clr-secondary);
    color: var(--clr-text);
    border: 1px solid rgba(255, 255, 255, .18)
}

.btn--secondary:hover {
    transform: translateY(-2px);
    background: #1a5c3a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .3)
}

.btn--lg {
    padding: 14px 34px;
    font-size: 1.05rem
}

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

.btn--pulse {
    animation: btnPulse 2.5s infinite
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(249, 203, 22, .4)
    }
    50% {
        box-shadow: 0 2px 24px rgba(249, 203, 22, .7)
    }
}

/* ===== HERO SLIDER ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--clr-header)
}

.slider-wrap {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .75s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center
}

.slide.active {
    opacity: 1
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(15, 68, 46, .88) 0%, rgba(15, 68, 46, .28) 70%, transparent 100%)
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding: 0 48px
}

.slide-content h2 {
    font-size: clamp(1.5rem, 4.5vw, 2.9rem);
    color: var(--clr-text);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .55)
}

.slide-content p {
    font-size: 1.05rem;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .88);
    text-shadow: 0 1px 4px rgba(0, 0, 0, .4)
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(15, 68, 46, .72);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background var(--tr);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px)
}

.slider-prev {
    left: 14px
}

.slider-next {
    right: 14px
}

.slider-prev:hover, .slider-next:hover {
    background: var(--clr-header)
}

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

.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .38);
    border: none;
    cursor: pointer;
    transition: background var(--tr), transform var(--tr);
    padding: 0
}

.slider-dots button.active {
    background: var(--clr-primary);
    transform: scale(1.35)
}

/* ===== CASINO INFO TABLE ===== */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-sm)
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px
}

.casino-table th, .casino-table td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .09)
}

.casino-table th {
    background: rgba(15, 68, 46, .9);
    color: var(--clr-primary);
    font-weight: 600;
    width: 200px;
    white-space: nowrap;
    font-size: .88rem
}

.casino-table td {
    color: rgba(255, 255, 255, .88);
    font-size: .9rem
}

.casino-table tr:last-child th, .casino-table tr:last-child td {
    border-bottom: none
}

.casino-table tr:hover td {
    background: rgba(255, 255, 255, .04)
}

.casino-table .badge {
    display: inline-block;
    background: var(--clr-primary);
    color: var(--clr-text-dark);
    padding: 2px 9px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    margin-top: 20px
}

.adv-item {
    background: rgba(15, 68, 46, .55);
    border: 1px solid rgba(249, 203, 22, .18);
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
    transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr)
}

.adv-item:hover {
    transform: translateY(-5px);
    border-color: var(--clr-primary);
    box-shadow: 0 8px 28px rgba(249, 203, 22, .14)
}

.adv-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block
}

.adv-item h3 {
    font-size: .95rem;
    color: var(--clr-primary);
    margin-bottom: 7px
}

.adv-item p {
    font-size: .83rem;
    color: rgba(255, 255, 255, .78);
    margin: 0;
    line-height: 1.6
}

/* ===== MIRRORS ===== */
.mirrors-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px
}

.mirrors-dt {
    font-size: .83rem;
    color: rgba(255, 255, 255, .68);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.badge-live {
    background: #22c55e;
    color: #fff;
    font-size: .68rem;
    padding: 2px 9px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: .03em
}

.mirrors-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px
}

.mirrors-table th, .mirrors-table td {
    padding: 11px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: .88rem
}

.mirrors-table th {
    background: rgba(15, 68, 46, .9);
    color: var(--clr-primary);
    font-weight: 600
}

.mirrors-table a {
    color: var(--clr-primary);
    transition: opacity var(--tr)
}

.mirrors-table a:hover {
    opacity: .78;
    text-decoration: underline
}

.status-ok {
    color: #4ade80;
    font-weight: 600
}

/* ===== VIDEO ===== */
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-sm)
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

/* ===== WHEEL ===== */
.wheel-section {
    text-align: center
}

.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    position: relative
}

.wheel-pointer {
    position: absolute;
    top: 50%;
    right: calc(50% - 170px);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 22px solid var(--clr-primary);
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5))
}

#wheelCanvas {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(249, 203, 22, .28));
    cursor: pointer
}

.wheel-result {
    display: none;
    background: rgba(12, 58, 38, .95);
    border: 2px solid var(--clr-primary);
    border-radius: var(--radius);
    padding: 22px 28px;
    text-align: center;
    animation: fadeUp .4s ease;
    max-width: 380px;
    width: 100%
}

.wheel-result.win {
    border-color: #4ade80
}

.wheel-result.lose {
    border-color: #f87171
}

.wheel-result h3 {
    font-size: 1.25rem;
    margin-bottom: 10px
}

.wheel-result.win h3 {
    color: #4ade80
}

.wheel-result.lose h3 {
    color: #f87171
}

.wheel-result p {
    font-size: .92rem;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 0
}

/* ===== REVIEW CONTENT ===== */
.review-content {
    line-height: 1.8
}

.review-content h1, .review-content h2, .review-content h3, .review-content h4 {
    color: var(--clr-primary);
    margin: 22px 0 12px
}

.review-content h1 {
    font-size: clamp(1.3rem, 3.5vw, 2rem)
}

.review-content p {
    margin-bottom: 14px
}

.review-content ul, .review-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
    list-style: revert
}

.review-content li {
    margin-bottom: 6px;
    line-height: 1.65
}

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

.review-content table th, .review-content table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .14)
}

.review-content table th {
    background: var(--clr-header);
    color: var(--clr-primary)
}

.review-content blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 20px;
    background: rgba(249, 203, 22, .05);
    margin: 16px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic
}

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

.review-content img {
    border-radius: var(--radius-sm);
    margin: 12px 0
}

.review-content strong {
    color: rgba(255, 255, 255, .95)
}

.review-content em {
    color: rgba(255, 255, 255, .8)
}

.review-placeholder {
    background: rgba(15, 68, 46, .4);
    border: 2px dashed rgba(249, 203, 22, .3);
    border-radius: var(--radius-sm);
    padding: 28px;
    text-align: center;
    color: rgba(255, 255, 255, .45);
    font-style: italic;
    font-size: .92rem
}

/* ===== AUTHOR ===== */
.author-block {
    display: grid;
    grid-template-columns:100px 1fr;
    gap: 24px;
    align-items: start
}

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

.author-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 4px
}

.author-role {
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 12px;
    display: block
}

.author-bio {
    font-size: .88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 14px
}

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

.author-socials a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-primary);
    font-size: .82rem;
    padding: 4px 12px;
    border: 1px solid rgba(249, 203, 22, .3);
    border-radius: 20px;
    transition: background var(--tr)
}

.author-socials a:hover {
    background: rgba(249, 203, 22, .1)
}

/* ===== FOOTER ===== */
.footer {
    background: var(--clr-header);
    margin: 0;
    border-radius: 0;
    padding: 0
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px 24px;
    display: grid;
    grid-template-columns:auto 1fr auto;
    gap: 36px;
    align-items: start
}

.footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 14px
}

.footer-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
    max-width: 220px
}

.footer-nav-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer-nav-label {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 16px
}

.footer-nav a {
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    transition: color var(--tr)
}

.footer-nav a:hover {
    color: var(--clr-primary)
}

.footer-logos-block {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.footer-logos-label {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.logo-badge {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 5px;
    padding: 5px 9px;
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .78);
    white-space: nowrap
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 16px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto
}

.footer-copy {
    font-size: .78rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    margin-bottom: 8px
}

.footer-legal {
    font-size: .7rem;
    color: rgba(255, 255, 255, .32);
    line-height: 1.65;
    max-width: 860px;
    margin: 0 auto
}

/* ===== STICKY WIDGET ===== */
.widget-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: linear-gradient(90deg, var(--clr-header) 0%, #164d32 100%);
    border-top: 2px solid var(--clr-primary);
    padding: 10px 50px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .45)
}

.widget-text {
    font-size: .92rem;
    font-weight: 600;
    color: #fff
}

.widget-bonus {
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 1rem
}

.widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, .45);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px;
    transition: color var(--tr)
}

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

/* ===== UTILITIES ===== */
.mt1 {
    margin-top: 16px
}

.mb1 {
    margin-bottom: 16px
}

.mt2 {
    margin-top: 32px
}

.mb2 {
    margin-bottom: 32px
}

.text-center {
    text-align: center
}

.text-gold {
    color: var(--clr-primary)
}

.text-muted {
    color: rgba(255, 255, 255, .55)
}

.d-flex {
    display: flex
}

.align-center {
    align-items: center
}

.gap2 {
    gap: 8px
}

/* ===== FADE ANIMATION ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease
}

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

/* ===== WP-LIKE UNUSED CLASSES (obfuscation) ===== */
.entry-content {
}

.post-inner {
}

.site-branding {
}

.wp-block-image {
}

.elementor-widget {
}

.wp-caption {
}

.wp-block-columns {
    display: flex;
    gap: 20px
}

.has-text-align-center {
    text-align: center
}

.is-layout-flow {
    display: flow-root
}

.wp-block-group__inner-container {
}

.wp-block-cover {
    position: relative
}

.wp-block-separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin: 20px 0
}

.screen-reader-text {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden
}

.alignleft {
    float: left;
    margin: 0 18px 10px 0
}

.alignright {
    float: right;
    margin: 0 0 10px 18px
}

.aligncenter {
    display: block;
    margin: 0 auto
}

.wp-post-image {
    display: block
}

/* Random obfuscation classes */
.kx7f2 {
    display: block
}

.mb3p9 {
    position: relative
}

.qr8t1 {
    overflow: hidden
}

.jn5a6 {
}

.vc2w4 {
    flex-shrink: 0
}

.hs9d7 {
    margin: 0
}

.fg4e3 {
    padding: 0
}

.az1m8 {
    width: 100%
}

.tx9k2 {
    display: flex
}

.bv6e1 {
    align-items: center
}

.pl7r4 {
    list-style: none
}

.dm2s8 {
    font-size: inherit
}

.nr5c0 {
    color: inherit
}

.wf3a7 {
    border-radius: 0
}

.xp1d5 {
    display: grid
}

.rt6b2 {
    gap: 0
}

.yk8n3 {
    flex-wrap: wrap
}

/* ===== INFO PAGES ===== */
.info-content {
    max-width: 820px;
    margin: 0 auto
}

.info-content h1 {
    margin-bottom: 20px
}

.info-content h2 {
    margin: 24px 0 12px
}

.info-content p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .88)
}

.info-content ul {
    padding-left: 22px;
    margin-bottom: 14px;
    list-style: disc
}

.info-content li {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.7
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 560px;
    margin: 24px 0
}

.contact-form label {
    font-size: .88rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 4px;
    display: block
}

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    background: rgba(15, 68, 46, .6);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: #fff;
    font-family: var(--font-main);
    font-size: .92rem;
    outline: none;
    transition: border-color var(--tr)
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--clr-primary)
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns:1fr 1fr
    }

    .footer-logos-block {
        grid-column: 1/-1
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns:auto 1fr auto;
        padding: 9px 12px
    }

    .header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--clr-header);
        flex-direction: column;
        padding: 16px 12px 20px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform .32s ease, opacity .32s ease;
        z-index: 99;
        border-bottom: 2px solid var(--clr-primary);
        gap: 3px;
        align-items: stretch
    }

    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all
    }

    .header-nav li a {
        padding: 11px 16px
    }

    .burger {
        display: flex
    }

    .slider-wrap {
        height: 280px
    }

    .slide-content {
        padding: 0 22px
    }

    .slide-content h2 {
        font-size: 1.4rem
    }

    .slide-content p {
        font-size: .9rem
    }

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

    .author-photo {
        margin: 0 auto
    }

    .author-socials {
        justify-content: center
    }

    .footer-main {
        grid-template-columns:1fr;
        text-align: center;
        gap: 22px;
        padding: 30px 16px 18px
    }

    .footer-desc {
        max-width: 100%
    }

    .footer-logo img {
        margin: 0 auto 12px
    }

    .footer-logos {
        justify-content: center
    }

    .footer-nav {
        justify-content: center
    }

    .widget-sticky {
        flex-wrap: wrap;
        gap: 7px;
        padding: 9px 44px 9px 12px;
        justify-content: center
    }

    .widget-text {
        font-size: .82rem;
        text-align: center
    }

    .box {
        padding: 18px 14px
    }

    .advantages-grid {
        grid-template-columns:1fr 1fr
    }

    .wheel-pointer {
        right: calc(50% - 155px)
    }
}

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

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

    .online-counter {
        display: none
    }

    #wheelCanvas {
        max-width: 270px
    }

    .wheel-pointer {
        right: calc(50% - 142px)
    }

    .slide-content p {
        display: none
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #0f442e;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

body {
    padding-top: 86px;
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

.logo img {
    display: block;
    height: 58px;
    width: auto;
}

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

.header-nav li {
    list-style: none;
}

.header-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: .25s;
}

.header-nav a:hover {
    background: rgba(249, 203, 22, .14);
    color: #f9cb16;
}

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d7e4dd;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.online-counter .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #32d16d;
    box-shadow: 0 0 10px #32d16d;
}

.btn {
    height: 44px;
    padding: 0 22px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

.btn--secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
}

.btn--secondary:hover {
    border-color: #f9cb16;
    color: #f9cb16;
}

.btn--primary {
    background: #f9cb16;
    color: #142417;
    box-shadow: 0 0 24px rgba(249, 203, 22, .3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 203, 22, .45);
}

.burger {
    display: none;
}

@media (min-width: 992px) {
    .header-nav {
        display: flex !important;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        flex-direction: row !important;
    }
}

html {
    overflow-y: auto;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 86px;
    min-height: 100vh;
}

.header-nav-box {
    width: 100%;
}

.info-page #content {
    padding-top: 28px;
}

.info-page .info-content {
    display: block;
    opacity: 1;
    transform: none;
    visibility: visible;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.mobile-btn {
    display: none;
}

.burger {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background: #1d3328;
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.burger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s;
}

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

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

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

@media (max-width: 991px) {

    .burger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 300px;
        max-width: 85%;
        height: calc(100vh - 78px);
        background: #143f2a;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 30px;
        transition: .35s;
        overflow: auto;
        z-index: 9999;
        box-shadow: 20px 0 40px rgba(0, 0, 0, .35);
    }

    .header-nav.active {
        left: 0;
    }

    .header-nav li {
        width: 100%;
    }

    .header-nav a {
        display: block;
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .mobile-btn {
        display: block;
        margin-top: 12px;
    }

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

    body.menu-open {
        overflow: hidden;
    }
}