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

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

:root {
    --c-bg: #0E111A;
    --c-bg2: #141824;
    --c-bg3: #1a2035;
    --c-primary: #00B677;
    --c-primary-hover: #00d48b;
    --c-secondary: #0F6F53;
    --c-secondary-hover: #0e8f6a;
    --c-text: #e8eaf0;
    --c-text-muted: #8b95ad;
    --c-text-dim: #5c6680;
    --c-gold: #f0b429;
    --c-gold2: #ffd166;
    --c-border: #232b3e;
    --c-border2: #2a3450;
    --c-card: #161d30;
    --c-card2: #1c2540;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 22px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --shadow-green: 0 0 18px rgba(0, 182, 119, .22);
    --transition: .22s cubic-bezier(.4, 0, .2, 1);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased
}

a {
    color: var(--c-primary);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: var(--c-primary-hover)
}

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

ul, ol {
    padding-left: 1.4em
}

.x9f2a, .x7b3c, .x4d1e {
    display: none
}

.wp-block-placeholder, .elementor-placeholder {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden
}

.wc-ajax-placeholder {
    display: none !important
}

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

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

main {
    flex: 1
}

.lf-header {
    background: var(--c-bg);
    border-bottom: 1.5px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .35)
}

.lf-header__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto
}

.lf-header__logo {
    flex-shrink: 0
}

.lf-header__logo img {
    height: 42px;
    width: auto
}

.lf-header__nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.lf-header__nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--c-text-muted);
    padding: 7px 13px;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition)
}

.lf-header__nav a:hover, .lf-header__nav a.active {
    color: var(--c-text);
    background: var(--c-bg3)
}

.lf-header__nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: .75
}

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

.lf-header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--c-text-muted);
    background: var(--c-bg3);
    padding: 5px 11px;
    border-radius: 20px;
    white-space: nowrap
}

.lf-header__online span.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-primary);
    animation: pulse 1.8s infinite;
    flex-shrink: 0
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .55;
        transform: scale(1.25)
    }
}

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

.lf-burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--c-text);
    border-radius: 2px;
    transition: var(--transition)
}

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

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

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

.lf-mobile-nav {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: rgba(14, 17, 26, .98);
    backdrop-filter: blur(8px);
    z-index: 99;
    flex-direction: column;
    padding: 24px 20px;
    gap: 8px;
    overflow-y: auto
}

.lf-mobile-nav.open {
    display: flex
}

.lf-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text-muted);
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--c-border);
    transition: background var(--transition), color var(--transition), border-color var(--transition)
}

.lf-mobile-nav a:hover {
    color: var(--c-text);
    background: var(--c-bg3);
    border-color: var(--c-border2)
}

.lf-mobile-nav a svg {
    width: 18px;
    height: 18px;
    opacity: .75
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    line-height: 1;
    white-space: nowrap;
    text-decoration: none !important
}

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

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

.btn--primary {
    background: var(--c-primary);
    color: #0E111A
}

.btn--primary:hover {
    background: var(--c-primary-hover);
    box-shadow: var(--shadow-green);
    color: #0E111A
}

.btn--secondary {
    background: var(--c-secondary);
    color: #fff
}

.btn--secondary:hover {
    background: var(--c-secondary-hover);
    color: #fff
}

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

.btn--outline:hover {
    border-color: var(--c-primary);
    color: var(--c-primary)
}

.btn--gold {
    background: linear-gradient(135deg, #f0b429, #ffd166);
    color: #0E111A;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 10px
}

.btn--gold:hover {
    background: linear-gradient(135deg, #ffd166, #f0b429);
    box-shadow: 0 0 20px rgba(240, 180, 41, .35);
    color: #0E111A
}

.btn--lg {
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 12px
}

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

.lf-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0E111A
}

.lf-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/luckyelf-hero.png');
    background-size: cover;
    background-position: center top;
    opacity: .35;
    z-index: 0
}

.lf-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 17, 26, .92) 0%, rgba(14, 17, 26, .6) 60%, rgba(14, 17, 26, .85) 100%);
    z-index: 1
}

.lf-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 48px
}

.lf-hero__content {
    flex: 1;
    max-width: 560px
}

.lf-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 182, 119, .12);
    border: 1.5px solid rgba(0, 182, 119, .3);
    color: var(--c-primary);
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.lf-hero__title {
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #fff;
    text-wrap: balance
}

.lf-hero__title span {
    color: var(--c-primary)
}

