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

:root {
    --clr-bg: #1A1429;
    --clr-header: #1C142F;
    --clr-btn-login: #2D1239;
    --clr-btn-reg: #613225;
    --clr-accent: #c8972a;
    --clr-text: #e8e0f5;
    --clr-text-muted: #a898c8;
    --clr-border: #2e2248;
    --clr-card: #221838;
    --clr-card2: #271540;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

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

body {
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden
}

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: opacity .2s
}

a:hover {
    opacity: .8
}

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

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

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

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

.lb-logo img {
    height: 44px;
    width: auto;
    object-fit: contain
}

.lb-nav {
    display: flex;
    align-items: center;
    gap: 20px
}

.lb-nav a {
    color: var(--clr-text);
    font-size: .9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s
}

.lb-nav a:hover {
    color: var(--clr-accent)
}

.lb-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--clr-text-muted);
    white-space: nowrap
}

.lb-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ddc84;
    box-shadow: 0 0 8px #3ddc84;
    animation: lb-pulse 2s infinite
}

@keyframes lb-pulse {
    0%, 100% {
        box-shadow: 0 0 6px #3ddc84
    }
    50% {
        box-shadow: 0 0 14px #3ddc84
    }
}

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

.lb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    border-radius: 6px;
    transition: transform .15s, filter .2s;
    text-decoration: none;
    white-space: nowrap
}

.lb-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.15)
}

.lb-btn:active {
    transform: translateY(0)
}

.lb-btn-login {
    background: var(--clr-btn-login);
    color: #e8d9f8;
    padding: 8px 18px;
    font-size: .85rem;
    border: 1px solid #4a2060
}

.lb-btn-reg {
    background: var(--clr-btn-reg);
    color: #f9ddd0;
    padding: 8px 18px;
    font-size: .85rem
}

.lb-btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 8px
}

.lb-btn-bonus {
    background: var(--clr-btn-reg);
    color: #fff;
    padding: 10px 24px;
    font-size: .9rem;
    border-radius: 8px
}

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

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

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

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

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

.lb-mobile-nav {
    display: none;
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 16px
}

.lb-mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lb-mobile-nav a {
    color: var(--clr-text);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid var(--clr-border)
}

.lb-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg)
}

.lb-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/leebet-b.png');
    background-size: cover;
    background-position: center top;
    opacity: .45
}

.lb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 20, 41, .97) 40%, rgba(26, 20, 41, .6) 100%)
}

.lb-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 60px 16px 60px 0
}

.lb-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 16px;
    text-wrap: balance
}

.lb-hero h1 span {
    color: var(--clr-accent)
}

.lb-hero p {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.6
}

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

.lb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 151, 42, .12);
    border: 1px solid rgba(200, 151, 42, .3);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: .8rem;
    color: var(--clr-accent);
    margin-bottom: 20px
}

.lb-section {
    padding: 56px 0
}

.lb-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-wrap: balance
}

.lb-section-sub {
    color: var(--clr-text-muted);
    margin-bottom: 32px;
    font-size: .95rem
}

.lb-divider {
    width: 48px;
    height: 3px;
    background: var(--clr-accent);
    border-radius: 2px;
    margin: 10px 0 28px
}

.lb-winners {
    background: var(--clr-card)
}

.lb-winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem
}

.lb-winners-table th {
    background: var(--clr-btn-login);
    color: var(--clr-text-muted);
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .05em;
    padding: 12px 16px;
    text-align: left
}

.lb-winners-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text)
}

.lb-winners-table tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.lb-winners-table .lb-rank {
    font-weight: 700;
    color: var(--clr-accent)
}

.lb-winners-table .lb-win-amount {
    font-weight: 700;
    color: #7ef09b
}

.lb-winners-table .lb-crown {
    color: var(--clr-accent)
}

.lb-rank-1, .lb-rank-2, .lb-rank-3 {
    background: rgba(200, 151, 42, .06) !important
}

.lb-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--clr-border)
}

.lb-tournaments-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.lb-tournament-card {
    flex: 1 1 280px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden
}

.lb-tournament-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(97, 50, 37, .18), transparent 60%);
    pointer-events: none
}

.lb-tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .45)
}

