:root {
    --c-bg: #041121;
    --c-header: #052240;
    --c-btn-primary: #082B53;
    --c-btn-green: #31CD68;
    --c-text: #e8edf5;
    --c-text-muted: #8ca0b8;
    --c-border: #0d2d4a;
    --c-card: #071a30;
    --c-card-alt: #061628;
    --c-accent: #1a5f9e;
    --c-green-dim: #1e7a41;
    --c-shadow: rgba(0, 0, 0, 0.4);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --font-main: 'Inter', 'Roboto', Arial, sans-serif;
}

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

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

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

a {
    color: var(--c-btn-green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.25;
    font-weight: 700;
    color: var(--c-text);
}

p {
    line-height: 1.6;
}

.x7f2a {
    display: none;
}

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

.g-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

.g-section {
    padding: 56px 0;
}

.g-section-sm {
    padding: 36px 0;
}

.sec-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}

.sec-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52px;
    height: 3px;
    background: var(--c-btn-green);
    border-radius: 2px;
}

.sec-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.sec-title.centered {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--c-shadow);
    text-decoration: none;
}

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

.btn-primary {
    background: var(--c-btn-primary);
    color: #fff;
    border: 1px solid #1a5f9e;
}

.btn-green {
    background: var(--c-btn-green);
    color: #041121;
    font-weight: 700;
}

.btn-green:hover {
    background: #28b559;
    box-shadow: 0 6px 24px rgba(49, 205, 104, 0.35);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

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

.card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.card-alt {
    background: var(--c-card-alt);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

#xf9b3, .wp-site-blocks {
    all: unset;
}

.site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hdr-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 0 18px;
    height: 66px;
    max-width: 1180px;
    margin: 0 auto;
}

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

.hdr-logo a {
    display: flex;
    align-items: center;
}

.hdr-logo img {
    height: 38px;
    width: auto;
}

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

.hdr-nav a {
    color: #c5d5e8;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
}

.hdr-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

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

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

.hdr-online span.dot {
    width: 8px;
    height: 8px;
    background: var(--c-btn-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

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

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1100;
}

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    padding: 16px 18px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 8px;
    animation: slideDown 0.25s ease;
}

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

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

.mobile-menu a {
    color: var(--c-text);
    font-size: 15px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.07);
}

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

.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--c-card);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 17, 33, 0.92) 40%, rgba(4, 17, 33, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 18px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(49, 205, 104, 0.15);
    border: 1px solid rgba(49, 205, 104, 0.35);
    color: var(--c-btn-green);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 620px;
}

.hero-title span {
    color: var(--c-btn-green);
}

.hero-desc {
    font-size: 16px;
    color: #b0c4dc;
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

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

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

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

.hero-stat span {
    font-size: 12px;
    color: var(--c-text-muted);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-block, .cons-block {
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--c-border);
}

.pros-block {
    background: rgba(49, 205, 104, 0.05);
    border-color: rgba(49, 205, 104, 0.2);
}

.cons-block {
    background: rgba(220, 60, 60, 0.04);
    border-color: rgba(220, 60, 60, 0.18);
}

.pros-block h3 {
    color: var(--c-btn-green);
    margin-bottom: 18px;
    font-size: 18px;
}

.cons-block h3 {
    color: #e05555;
    margin-bottom: 18px;
    font-size: 18px;
}

.pros-block h3::before {
    content: '✓ ';
}

.cons-block h3::before {
    content: '— ';
}

.pc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.pc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #c8d8ea;
}

.pros-block .pc-list li::before {
    content: '✓';
    color: var(--c-btn-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.cons-block .pc-list li::before {
    content: '✗';
    color: #e05555;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.mirrors-update {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--c-btn-green);
    margin-bottom: 20px;
}

.mirrors-update span.dot {
    width: 8px;
    height: 8px;
    background: var(--c-btn-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
}

.data-table th {
    background: var(--c-btn-primary);
    color: #fff;
    font-weight: 600;
    padding: 13px 18px;
    text-align: left;
    white-space: nowrap;
}

.data-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text);
    vertical-align: middle;
}

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

.data-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.data-table td a {
    color: var(--c-btn-green);
}

.table-scroll {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(49, 205, 104, 0.12);
    color: var(--c-btn-green);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(49, 205, 104, 0.25);
}

.mirror-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--c-btn-green);
    border-radius: 50%;
    display: inline-block;
}