.lf-hero__subtitle {
    font-size: 16px;
    color: var(--c-text-muted);
    margin-bottom: 28px;
    line-height: 1.65
}

.lf-hero__promo {
    background: var(--c-card);
    border: 1.5px solid var(--c-border2);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    margin-bottom: 28px
}

.lf-hero__promo-label {
    font-size: 11.5px;
    color: var(--c-text-dim);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    margin-bottom: 8px
}

.lf-hero__promo-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--c-bg3);
    border: 1.5px dashed var(--c-primary);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: border-color var(--transition)
}

.lf-hero__promo-code:hover {
    border-color: var(--c-primary-hover)
}

.lf-hero__promo-code span {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-gold);
    letter-spacing: .1em
}

.lf-hero__promo-copy {
    font-size: 11.5px;
    color: var(--c-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px
}

.lf-hero__promo-desc {
    font-size: 13px;
    color: var(--c-text-muted)
}

.lf-hero__promo-desc strong {
    color: var(--c-gold);
    font-weight: 700
}

.lf-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.lf-hero__image {
    flex-shrink: 0;
    width: 340px;
    display: flex;
    align-items: center;
    justify-content: center
}

.lf-hero__image img {
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 40px rgba(0, 182, 119, .18), var(--shadow)
}

.lf-section {
    padding: 64px 0
}

.lf-section--alt {
    background: var(--c-bg2)
}

.lf-section__header {
    text-align: center;
    margin-bottom: 40px
}

.lf-section__tag {
    display: inline-block;
    background: rgba(0, 182, 119, .1);
    color: var(--c-primary);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px
}

.lf-section__title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-wrap: balance
}

.lf-section__sub {
    font-size: 15px;
    color: var(--c-text-muted);
    max-width: 560px;
    margin: 0 auto
}

.lf-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center
}

.lf-feature-card {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    flex: 1 1 220px;
    max-width: 280px;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition)
}

.lf-feature-card:hover {
    border-color: var(--c-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-green)
}

.lf-feature-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(0, 182, 119, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1.5px solid rgba(0, 182, 119, .2)
}

.lf-feature-card__icon svg {
    width: 26px;
    height: 26px;
    color: var(--c-primary)
}

.lf-feature-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

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

.lf-mirror-block {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    overflow: hidden
}

.lf-mirror-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px
}

.lf-mirror-meta__updated {
    font-size: 12.5px;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 7px
}

.lf-mirror-meta__updated span.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-primary);
    flex-shrink: 0
}

.lf-mirror-table-wrap {
    overflow-x: auto
}

table.lf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 520px
}

table.lf-table th {
    background: var(--c-bg3);
    color: var(--c-text-muted);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1.5px solid var(--c-border2)
}

table.lf-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text);
    text-align: left;
    vertical-align: middle
}

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

table.lf-table tbody tr:hover td {
    background: var(--c-bg3)
}

.lf-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px
}

.lf-status--active {
    background: rgba(0, 182, 119, .12);
    color: var(--c-primary);
    border: 1px solid rgba(0, 182, 119, .3)
}

.lf-status--check {
    background: rgba(240, 180, 41, .1);
    color: var(--c-gold);
    border: 1px solid rgba(240, 180, 41, .25)
}

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

.lf-tournament-card {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    flex: 1 1 260px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden
}

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

.lf-tournament-card:hover {
    border-color: var(--c-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green)
}

.lf-tournament-card__name {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.lf-tournament-card__desc {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 16px;
    line-height: 1.6
}

.lf-tournament-card__prize {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-gold);
    margin-bottom: 12px
}

.lf-tournament-card__timer {
    font-size: 12px;
    color: var(--c-text-dim);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px
}

.lf-tournament-card__timer svg {
    width: 14px;
    height: 14px;
    color: var(--c-text-dim)
}

.timer-val {
    font-weight: 700;
    color: var(--c-text-muted)
}

.lf-games {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center
}

.lf-game-card {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    width: 175px;
    flex-shrink: 0;
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    text-align: center
}

.lf-game-card:hover {
    border-color: var(--c-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-green)
}

.lf-game-card__img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.lf-game-card__body {
    padding: 14px 12px
}

.lf-game-card__name {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.lf-game-card__provider {
    font-size: 11px;
    color: var(--c-text-dim);
    margin-bottom: 12px
}

.lf-slot-machine {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow)
}

.lf-slot-machine__title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px
}

