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

:root {
    --clr-header: #C9C9C8;
    --clr-header-dark: #3a3a38;
    --clr-btn-primary: #F69C35;
    --clr-btn-primary-hover: #e08a20;
    --clr-btn-secondary: #CFCFCF;
    --clr-btn-secondary-hover: #b8b8b8;
    --clr-bg: #FFFBF2;
    --clr-surface: #fff;
    --clr-surface-2: #f5f0e4;
    --clr-text: #1a1a18;
    --clr-text-muted: #5a5a52;
    --clr-accent: #F69C35;
    --clr-gold: #d4a017;
    --clr-dark: #1c1c1a;
    --clr-white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .18);
    --font-main: Helvetica, Arial, sans-serif;
    --transition: 0.22s ease;
}

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

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

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

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

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: var(--font-main);
    border: none;
    outline: none
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap
}

.btn--primary {
    background: var(--clr-btn-primary);
    color: var(--clr-dark)
}

.btn--primary:hover {
    background: var(--clr-btn-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(246, 156, 53, .4)
}

.btn--secondary {
    background: var(--clr-btn-secondary);
    color: var(--clr-dark)
}

.btn--secondary:hover {
    background: var(--clr-btn-secondary-hover);
    transform: translateY(-1px)
}

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

.btn--xl {
    padding: 16px 40px;
    font-size: 18px;
    border-radius: var(--radius-md)
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--clr-btn-primary);
    color: var(--clr-btn-primary)
}

.btn--outline:hover {
    background: var(--clr-btn-primary);
    color: var(--clr-dark)
}

.section-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 12px;
    line-height: 1.2
}

.section-sub {
    font-size: 16px;
    color: var(--clr-text-muted);
    margin-bottom: 36px;
    line-height: 1.6
}

.section-header {
    text-align: center;
    margin-bottom: 40px
}

.xb4r2a {
    display: none
}

.wp4klass-outer {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.elementor-placeholder-hidden {
    display: none !important
}

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

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

.header-logo {
    flex-shrink: 0
}

.header-logo img {
    height: 42px;
    width: auto
}

.header-logo span {
    font-size: 22px;
    font-weight: 800;
    color: var(--clr-btn-primary);
    letter-spacing: -0.5px
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--clr-header);
    font-size: 14px;
    font-weight: 500;
    transition: background var(--transition), color var(--transition)
}

.header-nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--clr-btn-primary)
}

.header-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

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

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--clr-header);
    white-space: nowrap
}

.header-online .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite
}

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

.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(--clr-header);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition)
}

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 28, 26, .97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    color: var(--clr-white);
    font-size: 20px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: background var(--transition)
}

.mobile-nav a:hover {
    background: rgba(246, 156, 53, .15);
    color: var(--clr-btn-primary)
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/spin-hero.png');
    background-size: cover;
    background-position: center;
    opacity: .55
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 28, 26, .85) 0%, rgba(246, 156, 53, .15) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 0
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 156, 53, .2);
    border: 1px solid rgba(246, 156, 53, .4);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 13px;
    color: var(--clr-btn-primary);
    font-weight: 600;
    margin-bottom: 20px
}

.hero-title {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--clr-white);
    margin-bottom: 16px
}

.hero-title span {
    color: var(--clr-btn-primary)
}

.hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 560px
}

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

.hero-bonus-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, .7)
}

.hero-bonus-tag strong {
    color: var(--clr-btn-primary)
}

/* ========== FEATURES ========== */
.features {
    padding: 72px 0
}

.features-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px
}

.feature-tile {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(0, 0, 0, .06)
}

.feature-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--clr-btn-primary), #ffb347);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(246, 156, 53, .3)
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--clr-dark)
}

.feature-tile h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 8px
}

.feature-tile p {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.55
}

/* ========== WINNERS ========== */
.winners {
    padding: 72px 0;
    background: var(--clr-surface-2)
}

