:root {
    --c-bg: #042522;
    --c-header: #053029;
    --c-btn-login: #013D33;
    --c-btn-reg: #B30AD7;
    --c-text: #e8f5f0;
    --c-text-muted: #8db8ae;
    --c-border: #0d5045;
    --c-card: #062e27;
    --c-accent: #B30AD7;
    --c-gold: #f0c040;
    --c-green-light: #1a7a60;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

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

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

body {
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: var(--c-gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

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

.xk9f2 {
    display: flex;
}

.xk9f3 {
    flex-direction: column;
}

.xk9f4 {
    align-items: center;
}

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

.xk9f6 {
    flex-wrap: wrap;
}

.xk9f7 {
    gap: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 56px 0;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--c-gold);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.block-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    opacity: 1;
}

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

.btn-login {
    background: var(--c-btn-login);
    color: #fff;
    border: 1px solid var(--c-green-light);
}

.btn-reg {
    background: var(--c-btn-reg);
    color: #fff;
    box-shadow: 0 0 14px rgba(179, 10, 215, 0.4);
}

.btn-reg:hover {
    box-shadow: 0 0 24px rgba(179, 10, 215, 0.7);
}

.btn-gold {
    background: var(--c-gold);
    color: #1a0a00;
    font-weight: 700;
}

.btn-outline {
    background: transparent;
    color: var(--c-text);
    border: 1px solid var(--c-border);
}

header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 12px;
}

.header-logo img {
    height: 44px;
    width: auto;
    display: block;
}

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

.header-nav a {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.header-nav a:hover {
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.06);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.online-count {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #3dff8f;
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

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

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all 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-menu {
    display: none;
    background: var(--c-header);
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--c-border);
}

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

.mobile-menu a {
    color: var(--c-text-muted);
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
}

.mobile-menu a:hover {
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.06);
}

.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-sp.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 37, 34, 0.75) 0%, rgba(179, 10, 215, 0.15) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(179, 10, 215, 0.3);
    border: 1px solid var(--c-accent);
    color: #e0a0f5;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}

.hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    max-width: 640px;
}

.hero h1 span {
    color: var(--c-gold);
}

.hero-desc {
    color: #c8e8e0;
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.6;
}

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

.hero-bonus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    background: rgba(240, 192, 64, 0.12);
    border: 1px solid var(--c-gold);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 0.95rem;
    color: var(--c-gold);
}

.jackpot-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.jackpot-card {
    flex: 1 1 180px;
    background: linear-gradient(135deg, #062e27 0%, #0a1f1c 100%);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(179, 10, 215, 0.2);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-accent), var(--c-gold));
}

.jackpot-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.jackpot-name {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.jackpot-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-gold);
    font-variant-numeric: tabular-nums;
}

.jackpot-currency {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin-top: 3px;
}

.mirror-time {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.88rem;
    color: var(--c-text-muted);
}

.mirror-time strong {
    color: #3dff8f;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

table th {
    background: #0a3830;
    color: var(--c-gold);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-bottom: 2px solid var(--c-border);
}

table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text);
}

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

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

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #3dff8f;
    font-size: 0.85rem;
}

.mirror-status::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #3dff8f;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.app-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    background: var(--c-btn-login);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    color: var(--c-text);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.app-btn:hover {
    background: #015040;
    transform: translateY(-2px);
    color: var(--c-text);
}

.app-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
}

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

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

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

#spinWheel {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(179, 10, 215, 0.3);
}

.wheel-pointer {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--c-gold);
    filter: drop-shadow(0 2px 6px rgba(240, 192, 64, 0.6));
}

.wheel-result {
    display: none;
    background: linear-gradient(135deg, rgba(179, 10, 215, 0.2), rgba(4, 37, 34, 0.8));
    border: 1px solid var(--c-accent);
    border-radius: 12px;
    padding: 20px 28px;
    text-align: center;
    animation: fadeInUp 0.4s ease;
}

.wheel-result.show {
    display: block;
}

.wheel-result h3 {
    font-size: 1.4rem;
    color: var(--c-gold);
    margin-bottom: 8px;
}

.wheel-result p {
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

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

.content-block {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--c-text);
}

.content-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-gold);
    margin: 24px 0 12px;
}

.content-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c8e8e0;
    margin: 20px 0 10px;
}

.content-block h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #c8e8e0;
    margin: 16px 0 8px;
}

.content-block p {
    margin-bottom: 14px;
}

.content-block ul, .content-block ol {
    padding-left: 24px;
    margin-bottom: 14px;
}

.content-block ul li, .content-block ol li {
    margin-bottom: 6px;
}

.content-block a {
    color: var(--c-gold);
    text-decoration: underline;
}

.content-block strong {
    color: #fff;
}

.content-block em {
    color: var(--c-text-muted);
}

.content-block blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 16px;
    margin: 16px 0;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 8px 8px 0;
    color: var(--c-text-muted);
}

.content-block table {
    margin-bottom: 20px;
}

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

.reviews-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.review-card {
    flex: 1 1 260px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

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

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-border);
}