.lf-slot-machine__sub {
    font-size: 13.5px;
    color: var(--c-text-muted);
    margin-bottom: 28px
}

.lf-reels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px
}

.lf-reel {
    width: 82px;
    height: 100px;
    background: var(--c-bg3);
    border: 2px solid var(--c-border2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    overflow: hidden;
    transition: border-color var(--transition)
}

.lf-reel.spinning {
    border-color: var(--c-primary);
    animation: reelBorder .3s infinite alternate
}

@keyframes reelBorder {
    from {
        box-shadow: 0 0 8px rgba(0, 182, 119, .2)
    }
    to {
        box-shadow: 0 0 20px rgba(0, 182, 119, .5)
    }
}

.lf-slot-result {
    min-height: 56px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.lf-slot-result__win {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-gold);
    animation: fadeInUp .4s ease
}

.lf-slot-result__lose {
    font-size: 14px;
    color: var(--c-text-muted)
}

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

.lf-content-block {
    max-width: 780px;
    margin: 0 auto
}

.lf-content-block h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #fff;
    margin: 2em 0 .75em;
    line-height: 1.3
}

.lf-content-block h3 {
    font-size: clamp(17px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--c-text);
    margin: 1.7em 0 .6em
}

.lf-content-block h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--c-text);
    margin: 1.4em 0 .5em
}

.lf-content-block p {
    font-size: 15.5px;
    color: var(--c-text-muted);
    margin-bottom: 1.1em;
    line-height: 1.75
}

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

.lf-content-block em {
    color: var(--c-gold);
    font-style: italic
}

.lf-content-block ul, .lf-content-block ol {
    margin: .8em 0 1.2em 1.5em;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.lf-content-block li {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.65
}

.lf-content-block ul li::marker {
    color: var(--c-primary)
}

.lf-content-block ol li::marker {
    color: var(--c-primary);
    font-weight: 700
}

.lf-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 14px
}

.lf-content-block table th {
    background: var(--c-bg3);
    color: var(--c-text-muted);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1.5px solid var(--c-border2)
}

.lf-content-block table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text-muted);
    text-align: left
}

.lf-content-block table tr:hover td {
    background: var(--c-bg3)
}

.lf-content-block blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 12px 20px;
    margin: 1.5em 0;
    background: var(--c-bg3);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--c-text-muted)
}

.lf-content-block a {
    color: var(--c-primary);
    text-decoration: underline;
    text-underline-offset: 3px
}

.lf-content-block a:hover {
    color: var(--c-primary-hover)
}

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

.lf-content-block img {
    border-radius: 10px;
    margin: 1em 0
}

.lf-author {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-bottom: 36px
}

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

.lf-author__info {
    flex: 1
}

.lf-author__name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px
}

.lf-author__role {
    font-size: 12.5px;
    color: var(--c-primary);
    font-weight: 600;
    margin-bottom: 8px
}

.lf-author__bio {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 8px
}

.lf-author__links {
    display: flex;
    gap: 10px
}

.lf-author__links a {
    font-size: 12px;
    color: var(--c-text-dim);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition)
}

.lf-author__links a:hover {
    color: var(--c-primary)
}

.lf-comments {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px
}

.lf-comment {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 20px
}

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

.lf-comment__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--c-primary);
    flex-shrink: 0;
    border: 1.5px solid var(--c-border2)
}

.lf-comment__meta {
    flex: 1
}

.lf-comment__name {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.lf-comment__date {
    font-size: 12px;
    color: var(--c-text-dim)
}

.lf-comment__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px
}

.lf-comment__stars svg {
    width: 15px;
    height: 15px;
    fill: var(--c-gold);
    color: var(--c-gold)
}

.lf-comment__text {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.65
}

.lf-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 540px
}

.lf-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.lf-form__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-text-muted);
    letter-spacing: .03em
}

.lf-form__input, .lf-form__textarea, .lf-form__select {
    background: var(--c-bg3);
    border: 1.5px solid var(--c-border2);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: var(--c-text);
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none
}

.lf-form__input:focus, .lf-form__textarea:focus, .lf-form__select:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(0, 182, 119, .12)
}

.lf-form__textarea {
    resize: vertical;
    min-height: 110px
}

.lf-form__select option {
    background: var(--c-bg3)
}

.lf-form__rating {
    display: flex;
    gap: 6px
}

.lf-form__rating input {
    display: none
}