.winners-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md)
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-surface);
    min-width: 420px
}

.winners-table thead tr {
    background: var(--clr-header-dark)
}

.winners-table thead th {
    padding: 14px 20px;
    text-align: left;
    color: var(--clr-header);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase
}

.winners-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: background var(--transition)
}

.winners-table tbody tr:hover {
    background: rgba(246, 156, 53, .05)
}

.winners-table tbody tr:last-child {
    border-bottom: none
}

.winners-table td {
    padding: 13px 20px;
    font-size: 14px;
    color: var(--clr-text)
}

.winners-table .rank {
    font-weight: 700;
    width: 40px
}

.winners-table .rank-1 {
    color: #f5a623
}

.winners-table .rank-2 {
    color: #9b9b9b
}

.winners-table .rank-3 {
    color: #c46b2b
}

.winners-table .win-amount {
    font-weight: 700;
    color: #22a843
}

.winners-table .nick {
    display: flex;
    align-items: center;
    gap: 10px
}

.winners-table .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-btn-primary), #ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-dark);
    flex-shrink: 0
}

/* ========== TOURNAMENTS ========== */
.tournaments {
    padding: 72px 0
}

.tournaments-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.tournament-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, .06);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.tournament-card-header {
    background: linear-gradient(135deg, var(--clr-header-dark) 0%, #2e2e2c 100%);
    padding: 24px 20px 20px;
    position: relative
}

.tournament-card-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--clr-btn-primary)
}

.tournament-badge {
    display: inline-block;
    background: rgba(246, 156, 53, .2);
    color: var(--clr-btn-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.tournament-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 6px
}

.tournament-card-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.5
}

.tournament-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px
}

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

.tournament-info .label {
    font-size: 12px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .4px
}

.tournament-info .value {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-dark)
}

.tournament-info .value.prize {
    color: #22a843
}

.tournament-timer {
    display: flex;
    gap: 8px;
    align-items: center
}

.timer-block {
    background: var(--clr-surface-2);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    text-align: center;
    min-width: 52px
}

.timer-block .timer-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-dark);
    line-height: 1;
    display: block
}

.timer-block .timer-label {
    font-size: 10px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-top: 2px;
    display: block
}

.timer-sep {
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-btn-primary);
    margin-top: -4px
}

.tournament-card-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(0, 0, 0, .06)
}

.tournament-card-footer .btn {
    width: 100%
}

/* ========== APP INFO ========== */
.app-info {
    padding: 72px 0;
    background: var(--clr-surface-2)
}

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

.app-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm)
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-surface);
    min-width: 320px
}

.app-table th, .app-table td {
    padding: 12px 18px;
    text-align: left;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, .08)
}

.app-table thead th {
    background: var(--clr-header-dark);
    color: var(--clr-header);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .5px
}

.app-table tbody tr:nth-child(even) {
    background: var(--clr-surface-2)
}

.app-table tbody td:first-child {
    font-weight: 600;
    color: var(--clr-text-muted);
    font-size: 13px
}

.app-table tbody td:last-child {
    color: var(--clr-dark);
    font-weight: 500
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.app-downloads h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-dark)
}

.app-downloads p {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.6
}

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

.app-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-dark);
    color: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: background var(--transition), transform var(--transition);
    text-decoration: none
}

.app-btn:hover {
    background: #2e2e2c;
    transform: translateY(-2px)
}

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

.app-btn-text small {
    display: block;
    font-size: 11px;
    opacity: .7;
    margin-bottom: 2px
}

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

.app-btn--apk {
    background: linear-gradient(135deg, #1a1a18, #3a3a38)
}

/* ========== LUCKY WHEEL ========== */
.lucky-wheel {
    padding: 72px 0;
    background: linear-gradient(180deg, var(--clr-dark) 0%, #2a2a28 100%)
}

.lucky-wheel .section-title {
    color: var(--clr-white)
}

.lucky-wheel .section-sub {
    color: rgba(255, 255, 255, .65)
}

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

.wheel-container {
    position: relative;
    width: 320px;
    height: 320px;
    flex-shrink: 0
}

.wheel-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(246, 156, 53, .35)
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--clr-btn-primary);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4))
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--clr-btn-primary);
    border-radius: 50%;
    border: 4px solid var(--clr-dark);
    box-shadow: 0 0 16px rgba(246, 156, 53, .6)
}