.app-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

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

.btn-store {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 22px;
    border-radius: var(--radius-md);
    background: var(--c-card);
    border: 1px solid var(--c-border);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
    text-decoration: none;
    color: var(--c-text);
}

.btn-store:hover {
    border-color: var(--c-btn-green);
    box-shadow: 0 4px 18px rgba(49, 205, 104, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--c-text);
}

.btn-store-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.btn-store-text {
    display: flex;
    flex-direction: column;
}

.btn-store-text small {
    font-size: 11px;
    color: var(--c-text-muted);
}

.btn-store-text strong {
    font-size: 15px;
    font-weight: 700;
}

.btn-store.apk {
    border-color: rgba(49, 205, 104, 0.3);
}

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

.wheel-wrap {
    position: relative;
    width: 280px;
    height: 280px;
}

#lbWheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--c-border), 0 0 32px rgba(49, 205, 104, 0.3);
    transition: box-shadow 0.3s;
}

.wheel-ptr {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 22px solid var(--c-btn-green);
    filter: drop-shadow(0 2px 6px rgba(49, 205, 104, 0.6));
}

.wheel-center-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--c-btn-green);
    color: #041121;
    font-size: 13px;
    font-weight: 700;
    border: 3px solid #041121;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-center-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 20px rgba(49, 205, 104, 0.5);
}

.wheel-center-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translate(-50%, -50%);
}

.wheel-result {
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 340px;
    animation: fadeInUp 0.4s ease;
}

.wheel-result.win {
    background: rgba(49, 205, 104, 0.1);
    border: 1px solid rgba(49, 205, 104, 0.35);
}

.wheel-result.lose {
    background: rgba(220, 60, 60, 0.08);
    border: 1px solid rgba(220, 60, 60, 0.25);
}

.wheel-result h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.wheel-result.win h3 {
    color: var(--c-btn-green);
}

.wheel-result.lose h3 {
    color: #e05555;
}

.wheel-result p {
    font-size: 14px;
    color: #b0c4dc;
    margin-bottom: 14px;
}

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

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

.faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: rgba(49, 205, 104, 0.3);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    text-align: left;
    color: var(--c-text);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: background 0.2s;
}

.faq-q:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, border-color 0.2s;
    color: var(--c-text-muted);
    font-size: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--c-btn-green);
    color: var(--c-btn-green);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s;
    padding: 0 22px;
    color: #b0c4dc;
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 22px 18px;
}

.site-footer {
    background: var(--c-header);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 48px 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 28px;
}

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

.footer-logo p {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.6;
    max-width: 200px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

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

.footer-col ul li a {
    color: #8ca0b8;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--c-text);
}

.footer-pay-row, .footer-prov-row {
    margin-bottom: 20px;
}

.footer-pay-row h4, .footer-prov-row h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}

.pay-logos, .prov-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.pay-logo, .prov-logo {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-text-muted);
    letter-spacing: 0.02em;
    transition: background 0.2s, color 0.2s;
}

.pay-logo:hover, .prov-logo:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--c-text);
}

.footer-legal {
    font-size: 12px;
    color: var(--c-text-muted);
    line-height: 1.7;
    text-align: center;
}

.footer-copy {
    font-size: 12px;
    color: var(--c-text-muted);
    text-align: center;
    margin-top: 8px;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: linear-gradient(90deg, #052240 0%, #082B53 50%, #052240 100%);
    border-top: 2px solid var(--c-btn-green);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    animation: widgetSlideUp 0.5s 0.8s both;
}

@keyframes widgetSlideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.widget-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
}

