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

:root {
    --clr-header: #343a6c;
    --clr-footer: #343a6c;
    --clr-bg: #0e112b;
    --clr-surface: #161a3a;
    --clr-surface2: #1c2145;
    --clr-primary: #1abd8c;
    --clr-secondary: #848cc9;
    --clr-text: #e8eaf6;
    --clr-text-muted: #9fa8da;
    --clr-border: #2a3060;
    --clr-accent: #f0b429;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --font: 'Montserrat', Arial, sans-serif;
}

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

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

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

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

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

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

.x7k2m {
    display: none;
}

.q9p3r {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

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

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

main {
    flex: 1;
}

/* ===================== HEADER ===================== */
.site-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

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

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

.header-logo img {
    height: 46px;
    width: auto;
    border-radius: var(--radius-sm);
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-list a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--clr-text);
    font-size: 13.5px;
    font-weight: 600;
    padding: 7px 11px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.nav-list a:hover {
    background: rgba(132, 140, 201, 0.18);
    color: #fff;
}

.nav-list svg {
    flex-shrink: 0;
}

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--clr-text-muted);
    font-weight: 600;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

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

.lang-select-wrap {
    position: relative;
}

.lang-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    outline: none;
    transition: background var(--transition);
}

.lang-select:hover {
    background: rgba(255, 255, 255, 0.14);
}

.lang-select option {
    background: var(--clr-surface);
    color: var(--clr-text);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-login {
    background: var(--clr-secondary);
    color: #fff;
    box-shadow: 0 2px 10px rgba(132, 140, 201, 0.3);
}

.btn-login:hover {
    filter: brightness(1.12);
    box-shadow: 0 4px 16px rgba(132, 140, 201, 0.45);
    color: #fff;
}

.btn-register {
    background: var(--clr-primary);
    color: #fff;
    box-shadow: 0 2px 12px rgba(26, 189, 140, 0.35);
}

.btn-register:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 20px rgba(26, 189, 140, 0.5);
    color: #fff;
}

.btn-bonus {
    background: linear-gradient(135deg, #1abd8c 0%, #13a076 100%);
    color: #fff;
    font-size: 15px;
    padding: 10px 26px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 18px rgba(26, 189, 140, 0.4);
}

.btn-bonus:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 26px rgba(26, 189, 140, 0.55);
    color: #fff;
}

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

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

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

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

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

/* Mobile header */
.mobile-nav {
    display: none;
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    animation: slideDown 0.28s ease;
}

.mobile-nav.open {
    display: block;
}

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

.mobile-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px;
    gap: 2px;
}

.mobile-nav .nav-list a {
    justify-content: flex-start;
    font-size: 15px;
    padding: 10px 14px;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images/hero-p.png') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 17, 43, 0.88) 0%, rgba(52, 58, 108, 0.72) 50%, rgba(14, 17, 43, 0.82) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: fadeInUp 0.7s ease both;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(26, 189, 140, 0.18);
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    text-wrap: balance;
}

.hero h1 span {
    color: var(--clr-primary);
}

.hero-desc {
    font-size: 17px;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 560px;
    text-wrap: pretty;
}

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

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--clr-primary);
}

.hero-stat span {
    font-size: 12px;
    color: var(--clr-text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 70px 0;
}

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

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-wrap: balance;
}

.section-title span {
    color: var(--clr-primary);
}

.section-subtitle {
    font-size: 15px;
    color: var(--clr-text-muted);
    margin-bottom: 38px;
    max-width: 580px;
    text-wrap: pretty;
}

/* ===================== ADVANTAGES ===================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.adv-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    opacity: 0;
    transition: opacity var(--transition);
}

.adv-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-primary);
    box-shadow: 0 8px 32px rgba(26, 189, 140, 0.15);
}

.adv-card:hover::before {
    opacity: 1;
}

.adv-icon {
    width: 52px;
    height: 52px;
    background: rgba(26, 189, 140, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.adv-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.adv-card p {
    font-size: 13.5px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ===================== PAYMENTS ===================== */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
}

.data-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: var(--clr-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.data-table th {
    background: var(--clr-surface2);
    color: var(--clr-text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--clr-border);
}

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

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

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

.pm-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13.5px;
    color: #fff;
}

.pm-badge {
    display: inline-block;
    background: rgba(26, 189, 140, 0.15);
    color: var(--clr-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.pm-badge-warn {
    background: rgba(240, 180, 41, 0.15);
    color: var(--clr-accent);
}

/* ===================== WHEEL GAME ===================== */
.wheel-section {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    margin: 0 16px;
}

.wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

#fortune-wheel {
    border-radius: 50%;
    box-shadow: 0 0 0 6px var(--clr-surface2), 0 0 0 10px var(--clr-border), 0 8px 40px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.wheel-pointer {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 28px solid #fff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
    margin-bottom: -6px;
    z-index: 1;
}

.wheel-result {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    animation: fadeInUp 0.5s ease both;
}

.wheel-result-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-primary);
}

.wheel-result-sub {
    font-size: 14px;
    color: var(--clr-text-muted);
}

/* ===================== REVIEW CONTENT ===================== */
.review-block {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px 38px;
}