.lb-tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(97, 50, 37, .3);
    color: #f5c6a0;
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content
}

.lb-tournament-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff
}

.lb-tournament-desc {
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.5
}

.lb-tournament-prize {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-accent)
}

.lb-tournament-prize span {
    font-size: .8rem;
    font-weight: 400;
    color: var(--clr-text-muted)
}

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

.lb-timer-unit {
    background: var(--clr-btn-login);
    border-radius: 6px;
    padding: 6px 10px;
    text-align: center;
    min-width: 44px
}

.lb-timer-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: block
}

.lb-timer-label {
    font-size: .65rem;
    color: var(--clr-text-muted);
    text-transform: uppercase
}

.lb-timer-sep {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-accent);
    align-self: center;
    margin-top: -4px
}

.lb-app-info {
    background: var(--clr-card)
}

.lb-app-grid {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap
}

.lb-app-table-wrap {
    flex: 1 1 340px;
    overflow-x: auto
}

.lb-app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem
}

.lb-app-table th {
    background: var(--clr-btn-login);
    color: var(--clr-text-muted);
    padding: 11px 16px;
    text-align: left;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

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

.lb-app-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 500;
    white-space: nowrap
}

.lb-app-table td:last-child {
    font-weight: 600;
    color: #fff
}

.lb-app-table tr:last-child td {
    border-bottom: none
}

.lb-app-btns {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px
}

.lb-dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-btn-login);
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    padding: 12px 20px;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .15s
}

.lb-dl-btn:hover {
    background: #3a1a50;
    transform: translateY(-2px)
}

.lb-dl-btn svg {
    flex-shrink: 0
}

.lb-dl-btn-apk {
    background: rgba(97, 50, 37, .35);
    border-color: rgba(97, 50, 37, .6)
}

.lb-dl-btn-apk:hover {
    background: rgba(97, 50, 37, .55)
}

.lb-wheel-section {
    background: var(--clr-card2)
}

.lb-wheel-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center
}

.lb-wheel-canvas-wrap {
    position: relative;
    flex-shrink: 0
}

#lb-wheel {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(200, 151, 42, .25);
    display: block
}

.lb-wheel-arrow {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid var(--clr-accent);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .6))
}

.lb-wheel-info {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 380px
}

.lb-wheel-result {
    background: var(--clr-btn-login);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.lb-wheel-result-win {
    color: #7ef09b;
    font-size: 1.1rem;
    font-weight: 700
}

.lb-wheel-result-lose {
    color: #ff7e7e;
    font-size: 1rem
}

#lb-spin-btn {
    width: 100%
}

.lb-review-block {
    background: var(--clr-card)
}

.lb-review-content {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 28px;
    background: var(--clr-bg)
}

.lb-review-content h2, .lb-review-content h3, .lb-review-content h4 {
    color: #fff;
    margin: 24px 0 10px;
    line-height: 1.3
}

.lb-review-content h2 {
    font-size: 1.4rem
}

.lb-review-content h3 {
    font-size: 1.15rem
}

.lb-review-content p {
    color: var(--clr-text);
    line-height: 1.7;
    margin-bottom: 14px
}

.lb-review-content ul, .lb-review-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
    color: var(--clr-text);
    line-height: 1.7
}

.lb-review-content li {
    margin-bottom: 6px
}

.lb-review-content a {
    color: var(--clr-accent)
}

.lb-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: .9rem
}

.lb-review-content table th {
    background: var(--clr-btn-login);
    color: var(--clr-text-muted);
    padding: 10px 14px;
    text-align: left
}

.lb-review-content table td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text)
}

.lb-review-content table tr:last-child td {
    border-bottom: none
}

.lb-review-content blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 10px 18px;
    margin: 16px 0;
    color: var(--clr-text-muted);
    font-style: italic;
    background: rgba(200, 151, 42, .06);
    border-radius: 0 6px 6px 0
}

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

.lb-review-content strong {
    color: #fff
}

.lb-review-content em {
    color: var(--clr-text-muted)
}

.lb-review-content code {
    background: var(--clr-btn-login);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .88em;
    color: #e8d9f8
}

.lb-review-content img {
    border-radius: 8px;
    margin: 12px 0
}

.lb-author-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 24px
}

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