.wheel-controls {
    text-align: center
}

.wheel-controls h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 10px
}

.wheel-controls p {
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 24px;
    line-height: 1.6
}

.wheel-result {
    margin-top: 20px;
    padding: 20px 28px;
    background: rgba(246, 156, 53, .15);
    border: 1px solid rgba(246, 156, 53, .3);
    border-radius: var(--radius-lg);
    text-align: center;
    display: none
}

.wheel-result.win {
    display: block
}

.wheel-result.lose {
    display: block
}

.wheel-result.win h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--clr-btn-primary);
    margin-bottom: 8px
}

.wheel-result.lose h4 {
    font-size: 20px;
    font-weight: 700;
    color: #aaa;
    margin-bottom: 8px
}

.wheel-result p {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 16px
}

#wheel-spin-btn {
    min-width: 180px
}

#wheel-spin-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none
}

/* ========== REVIEW CONTENT ========== */
.review-section {
    padding: 72px 0
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, .07);
    box-shadow: var(--shadow-sm)
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-btn-primary), #ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-dark);
    flex-shrink: 0
}

.review-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-dark)
}

.review-author p {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-top: 2px;
    line-height: 1.5
}

.review-author a {
    color: var(--clr-btn-primary);
    text-decoration: none;
    font-size: 12px
}

.review-author a:hover {
    text-decoration: underline
}

.review-content {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, .07);
    box-shadow: var(--shadow-sm)
}

.review-content h1, .review-content h2, .review-content h3, .review-content h4 {
    color: var(--clr-dark);
    margin-bottom: 14px;
    margin-top: 28px;
    line-height: 1.25
}

.review-content h1 {
    font-size: 28px;
    font-weight: 800
}

.review-content h2 {
    font-size: 22px;
    font-weight: 700
}

.review-content h3 {
    font-size: 18px;
    font-weight: 700
}

.review-content h4 {
    font-size: 16px;
    font-weight: 600
}

.review-content p {
    margin-bottom: 18px;
    color: var(--clr-text);
    line-height: 1.7;
    font-size: 16px
}

.review-content ul, .review-content ol {
    margin: 0 0 18px 24px;
    line-height: 1.7
}

.review-content ul {
    list-style: disc
}

.review-content ol {
    list-style: decimal
}

.review-content li {
    margin-bottom: 6px;
    color: var(--clr-text);
    font-size: 16px
}

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

.review-content a:hover {
    color: var(--clr-btn-primary-hover)
}

.review-content strong, .review-content b {
    font-weight: 700
}

.review-content em, .review-content i {
    font-style: italic
}

.review-content blockquote {
    border-left: 4px solid var(--clr-btn-primary);
    padding: 12px 20px;
    margin: 18px 0;
    background: rgba(246, 156, 53, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
    font-style: italic
}

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

.review-content table th {
    background: var(--clr-header-dark);
    color: var(--clr-header);
    padding: 10px 14px;
    text-align: left;
    font-size: 13px
}

.review-content table td {
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, .1);
    font-size: 14px;
    color: var(--clr-text)
}

.review-content table tr:nth-child(even) td {
    background: var(--clr-surface-2)
}

.review-content img {
    border-radius: var(--radius-md);
    margin: 12px 0;
    max-width: 100%
}

.review-content hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, .1);
    margin: 28px 0
}

.review-content code {
    background: var(--clr-surface-2);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px
}

.review-content pre {
    background: var(--clr-header-dark);
    color: var(--clr-header);
    padding: 20px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 18px 0
}