.widget-bonus {
    color: var(--c-btn-green);
    font-size: 15px;
    font-weight: 700;
}

.widget-close {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

.widget-close:hover {
    color: var(--c-text);
}

.content-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 32px;
}

.content-block h1, .content-block h2, .content-block h3,
.content-block h4, .content-block h5, .content-block h6 {
    color: var(--c-text);
    margin: 1.4em 0 0.6em;
}

.content-block h1 {
    font-size: 2em;
}

.content-block h2 {
    font-size: 1.5em;
}

.content-block h3 {
    font-size: 1.25em;
}

.content-block h4 {
    font-size: 1.1em;
}

.content-block p {
    color: #c8d8ea;
    margin-bottom: 1em;
    line-height: 1.7;
}

.content-block a {
    color: var(--c-btn-green);
}

.content-block a:hover {
    color: #28b559;
}

.content-block ul, .content-block ol {
    color: #c8d8ea;
    margin: 0.8em 0 1em 1.4em;
    line-height: 1.7;
}

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

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: 14px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.content-block table th {
    background: var(--c-btn-primary);
    color: #fff;
    padding: 11px 16px;
    text-align: left;
    font-weight: 600;
}

.content-block table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--c-border);
    color: #c8d8ea;
}

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

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

.content-block blockquote {
    border-left: 4px solid var(--c-btn-green);
    padding: 12px 18px;
    margin: 1.2em 0;
    background: rgba(49, 205, 104, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #b0c4dc;
}

.content-block img {
    border-radius: var(--radius-sm);
    margin: 1em 0;
}

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

.content-block strong {
    color: var(--c-text);
    font-weight: 700;
}

.content-block em {
    font-style: italic;
}

.content-block code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
}

.content-block pre {
    background: #02090f;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    overflow-x: auto;
    margin: 1em 0;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--c-card-alt);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-top: 24px;
}

.author-ava {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--c-btn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    border: 2px solid var(--c-border);
}

.author-info {
    flex: 1;
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--c-text);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--c-text-muted);
}

.author-info a {
    color: var(--c-btn-green);
    font-size: 13px;
}

.wp-content-placeholder {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
}

input[type=text], input[type=email], textarea, select {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    padding: 10px 14px;
    font-family: var(--font-main);
    font-size: 14px;
    width: 100%;
    transition: border-color 0.2s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--c-btn-green);
}

.form-v {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 440px;
}

.form-v label {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 4px;
    display: block;
}

.skip-nav {
    position: absolute;
    left: -9999px;
}

.skip-nav:focus {
    left: 12px;
    top: 12px;
    background: var(--c-btn-green);
    color: #041121;
    padding: 8px 16px;
    z-index: 9999;
    border-radius: 4px;
}

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

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

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

    .burger-btn {
        display: flex;
    }

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

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 640px) {
    .hdr-inner {
        height: 58px;
    }

    .mobile-menu {
        top: 58px;
    }

    .hero-content {
        padding: 44px 18px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-stats {
        gap: 20px;
    }

    .g-section {
        padding: 36px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .sticky-widget {
        flex-direction: column;
        gap: 10px;
        padding: 14px 18px 18px;
    }

    .wheel-wrap {
        width: 240px;
        height: 240px;
    }

    #lbWheelCanvas {
        width: 240px !important;
        height: 240px !important;
    }

    .app-dl-btns {
        gap: 10px;
    }
}

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

.wp-block-column {
    flex: 1;
    min-width: 200px;
}

.entry-content {
    margin: 0;
}

.wp-site-blocks > * + * {
    margin-top: 1em;
}

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

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

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

.size-full {
    max-width: 100%;
    height: auto;
}

.wp-caption {
    max-width: 100%;
}

.sticky {
    position: relative;
}

.bypostauthor {
    display: block;
}

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

.gallery-item {
    overflow: hidden;
}

.gallery-icon img {
    display: block;
    width: 100%;
}

.widget {
    margin-bottom: 1.5em;
}

.widget-title {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: .75em;
}