.lb-author-info {
    flex: 1
}

.lb-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.lb-author-role {
    font-size: .82rem;
    color: var(--clr-accent);
    margin-bottom: 8px
}

.lb-author-bio {
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 12px
}

.lb-author-socials {
    display: flex;
    gap: 10px
}

.lb-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--clr-btn-login);
    border-radius: 6px;
    color: var(--clr-text);
    transition: background .2s, color .2s
}

.lb-social-link:hover {
    background: var(--clr-accent);
    color: #1a1429
}

.lb-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 40px 0 20px
}

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

.lb-footer-col {
    flex: 1 1 200px
}

.lb-footer-logo img {
    height: 38px;
    margin-bottom: 16px
}

.lb-footer-desc {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.lb-footer-heading {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    font-weight: 600
}

.lb-footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lb-footer-links a {
    color: var(--clr-text-muted);
    font-size: .88rem;
    transition: color .2s
}

.lb-footer-links a:hover {
    color: var(--clr-text)
}

.lb-payment-logos, .lb-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}

.lb-payment-badge, .lb-provider-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    font-weight: 500
}

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

.lb-footer-copy {
    font-size: .8rem;
    color: var(--clr-text-muted);
    line-height: 1.5
}

.lb-footer-legal {
    font-size: .75rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    line-height: 1.5;
    opacity: .7
}

.lb-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--clr-text-muted);
    border-radius: 50%;
    font-size: .78rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    flex-shrink: 0
}

.lb-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #3d1a15, #613225);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5)
}

.lb-widget-text {
    font-size: .9rem;
    font-weight: 600;
    color: #f9ddd0;
    white-space: nowrap
}

.lb-widget-bonus {
    font-size: .85rem;
    color: #f5c6a0;
    background: rgba(255, 255, 255, .12);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap
}

.lb-widget-btn {
    background: #fff;
    color: #613225;
    font-weight: 700;
    font-size: .85rem;
    border-radius: 6px;
    padding: 8px 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center
}

.lb-widget-btn:hover {
    background: #f5e8d8;
    transform: translateY(-1px)
}

.lb-widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0
}

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

.lb-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

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

.lb-wpdiscuz_form_content {
    display: none
}

.entry-content {
    position: relative
}

.wp-block-query {
    display: block
}

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

.elementor-section {
    position: relative
}

.yoast-schema-graph {
    display: none
}

#wpadminbar {
    display: none
}

.wp-caption {
    display: inline-block
}

.alignright {
    float: right;
    margin-left: 16px
}

.alignleft {
    float: left;
    margin-right: 16px
}

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

    .lb-burger {
        display: flex
    }

    .lb-hero h1 {
        font-size: 1.7rem
    }

    .lb-tournaments-grid {
        flex-direction: column
    }

    .lb-app-grid {
        flex-direction: column
    }

    .lb-app-btns {
        min-width: unset;
        width: 100%
    }

    .lb-footer-top {
        flex-direction: column;
        gap: 24px
    }

    .lb-author-card {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .lb-author-socials {
        justify-content: center
    }
}

@media (max-width: 600px) {
    .lb-hero {
        min-height: 400px
    }

    .lb-hero-content {
        padding: 40px 0
    }

    .lb-hero h1 {
        font-size: 1.4rem
    }

    .lb-hero p {
        font-size: .9rem
    }

    .lb-widget {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 12px
    }

    .lb-widget-text {
        font-size: .8rem
    }

    .lb-section {
        padding: 36px 0
    }

    .lb-section-title {
        font-size: 1.3rem
    }

    .lb-header-inner {
        padding: 10px 12px
    }

    .lb-btn-login, .lb-btn-reg {
        padding: 7px 12px;
        font-size: .8rem
    }
}

#tournaments {
    position: relative;
    overflow: hidden;
}

#tournaments::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(200, 151, 42, .08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(97, 50, 37, .12), transparent 34%);
    pointer-events: none;
}

#tournaments .lb-container {
    position: relative;
    z-index: 1;
}

#tournaments .lb-section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -.03em;
}

#tournaments .lb-section-sub {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 22px;
    font-size: .98rem;
    line-height: 1.7;
}