.review-content pre code {
    background: none;
    padding: 0;
    color: inherit
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--clr-header-dark);
    color: var(--clr-header);
    margin-top: auto
}

.footer-top {
    padding: 52px 0 36px
}

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

.footer-brand .footer-logo {
    margin-bottom: 16px
}

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

.footer-brand .footer-logo span {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-btn-primary)
}

.footer-brand p {
    font-size: 13px;
    color: rgba(201, 201, 200, .75);
    line-height: 1.65;
    max-width: 280px
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition)
}

.footer-social a:hover {
    background: rgba(246, 156, 53, .3)
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: var(--clr-header)
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-white);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 16px
}

.footer-col ul li {
    margin-bottom: 8px
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(201, 201, 200, .75);
    transition: color var(--transition)
}

.footer-col ul li a:hover {
    color: var(--clr-btn-primary)
}

.footer-email {
    font-size: 13px;
    color: rgba(201, 201, 200, .75);
    margin-top: 8px
}

.footer-email a {
    color: var(--clr-btn-primary)
}

.footer-badges {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer-badges-inner {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer-badge-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px
}

.footer-badge-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: rgba(201, 201, 200, .5);
    min-width: 90px;
    flex-shrink: 0
}

.badge-item {
    background: rgba(255, 255, 255, .07);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-header);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.badge-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: .8
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(201, 201, 200, .75)
}

.footer-flag img {
    width: 24px;
    height: 16px;
    border-radius: 2px
}

.footer-copyright {
    font-size: 12px;
    color: rgba(201, 201, 200, .5);
    text-align: center;
    line-height: 1.6
}

.footer-legal {
    font-size: 11px;
    color: rgba(201, 201, 200, .4);
    line-height: 1.6;
    margin-top: 10px;
    text-align: center
}

/* ========== STICKY WIDGET ========== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, #1c1c1a 0%, #2a2a28 100%);
    border-top: 2px solid var(--clr-btn-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .3)
}

.widget-promo {
    display: flex;
    align-items: center;
    gap: 12px
}

.widget-promo-icon {
    width: 36px;
    height: 36px;
    background: var(--clr-btn-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.widget-promo-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-dark)
}

.widget-promo-text small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 2px
}

.widget-promo-text strong {
    font-size: 14px;
    color: var(--clr-white);
    font-weight: 700
}

.widget-promo-code {
    background: rgba(246, 156, 53, .15);
    border: 1px dashed var(--clr-btn-primary);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-family: monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-btn-primary);
    letter-spacing: 1px
}

.widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
    flex-shrink: 0
}

.widget-close:hover {
    color: rgba(255, 255, 255, .8)
}

/* ========== INFO PAGES ========== */
.info-page {
    padding: 60px 0 80px
}

.info-page .content.box {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin: 0 auto;
    max-width: 860px
}

.info-page .text h1 {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: 24px
}

.info-page .text h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-dark);
    margin: 28px 0 12px
}

.info-page .text h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--clr-dark)
}

.info-page .text p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--clr-text)
}

.info-page .text ul, .info-page .text ol {
    margin: 0 0 16px 24px;
    line-height: 1.7
}

.info-page .text ul {
    list-style: disc
}

.info-page .text ol {
    list-style: decimal
}

.info-page .text li {
    margin-bottom: 6px;
    color: var(--clr-text)
}

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

.info-page .text table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block
}

.info-page .text table th {
    background: var(--clr-header-dark);
    color: var(--clr-header);
    padding: 10px 14px;
    text-align: left;
    font-size: 13px
}

.info-page .text table td {
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, .1);
    font-size: 14px
}

.info-page .text table tr:nth-child(even) td {
    background: var(--clr-surface-2)
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    padding: 12px 0;
    font-size: 13px;
    color: var(--clr-text-muted)
}

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

.breadcrumb a:hover {
    text-decoration: underline
}