.lf-form__rating label {
    cursor: pointer;
    font-size: 24px;
    color: var(--c-border2);
    transition: color var(--transition)
}

.lf-form__rating label:hover, .lf-form__rating label:hover ~ label, .lf-form__rating input:checked ~ label {
    color: var(--c-gold)
}

.lf-form__rating:hover label {
    color: var(--c-gold)
}

.lf-form__rating label:hover ~ label {
    color: var(--c-border2)
}

.lf-form__note {
    font-size: 12px;
    color: var(--c-text-dim)
}

.lf-form__success {
    background: rgba(0, 182, 119, .1);
    border: 1.5px solid rgba(0, 182, 119, .3);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--c-primary);
    font-weight: 600;
    display: none
}

.lf-form__success.show {
    display: block
}

.lf-footer {
    background: var(--c-bg);
    border-top: 1.5px solid var(--c-border);
    padding: 52px 0 28px
}

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

.lf-footer__top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1.5px solid var(--c-border)
}

.lf-footer__brand {
    flex: 1;
    min-width: 220px;
    max-width: 320px
}

.lf-footer__brand img {
    height: 38px;
    margin-bottom: 14px
}

.lf-footer__tagline {
    font-size: 13.5px;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 16px
}

.lf-footer__flag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--c-text-dim);
    margin-bottom: 14px
}

.lf-footer__socials {
    display: flex;
    gap: 8px
}

.lf-footer__socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--c-bg3);
    border: 1.5px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: background var(--transition), color var(--transition), border-color var(--transition)
}

.lf-footer__socials a:hover {
    background: var(--c-primary);
    color: #0E111A;
    border-color: var(--c-primary)
}

.lf-footer__socials a svg {
    width: 17px;
    height: 17px
}

.lf-footer__cols {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    flex: 2
}

.lf-footer__col {
    flex: 1;
    min-width: 140px
}

.lf-footer__col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-text-dim);
    margin-bottom: 14px
}

.lf-footer__col a {
    display: block;
    font-size: 13.5px;
    color: var(--c-text-muted);
    margin-bottom: 9px;
    transition: color var(--transition)
}

.lf-footer__col a:hover {
    color: var(--c-primary)
}

.lf-footer__bottom {
    padding-top: 24px
}

.lf-footer__logos-row {
    margin-bottom: 18px
}

.lf-footer__logos-label {
    font-size: 11.5px;
    color: var(--c-text-dim);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 10px
}

.lf-footer__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center
}

.lf-footer__logo-badge {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: 7px;
    padding: 6px 12px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.lf-footer__logo-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.lf-footer__legal {
    border-top: 1.5px solid var(--c-border);
    padding-top: 20px;
    margin-top: 20px
}

.lf-footer__copyright {
    font-size: 12.5px;
    color: var(--c-text-dim);
    margin-bottom: 10px
}

.lf-footer__disclaimer {
    font-size: 11.5px;
    color: var(--c-text-dim);
    line-height: 1.7;
    max-width: 860px
}

.lf-footer__disclaimer a {
    color: var(--c-secondary)
}

.lf-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(135deg, #0c3a27, #0E111A);
    border-top: 2px solid var(--c-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 24px rgba(0, 182, 119, .18)
}

.lf-widget__text {
    flex: 1;
    min-width: 0
}

.lf-widget__label {
    font-size: 11px;
    color: var(--c-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 2px
}

.lf-widget__offer {
    font-size: 14.5px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.lf-widget__code {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 182, 119, .1);
    border: 1.5px dashed rgba(0, 182, 119, .4);
    border-radius: 7px;
    padding: 6px 12px;
    cursor: pointer;
    transition: border-color var(--transition)
}

.lf-widget__code span {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--c-gold);
    letter-spacing: .06em
}

.lf-widget__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--c-text-dim);
    padding: 4px;
    transition: color var(--transition);
    flex-shrink: 0
}

.lf-widget__close:hover {
    color: var(--c-text)
}

.lf-widget__close svg {
    width: 18px;
    height: 18px
}

.lf-info-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px 20px
}

.lf-info-page h1 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.2
}

.lf-info-page h2 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: #fff;
    margin: 2em 0 .7em
}

.lf-info-page h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-text);
    margin: 1.5em 0 .5em
}

.lf-info-page p {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.75;
    margin-bottom: 1em
}