#tournaments .lb-divider {
    margin: 0 auto 38px;
    width: 74px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #613225, #c8972a);
}

#tournaments .lb-tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

#tournaments .lb-tournament-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    padding: 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), transparent 100%),
    linear-gradient(145deg, #271540 0%, #211734 100%);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .04);
    overflow: hidden;
    transition: transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

#tournaments .lb-tournament-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 151, 42, .12), transparent 36%),
    radial-gradient(circle at top right, rgba(255, 255, 255, .06), transparent 22%);
    pointer-events: none;
}

#tournaments .lb-tournament-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 151, 42, .34);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(200, 151, 42, .08);
}

#tournaments .lb-tournament-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(200, 151, 42, .12);
    border: 1px solid rgba(200, 151, 42, .24);
    color: #f6d28f;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

#tournaments .lb-tournament-badge svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

#tournaments .lb-tournament-name {
    position: relative;
    z-index: 2;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
    letter-spacing: -.02em;
}

#tournaments .lb-tournament-desc {
    position: relative;
    z-index: 2;
    color: #b4a7ca;
    font-size: .9rem;
    line-height: 1.7;
    flex: 1;
}

#tournaments .lb-tournament-prize {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.03em;
    color: #c8972a;
}

#tournaments .lb-tournament-prize span {
    font-size: .78rem;
    font-weight: 500;
    color: #8e7fa8;
    text-transform: uppercase;
    letter-spacing: .08em;
}

#tournaments .lb-timer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

#tournaments .lb-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 60px;
    padding: 8px;
    border-radius: 14px;
    background: rgba(17, 11, 28, .7);
    border: 1px solid rgba(255, 255, 255, .05);
    backdrop-filter: blur(6px);
}

#tournaments .lb-timer-num {
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

#tournaments .lb-timer-label {
    margin-top: 5px;
    font-size: .62rem;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8e7fa8;
}

#tournaments .lb-timer-sep {
    margin-top: -12px;
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .26);
}

#tournaments .lb-btn {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 52px;
    margin-top: auto;
    border-radius: 14px;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .01em;
    background: linear-gradient(135deg, #613225 0%, #8d4b35 100%);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 8px 20px rgba(97, 50, 37, .35);
}

#tournaments .lb-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 12px 28px rgba(97, 50, 37, .45);
}

@media (max-width: 980px) {
    #tournaments .lb-tournaments-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px 14px;
    }

    #tournaments .lb-tournaments-grid::-webkit-scrollbar {
        display: none;
    }

    #tournaments .lb-tournaments-grid {
        scrollbar-width: none;
    }

    #tournaments .lb-tournament-card {
        flex: 0 0 82%;
        min-width: 82%;
        scroll-snap-align: center;
    }
}

@media (max-width: 640px) {
    #tournaments {
        padding: 42px 0;
    }

    #tournaments .lb-section-title {
        font-size: 1.55rem;
    }

    #tournaments .lb-section-sub {
        font-size: .88rem;
        margin-bottom: 18px;
    }

    #tournaments .lb-divider {
        margin-bottom: 26px;
    }

    #tournaments .lb-tournament-card {
        flex-basis: 90%;
        min-width: 90%;
        padding: 22px 18px;
        border-radius: 18px;
        gap: 16px;
    }

    #tournaments .lb-tournament-name {
        font-size: 1.1rem;
    }

    #tournaments .lb-tournament-desc {
        font-size: .84rem;
        line-height: 1.6;
    }

    #tournaments .lb-tournament-prize {
        font-size: 1.6rem;
    }

    #tournaments .lb-timer {
        gap: 6px;
    }

    #tournaments .lb-timer-unit {
        min-width: 48px;
        min-height: 54px;
        padding: 6px;
        border-radius: 12px;
    }

    #tournaments .lb-timer-num {
        font-size: 1rem;
    }

    #tournaments .lb-btn {
        min-height: 48px;
        font-size: .86rem;
    }
}

@media (max-width: 420px) {
    #tournaments .lb-tournament-card {
        flex-basis: 94%;
        min-width: 94%;
        padding: 20px 16px;
    }

    #tournaments .lb-timer-unit {
        min-width: 44px;
    }

    #tournaments .lb-timer-label {
        font-size: .58rem;
    }
}