.breadcrumb span {
    margin: 0 6px;
    opacity: .5
}

/* ========== FADE-IN ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s ease
}

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

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

    .app-info-inner {
        grid-template-columns:1fr;
        gap: 32px
    }
}

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

    .burger {
        display: flex
    }

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

    .hero-content {
        padding: 60px 0
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start
    }

    .features-grid {
        grid-template-columns:repeat(2, 1fr)
    }

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

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center
    }

    .sticky-widget {
        flex-wrap: wrap;
        padding: 10px 14px;
        gap: 10px
    }

    .widget-promo-code {
        font-size: 12px
    }

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

    .review-content {
        padding: 24px 16px
    }

    .review-meta {
        flex-direction: column;
        align-items: flex-start
    }
}

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

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

    .wheel-container {
        width: 260px;
        height: 260px
    }

    .info-page .content.box {
        padding: 24px 16px
    }
}

/* ========== UNUSED EXTRAS (uniqualization) ========== */
.wp-block-group {
    display: block
}

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

.elementor-section {
    position: relative
}

.e-con {
    position: relative
}

.elementor-widget {
    position: relative
}

.site-main {
    display: block
}

.entry-content {
    display: block
}

.has-global-padding {
    padding-inline: var(--wp--style--global--content-size, auto)
}

.wp-site-blocks {
    padding-top: var(--wp--style--root--padding-top, 0)
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
    padding: 1em 2em 1em 3.5em;
    margin: 0 0 2em;
    position: relative;
    background-color: var(--clr-surface);
    color: inherit;
    border-top: 3px solid var(--clr-btn-primary);
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
    display: none
}

.a8x2k {
    color: transparent;
    pointer-events: none;
    user-select: none;
    position: absolute;
    top: -9999px
}

.q3v7m {
    display: none !important
}

@media (max-width: 768px) {

    .lucky-wheel {
        padding: 56px 0;
        overflow: hidden;
    }

    .lucky-wheel .container {
        padding: 0 16px;
    }

    .wheel-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        width: 100%;
    }

    .wheel-container {
        width: 100%;
        max-width: 300px;
        aspect-ratio: 1;
        height: auto;
        margin: 0 auto;
    }

    #wheel-canvas {
        width: 100% !important;
        height: 100% !important;
        display: block;
    }

    .wheel-pointer {
        top: -12px;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 22px solid #f69c35;
    }

    .wheel-center {
        width: 42px;
        height: 42px;
    }

    .wheel-controls {
        width: 100%;
        max-width: 420px;
        text-align: center;
    }

    .wheel-controls h3 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .wheel-controls p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    #wheel-spin-btn {
        width: 100%;
        max-width: 340px;
        min-height: 54px;
        padding: 16px 20px;
        font-size: 16px;
    }

    .wheel-result {
        width: 100%;
        margin-top: 24px;
        padding: 18px;
        border-radius: 16px;
        word-break: break-word;
    }

    .wheel-result h4 {
        font-size: 22px;
    }

    .wheel-result p {
        font-size: 14px;
    }

}

@media (max-width: 480px) {

    .lucky-wheel {
        padding: 42px 0;
    }

    .lucky-wheel .container {
        padding: 0 12px;
    }

    .wheel-container {
        max-width: 240px;
    }

    .wheel-pointer {
        top: -10px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 18px solid #f69c35;
    }

    .wheel-center {
        width: 34px;
        height: 34px;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.25;
    }

    .section-sub {
        font-size: 14px;
        line-height: 1.6;
    }

    .wheel-controls h3 {
        font-size: 20px;
    }

    .wheel-controls p {
        font-size: 14px;
    }

    #wheel-spin-btn {
        width: 100%;
        min-height: 50px;
        font-size: 15px;
        padding: 14px 16px;
    }

    .wheel-result {
        padding: 16px;
    }

    .wheel-result h4 {
        font-size: 20px;
    }

    .wheel-result p {
        font-size: 13px;
    }

}