.lf-info-page ul, .lf-info-page ol {
    margin: .7em 0 1.2em 1.5em;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.lf-info-page li {
    font-size: 14.5px;
    color: var(--c-text-muted);
    line-height: 1.65
}

.lf-info-page ul li::marker {
    color: var(--c-primary)
}

.lf-info-page a {
    color: var(--c-primary)
}

.lf-info-page a:hover {
    color: var(--c-primary-hover);
    text-decoration: underline
}

.lf-info-page strong {
    color: var(--c-text)
}

.lf-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--c-text-dim);
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap
}

.lf-breadcrumb a {
    color: var(--c-text-dim);
    transition: color var(--transition)
}

.lf-breadcrumb a:hover {
    color: var(--c-primary)
}

.lf-breadcrumb span {
    color: var(--c-text-dim)
}

.lf-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 780px;
    margin: 0 auto
}

.lf-faq-item {
    background: var(--c-card);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition)
}

.lf-faq-item.open {
    border-color: var(--c-primary)
}

.lf-faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    user-select: none
}

.lf-faq-item__q svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--c-text-muted);
    transition: transform var(--transition)
}

.lf-faq-item.open .lf-faq-item__q svg {
    transform: rotate(180deg);
    color: var(--c-primary)
}

.lf-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4, 0, .2, 1)
}

.lf-faq-item.open .lf-faq-item__a {
    max-height: 400px
}

.lf-faq-item__a-inner {
    padding: 0 20px 18px;
    font-size: 14.5px;
    color: var(--c-text-muted);
    line-height: 1.7
}

body.widget-open {
    padding-bottom: 68px
}

@media (max-width: 1024px) {
    .lf-hero__image {
        width: 260px
    }

    .lf-tournaments {
        gap: 16px
    }

    .lf-tournament-card {
        flex: 1 1 220px
    }
}

@media (max-width: 860px) {
    .lf-header__nav {
        display: none
    }

    .lf-burger {
        display: flex
    }

    .lf-hero__inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px
    }

    .lf-hero__content {
        max-width: 100%
    }

    .lf-hero__image {
        width: 100%;
        max-width: 340px
    }

    .lf-hero__buttons {
        justify-content: center
    }

    .lf-footer__top {
        flex-direction: column
    }

    .lf-footer__brand {
        max-width: 100%
    }
}

@media (max-width: 640px) {
    .lf-features {
        gap: 14px
    }

    .lf-feature-card {
        flex: 1 1 180px
    }

    .lf-games {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none
    }

    .lf-games::-webkit-scrollbar {
        display: none
    }

    .lf-tournaments {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none
    }

    .lf-tournaments::-webkit-scrollbar {
        display: none
    }

    .lf-game-card {
        flex-shrink: 0;
        width: 155px
    }

    .lf-tournament-card {
        flex-shrink: 0;
        flex: 0 0 260px
    }

    .lf-slot-machine {
        padding: 24px 16px
    }

    .lf-reels {
        gap: 8px
    }

    .lf-reel {
        width: 72px;
        height: 88px;
        font-size: 36px
    }

    .lf-widget {
        flex-wrap: wrap
    }

    .lf-widget__code {
        display: none
    }

    .lf-section {
        padding: 44px 0
    }

    .lf-footer__cols {
        gap: 24px
    }
}

@media (max-width: 400px) {
    .lf-header__online {
        display: none
    }

    .lf-reel {
        width: 64px;
        height: 78px;
        font-size: 30px
    }
}

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

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .5s ease, transform .5s ease
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0)
}

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

#wp-toolbar {
    display: none !important
}

.wp-nonce-field {
    display: none
}

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

.wpcf7-not-valid-tip {
    color: #e05;
    font-size: 12px
}

.wpcf7-response-output {
    border: none !important
}

.elementor-widget-container {
    all: unset
}

.e-n-tabs-content {
    all: unset
}

.post-meta, .entry-meta {
    display: none
}

.lf-notice {
    background: rgba(0, 182, 119, .08);
    border: 1.5px solid rgba(0, 182, 119, .2);
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 24px;
    line-height: 1.6
}

.lf-notice strong {
    color: var(--c-primary)
}

.lf-tag {
    display: inline-block;
    background: var(--c-bg3);
    border: 1.5px solid var(--c-border);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    color: var(--c-text-muted);
    margin: 2px
}