.review-author {
    font-weight: 600;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.stars {
    color: var(--c-gold);
    letter-spacing: 2px;
    font-size: 1rem;
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: var(--c-gold);
}

.review-text {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.review-form {
    margin-top: 32px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
}

.review-form h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-gold);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.87rem;
    color: var(--c-text-muted);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #031e1a;
    border: 1px solid var(--c-border);
    border-radius: 7px;
    padding: 11px 14px;
    color: var(--c-text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(179, 10, 215, 0.15);
}

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

.form-success {
    display: none;
    background: rgba(61, 255, 143, 0.1);
    border: 1px solid #3dff8f;
    border-radius: 8px;
    padding: 14px 18px;
    color: #3dff8f;
    font-size: 0.95rem;
    margin-top: 14px;
    animation: fadeInUp 0.3s ease;
}

.form-success.show {
    display: block;
}

footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    max-width: 280px;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--c-gold);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 7px;
}

.footer-links ul li a {
    color: var(--c-text-muted);
    font-size: 0.88rem;
}

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

.footer-payments {
    margin-top: 8px;
}

.footer-payments h4 {
    color: var(--c-gold);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

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

.pay-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.provider-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.provider-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    letter-spacing: 0.03em;
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    line-height: 1.7;
}

.footer-copy a {
    color: var(--c-text-muted);
    text-decoration: underline;
}

.footer-legal {
    font-size: 0.78rem;
    color: #4a7a70;
    max-width: 480px;
    line-height: 1.5;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #053029 0%, #0a1f1c 50%, #1a0028 100%);
    border-top: 2px solid var(--c-accent);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.widget-text {
    font-size: 0.9rem;
    color: var(--c-text-muted);
}

.widget-text strong {
    color: var(--c-gold);
}

.widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

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

.author-block {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-gold);
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--c-text);
}

.author-bio {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    line-height: 1.5;
    margin-top: 2px;
}

.author-link {
    font-size: 0.82rem;
    color: var(--c-gold);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

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

.breadcrumb a:hover {
    color: var(--c-gold);
}

.breadcrumb span {
    color: var(--c-text-muted);
}

.faq-list {
}

.faq-item {
    border: 1px solid var(--c-border);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: #0a3830;
}

.faq-question .faq-icon {
    font-size: 1.2rem;
    color: var(--c-gold);
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 14px 18px;
    background: #031e1a;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    border-top: 1px solid var(--c-border);
}

.faq-item.open .faq-answer {
    display: block;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
    margin: 8px 0;
}

.badge-new {
    display: inline-block;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 6px;
    vertical-align: middle;
}

.badge-hot {
    display: inline-block;
    background: #e55c00;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 6px;
    vertical-align: middle;
}

.wp-post-image {
    max-width: 100%;
}

.alignnone {
    float: none;
}

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

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.entry-content {
}

.info-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.info-item {
    flex: 1 1 200px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 14px 16px;
    border: 1px solid var(--c-border);
}

.info-item dt {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.info-item dd {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
}

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

    .burger {
        display: flex;
    }

    .jackpot-grid {
    }
}

@media (max-width: 640px) {
    .section {
        padding: 36px 0;
    }

    .hero {
        min-height: 360px;
    }

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

    .hero-btns {
        gap: 10px;
    }

    .btn {
        padding: 9px 16px;
        font-size: 0.88rem;
    }

    .block-card {
        padding: 18px 14px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .reviews-grid {
        flex-direction: column;
    }

    .wheel-wrap {
        gap: 14px;
    }

    #spinWheel {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 10px 14px;
    }

    .online-count {
        display: none;
    }
}

.g-wt8f2 {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.g-wt8f2.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 640px) {
    .wheel-section.g-wt8f2 {
        padding: 36px 0;
        text-align: center;
    }

    .wheel-section.g-wt8f2 .section-title {
        font-size: 1.35rem;
        line-height: 1.25;
        margin-bottom: 18px;
        text-align: center;
    }

    .wheel-section.g-wt8f2 .block-card {
        padding: 18px 14px;
        border-radius: 14px;
        overflow: hidden;
    }

    .wheel-section.g-wt8f2 .block-card > p {
        font-size: .86rem !important;
        line-height: 1.55;
        margin-bottom: 18px !important;
    }

    .wheel-section.g-wt8f2 .wheel-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        width: 100%;
    }

    .wheel-section.g-wt8f2 #spinWheel {
        width: 240px;
        height: 240px;
        max-width: 100%;
        margin: 0 auto;
    }

    .wheel-section.g-wt8f2 #wheelCanvas {
        width: 240px !important;
        height: 240px !important;
        max-width: 100%;
    }

    .wheel-section.g-wt8f2 .wheel-pointer {
        top: -12px;
        border-left-width: 10px;
        border-right-width: 10px;
        border-top-width: 20px;
    }

    .wheel-section.g-wt8f2 #spinBtn {
        width: 100%;
        max-width: 260px;
        min-width: 0 !important;
        padding: 13px 18px !important;
        font-size: .95rem !important;
    }

    .wheel-section.g-wt8f2 #wheelResult {
        width: 100%;
        margin-top: 14px;
        padding: 16px 14px;
        border-radius: 12px;
    }

    .wheel-section.g-wt8f2 #resultText {
        font-size: .9rem;
        line-height: 1.5;
    }

    .wheel-section.g-wt8f2 #wheelResult .btn {
        width: 100%;
        max-width: 260px;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .wheel-section.g-wt8f2 #spinWheel {
        width: 210px;
        height: 210px;
    }

    .wheel-section.g-wt8f2 #wheelCanvas {
        width: 210px !important;
        height: 210px !important;
    }

    .wheel-section.g-wt8f2 .section-title {
        font-size: 1.2rem;
    }
}