.review-block h2,
.review-block h3,
.review-block h4 {
    color: #fff;
    font-weight: 700;
    margin: 1.4em 0 0.6em;
    line-height: 1.3;
    text-wrap: balance;
}

.review-block h2 {
    font-size: 1.5rem;
}

.review-block h3 {
    font-size: 1.25rem;
}

.review-block h4 {
    font-size: 1.08rem;
    color: var(--clr-secondary);
}

.review-block p {
    color: var(--clr-text);
    margin-bottom: 1em;
    line-height: 1.75;
}

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

.review-block em {
    color: var(--clr-text-muted);
}

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

.review-block a:hover {
    color: var(--clr-primary);
}

.review-block ul,
.review-block ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
    color: var(--clr-text);
}

.review-block li {
    margin-bottom: 0.45em;
    line-height: 1.7;
}

.review-block ul li::marker {
    color: var(--clr-primary);
}

.review-block ol li::marker {
    color: var(--clr-secondary);
}

.review-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2em;
    font-size: 14px;
}

.review-block table th {
    background: var(--clr-surface2);
    color: var(--clr-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid var(--clr-border);
}

.review-block table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
    text-align: left;
}

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

.review-block table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.review-block blockquote {
    border-left: 3px solid var(--clr-primary);
    margin: 1.2em 0;
    padding: 14px 20px;
    background: rgba(26, 189, 140, 0.07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

.review-block hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1.8em 0;
}

/* ===================== SECURITY TABLE ===================== */
.security-table {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.sec-badge-ok {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 13px;
}

.sec-badge-ok svg {
    flex-shrink: 0;
}

/* ===================== RESPONSIBLE GAMBLING ===================== */
.rg-block {
    background: linear-gradient(135deg, rgba(52, 58, 108, 0.5) 0%, rgba(22, 26, 58, 0.8) 100%);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.rg-block .section-title {
    margin-bottom: 14px;
}

.rg-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.rg-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--clr-text);
    font-size: 13.5px;
    font-weight: 600;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    text-decoration: none;
}

.rg-link:hover {
    background: rgba(26, 189, 140, 0.1);
    border-color: var(--clr-primary);
    color: #fff;
    transform: translateY(-2px);
}

.rg-link svg {
    flex-shrink: 0;
    color: var(--clr-primary);
}

/* ===================== COMMENTS ===================== */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.comment-item {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    transition: border-color var(--transition);
}

.comment-item:hover {
    border-color: rgba(132, 140, 201, 0.4);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.comment-meta {
    flex: 1;
}

.comment-meta strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.comment-meta time {
    font-size: 12px;
    color: var(--clr-text-muted);
}

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

.star {
    color: var(--clr-accent);
    font-size: 14px;
}

.comment-text {
    font-size: 14px;
    color: var(--clr-text);
    line-height: 1.7;
}

/* FORM */
.comment-form {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.form-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font);
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(26, 189, 140, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select option {
    background: var(--clr-surface2);
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 26px;
    color: var(--clr-border);
    cursor: pointer;
    transition: color 0.18s;
    text-transform: none;
    letter-spacing: 0;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: var(--clr-accent);
}

.form-success {
    display: none;
    background: rgba(26, 189, 140, 0.12);
    border: 1px solid var(--clr-primary);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 15px;
    animation: fadeInUp 0.4s ease;
}

/* ===================== AUTHOR ===================== */
.author-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

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

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

.author-role {
    font-size: 13px;
    color: var(--clr-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.author-bio {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(132, 140, 201, 0.15);
    border: 1px solid rgba(132, 140, 201, 0.3);
    color: var(--clr-secondary);
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    transition: background var(--transition), color var(--transition);
}

.author-link:hover {
    background: rgba(132, 140, 201, 0.28);
    color: #fff;
}

.author-dates {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.author-dates span {
    color: var(--clr-text);
    font-weight: 600;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--clr-footer);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 52px 0 28px;
    margin-top: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-wrap img {
    height: 42px;
    margin-bottom: 14px;
}

.footer-flag {
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 13.5px;
    color: var(--clr-text-muted);
    font-weight: 500;
    transition: color var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: background var(--transition), color var(--transition);
}

.social-btn:hover {
    background: var(--clr-primary);
    color: #fff;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 28px 0;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.trust-badge-green {
    border-color: rgba(26, 189, 140, 0.35);
    color: var(--clr-primary);
}

.footer-pm {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    align-items: center;
}

.pm-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-text-muted);
}

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.75;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: var(--clr-text-muted);
    text-align: center;
    margin-top: 12px;
}

/* ===================== STICKY WIDGET ===================== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1c2145 0%, #1e254f 100%);
    border-top: 2px solid var(--clr-primary);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 14px 20px;
}

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

.widget-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.widget-text {
    flex: 1;
}

.widget-text strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

.widget-text span {
    font-size: 13px;
    color: var(--clr-primary);
    font-weight: 600;
}

.widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 22px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color var(--transition);
}

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

/* ===================== MISC LAYOUT ===================== */
.block-outer {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    margin-bottom: 32px;
}

.block-outer:last-child {
    margin-bottom: 0;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 14px;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 28px;
}

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

.text-muted {
    color: var(--clr-text-muted);
}

/* Breadcrumbs */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--clr-text-muted);
    padding: 16px 0 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--clr-text-muted);
}

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

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.25);
}