.xbfcsf {
    width: 100%;
    max-width: 1180px;
    margin: 56px auto;
    padding: 42px;
    background: linear-gradient(180deg, var(--c-card), var(--c-card2));
    border: 1.5px solid var(--c-border2);
    border-radius: 24px;
    box-shadow: 0 18px 54px rgba(0, 0, 0, .38);
    overflow: hidden;
}

.xbfcsf h2 {
    margin: 42px 0 18px;
    color: #fff;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}

.xbfcsf h3 {
    margin: 30px 0 14px;
    color: var(--c-primary);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}

.xbfcsf p {
    margin: 0 0 18px;
    color: var(--c-text-muted);
    font-size: 16px;
    line-height: 1.85;
}

.xbfcsf strong,
.xbfcsf b {
    color: #fff;
    font-weight: 800;
}

.xbfcsf a {
    color: var(--c-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
}

.xbfcsf ul,
.xbfcsf ol {
    margin: 20px 0 24px 22px;
    padding-left: 18px;
}

.xbfcsf li {
    margin-bottom: 10px;
    color: var(--c-text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.xbfcsf blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    background: rgba(0, 182, 119, .08);
    border-left: 5px solid var(--c-primary);
    border-radius: 0 16px 16px 0;
    color: var(--c-text);
    font-style: italic;
}

.xbfcsf table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 30px 0;
    background: var(--c-card);
    border: 1.5px solid var(--c-border2);
    border-radius: 16px;
    overflow: hidden;
}

.xbfcsf th {
    padding: 15px 18px;
    background: var(--c-bg3);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 1.5px solid var(--c-border2);
}

.xbfcsf td {
    padding: 15px 18px;
    color: var(--c-text-muted);
    font-size: 15px;
    line-height: 1.55;
    border-bottom: 1px solid var(--c-border);
    vertical-align: top;
}

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

.xbfcsf tr:hover td {
    background: rgba(0, 182, 119, .05);
}

.xbfcsf img,
.xbfcsf iframe,
.xbfcsf video {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {

    .xbfcsf {
        width: 100% !important;
        max-width: 100% !important;
        margin: 28px auto !important;
        padding: 22px 16px !important;
        border-radius: 18px !important;
        overflow: hidden !important;
    }

    .xbfcsf h2 {
        margin: 32px 0 16px !important;
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .xbfcsf h3 {
        margin: 24px 0 12px !important;
        font-size: 20px !important;
        line-height: 1.35 !important;
    }

    .xbfcsf p,
    .xbfcsf li {
        font-size: 15px !important;
        line-height: 1.75 !important;
    }

    .xbfcsf ul,
    .xbfcsf ol {
        margin: 18px 0 22px 18px !important;
        padding-left: 16px !important;
    }

    .xbfcsf blockquote {
        margin: 22px 0 !important;
        padding: 16px !important;
        border-left-width: 4px !important;
        border-radius: 0 12px 12px 0 !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .xbfcsf table {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 14px !important;
    }

    .xbfcsf thead,
    .xbfcsf tbody {
        display: table !important;
        width: 720px !important;
        min-width: 720px !important;
    }

    .xbfcsf tr {
        display: table-row !important;
    }

    .xbfcsf th,
    .xbfcsf td {
        display: table-cell !important;
        min-width: 150px !important;
        padding: 12px 14px !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
        white-space: nowrap !important;
    }

    .xbfcsf th:first-child,
    .xbfcsf td:first-child {
        position: sticky !important;
        left: 0 !important;
        z-index: 2 !important;
        background: var(--c-bg3) !important;
    }

    .xbfcsf table::-webkit-scrollbar {
        height: 8px !important;
    }

    .xbfcsf table::-webkit-scrollbar-track {
        background: var(--c-bg2) !important;
    }

    .xbfcsf table::-webkit-scrollbar-thumb {
        background: var(--c-primary) !important;
        border-radius: 999px !important;
    }
}

@media (max-width: 480px) {

    .xbfcsf {
        margin: 22px auto !important;
        padding: 18px 12px !important;
        border-radius: 16px !important;
    }

    .xbfcsf h2 {
        font-size: 21px !important;
    }

    .xbfcsf h3 {
        font-size: 18px !important;
    }

    .xbfcsf p,
    .xbfcsf li {
        font-size: 14px !important;
    }

    .xbfcsf thead,
    .xbfcsf tbody {
        width: 660px !important;
        min-width: 660px !important;
    }

    .xbfcsf th,
    .xbfcsf td {
        min-width: 140px !important;
        padding: 10px 12px !important;
        font-size: 12px !important;
    }
}