.breadcrumb-current {
    color: var(--clr-text);
    font-weight: 600;
}

/* Info page content */
.info-content {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 24px;
}

.info-content h1,
.info-content h2,
.info-content h3 {
    color: #fff;
    font-weight: 700;
    margin: 1.2em 0 0.5em;
}

.info-content h1 {
    font-size: 1.7rem;
    margin-top: 0;
}

.info-content h2 {
    font-size: 1.3rem;
}

.info-content p {
    color: var(--clr-text);
    line-height: 1.75;
    margin-bottom: 1em;
}

.info-content ul, .info-content ol {
    padding-left: 1.6em;
    margin-bottom: 1em;
    color: var(--clr-text);
}

.info-content li {
    margin-bottom: 0.4em;
}

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

.info-content a:hover {
    color: var(--clr-primary);
}

.info-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2em;
    font-size: 14px;
    overflow-x: auto;
    display: block;
}

.info-content table th {
    background: var(--clr-surface2);
    color: var(--clr-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 2px solid var(--clr-border);
    white-space: nowrap;
}

.info-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
    text-align: left;
    vertical-align: middle;
}

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

.info-content table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.contact-form-wrap {
    max-width: 640px;
    margin: 24px 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===================== UNUSED / DECOY ===================== */
.wp-block-group {
    display: block;
}

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

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

.entry-content {
    display: block;
}

.post-thumbnail {
    display: block;
}

.woocommerce-page {
    display: block;
}

.yoast-seo-title {
    position: absolute;
    left: -9999px;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#wpadminbar {
    display: none !important;
}

/* wp-content decoy styles */
.wp-content-img {
    display: none;
}

.widget_recent_posts {
    display: none;
}

.widget_categories {
    display: none;
}

.comment-form-cookies-consent {
    display: none;
}

.fxq9r {
    letter-spacing: normal;
}

.m3k7t {
    line-height: inherit;
}

.p8w2v {
    font-style: normal;
}

.r5x1q {
    font-weight: inherit;
}

.c4n9k {
    text-decoration: none;
}

.b7j3m {
    border-style: solid;
}

.z2t8p {
    outline: none;
}

.v6s4w {
    vertical-align: baseline;
}

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

    .footer-logo-wrap {
        grid-column: 1 / -1;
    }
}

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

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: 400px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

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

    .author-avatar {
        margin: 0 auto;
    }

    .author-links {
        justify-content: center;
    }

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

    .wheel-section {
        margin: 0 4px;
        padding: 32px 16px;
    }

    .block-outer {
        padding: 24px 16px;
    }

    .review-block {
        padding: 28px 20px;
    }

    .comment-form {
        padding: 24px 18px;
    }

    .rg-block {
        padding: 28px 20px;
    }
}

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

    .hero-stats {
        gap: 18px;
    }

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

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

    .widget-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {

    .site-header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 99999 !important;
    }

    body {
        padding-top: 70px;
    }

    .header-inner {
        position: relative;
        z-index: 100002;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        min-height: 70px;
        padding: 10px 14px;
    }

    .header-logo {
        flex: 0 1 auto;
        min-width: 0;
    }

    .header-logo img {
        width: auto;
        max-width: 125px;
        height: 40px;
        object-fit: contain;
    }

    .header-nav {
        display: none !important;
    }

    .header-actions {
        margin-left: auto;
        gap: 7px;
    }

    .burger {
        position: relative;
        z-index: 100003;
        display: flex !important;
        width: 42px;
        height: 42px;
        min-width: 42px;
        padding: 9px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 10px;
    }

    .burger span {
        width: 22px;
        height: 2px;
        background: #fff;
    }

    .mobile-nav {
        position: fixed !important;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 100001 !important;
        display: block !important;
        width: 100%;
        height: calc(100dvh - 70px);
        padding: 18px 14px 32px;
        overflow-y: auto;
        background: #161a3a;
        border-top: 1px solid var(--clr-border);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
    }

    .mobile-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .mobile-nav .nav-list li {
        display: block;
        width: 100%;
    }

    .mobile-nav .nav-list a {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        min-height: 52px;
        padding: 14px 16px;
        color: #fff;
        background: #1c2145;
        border: 1px solid var(--clr-border);
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
    }

    .mobile-nav .nav-list a:hover {
        color: #fff;
        background: rgba(26, 189, 140, .12);
        border-color: var(--clr-primary);
    }

    .mobile-nav .nav-list svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }
}

@media (max-width: 480px) {

    body {
        padding-top: 62px;
    }

    .header-inner {
        min-height: 62px;
        padding: 8px 10px;
    }

    .header-logo img {
        max-width: 105px;
        height: 36px;
    }


    .header-actions .btn-register {
        padding: 9px 11px;
        font-size: 11px;
    }

    .mobile-nav {
        top: 62px;
        height: calc(100dvh - 62px);
    }
}
