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

:root {
    --clr-bg: #15161a;
    --clr-header: #16171b;
    --clr-footer: #16171b;
    --clr-primary: #13ca90;
    --clr-secondary: #3d18a4;
    --clr-text: #e8eaf0;
    --clr-text-muted: #8a8fa8;
    --clr-border: #252633;
    --clr-card: #1c1d24;
    --clr-card-hover: #22232e;
    --clr-input: #1e1f28;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 32px rgba(19, 202, 144, 0.15);
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
    --font: 'Satoshi', 'Helvetica Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--clr-bg)
}

body {
    font-family: var(--font);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

a:hover {
    color: #0fe3a0
}

ul {
    list-style: none
}

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

.tl-wrap {
    min-height: 100vh;
    display: grid;
    grid-template-rows:auto 1fr auto;
    position: relative
}

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

.tl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .93rem;
    letter-spacing: .02em;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none
}

.tl-btn--primary {
    background: linear-gradient(135deg, #13ca90 0%, #0fb87d 100%);
    color: #0d1a14;
    box-shadow: 0 4px 16px rgba(19, 202, 144, .35)
}

.tl-btn--primary:hover {
    background: linear-gradient(135deg, #0fe3a0 0%, #13ca90 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(19, 202, 144, .5);
    color: #0d1a14
}

.tl-btn--secondary {
    background: linear-gradient(135deg, #3d18a4 0%, #5322c8 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(61, 24, 164, .35)
}

.tl-btn--secondary:hover {
    background: linear-gradient(135deg, #5322c8 0%, #6b35e0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(61, 24, 164, .5)
}

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

.tl-btn--outline:hover {
    background: rgba(19, 202, 144, .1);
    transform: translateY(-2px)
}

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

.tl-btn--sm {
    padding: 7px 16px;
    font-size: .82rem
}

.tl-section {
    padding: 72px 0
}

.tl-section--sm {
    padding: 48px 0
}

.tl-section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 8px;
    line-height: 1.25
}

.tl-section-sub {
    color: var(--clr-text-muted);
    font-size: .98rem;
    margin-bottom: 40px
}

.tl-section-head {
    margin-bottom: 40px
}

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

.tl-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .4)
}

.tl-header__inner {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 20px;
    height: 68px
}

.tl-header__logo {
    flex-shrink: 0
}

.tl-header__logo img {
    height: 40px;
    width: auto;
    object-fit: contain
}

.tl-header__logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #13ca90, #3d18a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

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

.tl-nav__item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    font-size: .88rem;
    font-weight: 500;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap
}

.tl-nav__item:hover, .tl-nav__item.active {
    color: var(--clr-text);
    background: rgba(255, 255, 255, .06)
}

.tl-nav__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

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

.tl-header__meta {
    display: flex;
    align-items: center;
    gap: 12px
}

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

.tl-online-counter__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-primary);
    animation: tl-pulse 2s infinite;
    flex-shrink: 0
}

@keyframes tl-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(19, 202, 144, .6)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(19, 202, 144, 0)
    }
}

.tl-lang-select {
    position: relative
}

.tl-lang-select__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    font-size: .82rem;
    cursor: pointer;
    transition: all var(--transition)
}

.tl-lang-select__btn:hover {
    background: rgba(255, 255, 255, .1)
}

.tl-lang-select__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    min-width: 160px;
    padding: 6px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 200
}

.tl-lang-select__dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.tl-lang-select__option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: .85rem;
    transition: background var(--transition)
}

.tl-lang-select__option:hover {
    background: rgba(255, 255, 255, .06)
}

.tl-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition)
}

.tl-burger:hover {
    background: rgba(255, 255, 255, .06)
}

.tl-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all var(--transition)
}

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

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

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

.tl-mobile-menu {
    display: none;
    position: fixed;
    inset: 68px 0 0;
    background: var(--clr-header);
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease
}

.tl-mobile-menu.open {
    transform: translateX(0)
}

.tl-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px
}

.tl-mobile-menu__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    font-size: .95rem;
    font-weight: 500;
    transition: all var(--transition)
}

.tl-mobile-menu__item:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--clr-text)
}

.tl-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0
}

.tl-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/img/hero-trl.png') center/cover no-repeat;
    filter: brightness(.45)
}

.tl-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 22, 26, .95) 0%, rgba(61, 24, 164, .2) 50%, rgba(19, 202, 144, .1) 100%)
}

.tl-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:1fr auto;
    gap: 48px;
    align-items: center;
    padding: 80px 0 64px;
    width: 100%
}

.tl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 202, 144, .15);
    border: 1px solid rgba(19, 202, 144, .3);
    color: var(--clr-primary);
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.tl-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 60%, #13ca90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.tl-hero__sub {
    color: rgba(232, 234, 240, .75);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 520px
}

.tl-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.tl-hero__bonus-card {
    background: linear-gradient(145deg, rgba(61, 24, 164, .4), rgba(19, 202, 144, .15));
    border: 1px solid rgba(19, 202, 144, .25);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    min-width: 260px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 48px rgba(19, 202, 144, .15), var(--shadow-card)
}

.tl-hero__bonus-icon {
    font-size: 2.2rem;
    margin-bottom: 12px
}

.tl-hero__bonus-label {
    font-size: .78rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 6px
}

.tl-hero__bonus-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 4px
}

.tl-hero__bonus-spins {
    font-size: .9rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px
}

.tl-hero__bonus-disclaimer {
    font-size: .72rem;
    color: rgba(138, 143, 168, .7);
    margin-top: 12px;
    line-height: 1.4
}

.tl-info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card)
}

.tl-info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-width: 520px
}

.tl-info-table tr {
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--transition)
}

.tl-info-table tr:last-child {
    border-bottom: none
}

.tl-info-table tr:hover {
    background: var(--clr-card-hover)
}

.tl-info-table td {
    padding: 14px 20px;
    font-size: .9rem;
    vertical-align: middle;
    text-align: left
}

.tl-info-table td:first-child {
    color: var(--clr-text-muted);
    white-space: nowrap;
    width: 1%
}

.tl-info-table td:last-child {
    color: var(--clr-text);
    font-weight: 500
}

.tl-info-table__param {
    display: flex;
    align-items: center;
    gap: 10px
}

.tl-info-table__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(61, 24, 164, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem
}

.tl-jackpot-section {
    background: linear-gradient(135deg, rgba(61, 24, 164, .12), rgba(19, 202, 144, .08));
    border-radius: var(--radius-xl);
    padding: 48px;
    margin: 0 20px;
    border: 1px solid rgba(19, 202, 144, .12);
    position: relative;
    overflow: hidden
}

.tl-jackpot-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(19, 202, 144, .1) 0%, transparent 70%);
    pointer-events: none
}

.tl-jackpot__grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px
}

.tl-jackpot-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden
}

.tl-jackpot-card:hover {
    border-color: rgba(19, 202, 144, .4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow)
}

.tl-jackpot-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-primary), transparent)
}

.tl-jackpot-card__label {
    font-size: .75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px
}

.tl-jackpot-card__amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums
}

.tl-jackpot-card__game {
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-top: 6px
}

.tl-jackpot-card__badge {
    display: inline-block;
    background: rgba(19, 202, 144, .15);
    color: var(--clr-primary);
    font-size: .68rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: .06em
}

.tl-bonus-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.tl-bonus-card {
    background: linear-gradient(145deg, var(--clr-card), #20213a);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.tl-bonus-card:hover {
    transform: translateY(-5px);
    border-color: rgba(19, 202, 144, .35);
    box-shadow: var(--shadow-glow)
}

.tl-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-secondary), var(--clr-primary))
}

.tl-bonus-card--featured::before {
    background: linear-gradient(90deg, var(--clr-primary), #0fb87d)
}

.tl-bonus-card__tag {
    display: inline-block;
    background: rgba(61, 24, 164, .3);
    color: #a78bff;
    font-size: .72rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase
}

.tl-bonus-card--featured .tl-bonus-card__tag {
    background: rgba(19, 202, 144, .2);
    color: var(--clr-primary)
}

.tl-bonus-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px
}

.tl-bonus-card__amount {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--clr-primary);
    margin-bottom: 8px;
    line-height: 1
}

.tl-bonus-card__desc {
    color: var(--clr-text-muted);
    font-size: .87rem;
    line-height: 1.55;
    flex: 1;
    margin-bottom: 20px
}

.tl-bonus-card__terms {
    font-size: .75rem;
    color: rgba(138, 143, 168, .6);
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--clr-border)
}

.tl-bonus-slider-wrap {
    position: relative
}

.tl-bonus-slider {
    display: none;
    overflow: hidden
}

.tl-bonus-slide {
    flex: 0 0 85%;
    max-width: 85%;
    padding: 0 8px
}

.tl-wheel-section {
    background: var(--clr-card);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
    border: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden
}

.tl-wheel-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(61, 24, 164, .15) 0%, transparent 60%);
    pointer-events: none
}

.tl-wheel-wrap {
    position: relative;
    display: inline-block;
    margin: 32px auto
}

.tl-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(19, 202, 144, .25), 0 0 60px rgba(19, 202, 144, .15), 0 12px 60px rgba(0, 0, 0, .6);
    display: block;
    margin: 0 auto
}

.tl-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-primary);
    filter: drop-shadow(0 2px 8px rgba(19, 202, 144, .6));
    z-index: 10
}

.tl-wheel-spin-btn {
    margin-top: 28px;
    padding: 14px 48px;
    font-size: 1.05rem
}

.tl-wheel-result {
    margin-top: 24px;
    padding: 20px 28px;
    background: rgba(19, 202, 144, .1);
    border: 1px solid rgba(19, 202, 144, .3);
    border-radius: var(--radius-lg);
    display: none
}

.tl-wheel-result.show {
    display: block;
    animation: tl-fadeIn .4s ease
}

.tl-wheel-result__text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 12px
}

.tl-wheel-result--loss {
    background: rgba(255, 255, 255, .05);
    border-color: var(--clr-border)
}

.tl-wheel-result--loss .tl-wheel-result__text {
    color: var(--clr-text-muted)
}

.tl-review-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 40px
}

.tl-review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--clr-border)
}

.tl-review-author__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-primary)
}

.tl-review-author__name {
    font-weight: 700;
    font-size: .98rem;
    margin-bottom: 3px
}

.tl-review-author__title {
    font-size: .82rem;
    color: var(--clr-text-muted)
}

.tl-review-author__links {
    display: flex;
    gap: 10px;
    margin-top: 6px
}

.tl-review-author__link {
    font-size: .78rem;
    color: var(--clr-secondary);
    text-decoration: none;
    transition: color var(--transition)
}

.tl-review-author__link:hover {
    color: var(--clr-primary)
}

.tl-review-content .tl-content-area {
    font-size: .95rem;
    line-height: 1.75;
    color: rgba(232, 234, 240, .88)
}

.tl-content-area h1, .tl-content-area h2, .tl-content-area h3, .tl-content-area h4 {
    color: var(--clr-text);
    font-weight: 700;
    margin: 1.8em 0 .7em;
    line-height: 1.25
}

.tl-content-area h2 {
    font-size: 1.4rem;
    padding-bottom: .5em;
    border-bottom: 1px solid var(--clr-border)
}

.tl-content-area h3 {
    font-size: 1.15rem
}

.tl-content-area p {
    margin-bottom: 1.1em
}

.tl-content-area a {
    color: var(--clr-primary);
    text-decoration: underline;
    text-decoration-color: rgba(19, 202, 144, .4)
}

.tl-content-area a:hover {
    color: #0fe3a0
}

.tl-content-area ul, .tl-content-area ol {
    padding-left: 1.4em;
    margin-bottom: 1.1em
}

.tl-content-area li {
    margin-bottom: .4em;
    position: relative
}

.tl-content-area ul li {
    list-style: none;
    padding-left: 1.2em
}

.tl-content-area ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-primary)
}

.tl-content-area ol {
    list-style: decimal
}

.tl-content-area blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 20px;
    margin: 1.5em 0;
    background: rgba(19, 202, 144, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: rgba(232, 234, 240, .8)
}

.tl-content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    border-radius: var(--radius-sm);
    overflow: hidden
}

.tl-content-area table th {
    background: rgba(61, 24, 164, .25);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    font-size: .88rem;
    border: 1px solid var(--clr-border)
}

.tl-content-area table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    font-size: .88rem;
    vertical-align: top
}

.tl-content-area table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02)
}

.tl-content-area img {
    border-radius: var(--radius-md);
    margin: 1em 0
}

.tl-content-area strong {
    color: var(--clr-text);
    font-weight: 700
}

.tl-content-area em {
    font-style: italic;
    color: rgba(232, 234, 240, .85)
}

.tl-content-area code {
    background: rgba(61, 24, 164, .2);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .87em;
    font-family: monospace
}

.tl-content-area hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 2em 0
}

.tl-steps-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px
}

.tl-steps-table tr td {
    background: var(--clr-card);
    padding: 16px 20px;
    vertical-align: top;
    text-align: left
}

.tl-steps-table tr td:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    width: 60px
}

.tl-steps-table tr td:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0
}

.tl-steps-table tr:hover td {
    background: var(--clr-card-hover)
}

.tl-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
    flex-shrink: 0
}

.tl-step-title {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 4px
}

.tl-step-desc {
    color: var(--clr-text-muted);
    font-size: .86rem;
    line-height: 1.5
}

.tl-steps-wrap {
    overflow-x: auto
}

.tl-steps-inner {
    min-width: 500px
}

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

.tl-security-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px
}

.tl-security-card:hover {
    border-color: rgba(19, 202, 144, .3);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3)
}

.tl-security-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(61, 24, 164, .35), rgba(19, 202, 144, .15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0
}

.tl-security-card__title {
    font-weight: 700;
    font-size: .95rem
}

.tl-security-card__desc {
    color: var(--clr-text-muted);
    font-size: .85rem;
    line-height: 1.55
}

.tl-security-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px
}

.tl-security-badge__item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(19, 202, 144, .1);
    border: 1px solid rgba(19, 202, 144, .2);
    border-radius: 20px;
    font-size: .8rem;
    color: var(--clr-primary);
    font-weight: 600
}

.tl-reviews-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px
}

.tl-review-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition)
}

.tl-review-card:hover {
    border-color: rgba(19, 202, 144, .25);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3)
}

.tl-review-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px
}

.tl-review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-border);
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    flex-shrink: 0
}

.tl-review-card__name {
    font-weight: 700;
    font-size: .93rem
}

.tl-review-card__date {
    font-size: .76rem;
    color: var(--clr-text-muted)
}

.tl-review-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px
}

.tl-review-card__stars svg {
    color: #f5a623
}

.tl-review-card__text {
    font-size: .87rem;
    color: rgba(232, 234, 240, .8);
    line-height: 1.6
}

.tl-review-form-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 36px;
    margin-top: 16px
}

.tl-review-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px
}

.tl-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.tl-form-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

.tl-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.tl-form-label {
    font-size: .84rem;
    font-weight: 500;
    color: var(--clr-text-muted)
}

.tl-form-input, .tl-form-textarea {
    background: var(--clr-input);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: var(--clr-text);
    font-family: var(--font);
    font-size: .92rem;
    transition: border-color var(--transition);
    width: 100%
}

.tl-form-input:focus, .tl-form-textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(19, 202, 144, .12)
}

.tl-form-input::placeholder, .tl-form-textarea::placeholder {
    color: rgba(138, 143, 168, .5)
}

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

.tl-form-success {
    background: rgba(19, 202, 144, .1);
    border: 1px solid rgba(19, 202, 144, .3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--clr-primary);
    font-weight: 600;
    display: none;
    font-size: .93rem
}

.tl-form-success.show {
    display: block;
    animation: tl-fadeIn .3s ease
}

.tl-footer {
    background: var(--clr-footer);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 56px 0 24px
}

.tl-footer__top {
    display: grid;
    grid-template-columns:280px 1fr;
    gap: 48px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--clr-border)
}

.tl-footer__brand .tl-footer__logo {
    margin-bottom: 16px
}

.tl-footer__brand .tl-footer__logo img {
    height: 36px;
    width: auto
}

.tl-footer__desc {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 20px
}

.tl-footer__social {
    display: flex;
    gap: 10px
}

.tl-footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--clr-text-muted)
}

.tl-footer__social-link:hover {
    background: rgba(19, 202, 144, .15);
    border-color: rgba(19, 202, 144, .3);
    color: var(--clr-primary)
}

.tl-footer__nav-cols {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.tl-footer__nav-col h4 {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-text-muted);
    margin-bottom: 14px
}

.tl-footer__nav-link {
    display: block;
    font-size: .86rem;
    color: rgba(232, 234, 240, .6);
    padding: 4px 0;
    transition: color var(--transition)
}

.tl-footer__nav-link:hover {
    color: var(--clr-text)
}

.tl-footer__logos {
    margin-bottom: 32px
}

.tl-footer__logos-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    font-weight: 600
}

.tl-footer__logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px
}

.tl-footer__logo-badge {
    height: 34px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: .05em;
    white-space: nowrap;
    transition: all var(--transition)
}

.tl-footer__logo-badge:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--clr-text)
}

.tl-footer__bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--clr-border)
}

.tl-footer__copyright {
    font-size: .8rem;
    color: rgba(138, 143, 168, .6);
    margin-bottom: 8px
}

.tl-footer__legal {
    font-size: .76rem;
    color: rgba(138, 143, 168, .45);
    line-height: 1.6;
    max-width: 860px;
    margin: 0 auto
}

.tl-footer__flag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px
}

.tl-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 888;
    background: linear-gradient(90deg, rgba(22, 23, 27, .97) 0%, rgba(28, 29, 36, .97) 100%);
    border-top: 1px solid rgba(19, 202, 144, .2);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform .4s ease;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .4)
}

.tl-sticky-widget.visible {
    transform: translateY(0)
}

.tl-sticky-widget__text {
    font-size: .88rem;
    color: rgba(232, 234, 240, .8);
    white-space: nowrap
}

.tl-sticky-widget__bonus {
    font-weight: 700;
    color: var(--clr-primary)
}

.tl-sticky-widget__close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    margin-left: 8px;
    flex-shrink: 0
}

.tl-sticky-widget__close:hover {
    background: rgba(255, 255, 255, .15);
    color: var(--clr-text)
}

.tl-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .74rem;
    font-weight: 600
}

.tl-badge--green {
    background: rgba(19, 202, 144, .15);
    color: var(--clr-primary);
    border: 1px solid rgba(19, 202, 144, .25)
}

.tl-badge--purple {
    background: rgba(61, 24, 164, .25);
    color: #a78bff;
    border: 1px solid rgba(61, 24, 164, .4)
}

@keyframes tl-fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes tl-slideUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes tl-countUp {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.tl-fade-in {
    animation: tl-fadeIn .5s ease both
}

.tl-slide-up {
    animation: tl-slideUp .6s ease both
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0)
}

.tl-divider-wave {
    height: 60px;
    overflow: hidden;
    position: relative
}

.tl-divider-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%
}

.tl-info-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 24px
}

.tl-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em
}

.tl-tag--primary {
    background: rgba(19, 202, 144, .12);
    color: var(--clr-primary);
    border: 1px solid rgba(19, 202, 144, .2)
}

.tl-tag--secondary {
    background: rgba(61, 24, 164, .2);
    color: #a78bff;
    border: 1px solid rgba(61, 24, 164, .3)
}

.tl-page-hero {
    padding: 48px 0 32px;
    background: linear-gradient(180deg, rgba(61, 24, 164, .08) 0%, transparent 100%)
}

.tl-page-hero h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 10px
}

.tl-page-hero p {
    color: var(--clr-text-muted);
    max-width: 640px
}

.tl-info-page-content {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 40px
}

.tl-info-page-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 2em 0 .7em;
    padding-bottom: .5em;
    border-bottom: 1px solid var(--clr-border)
}

.tl-info-page-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text);
    margin: 1.5em 0 .5em
}

.tl-info-page-content p {
    color: rgba(232, 234, 240, .82);
    line-height: 1.75;
    margin-bottom: 1.1em;
    font-size: .95rem
}

.tl-info-page-content ul, .tl-info-page-content ol {
    padding-left: 1.4em;
    margin-bottom: 1.1em
}

.tl-info-page-content li {
    margin-bottom: .4em;
    color: rgba(232, 234, 240, .82);
    font-size: .95rem
}

.tl-info-page-content a {
    color: var(--clr-primary)
}

.tl-info-page-content strong {
    color: var(--clr-text)
}

.tl-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    flex-wrap: wrap
}

.tl-breadcrumb a {
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

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

.tl-breadcrumb-sep {
    color: rgba(138, 143, 168, .4)
}

.tl-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, .2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: tl-spin .7s linear infinite;
    display: inline-block
}

@keyframes tl-spin {
    to {
        transform: rotate(360deg)
    }
}

.wp-block-group, .elementor-section, .entry-content, .site-content, .page-content, .post-content {
    display: contents
}

.entry-header, .wp-post-navigation, .wp-block-columns {
    display: contents
}

@media (max-width: 1024px) {
    .tl-header__inner {
        grid-template-columns:auto 1fr auto
    }

    .tl-nav {
        display: none
    }

    .tl-burger {
        display: flex
    }

    .tl-mobile-menu {
        display: block
    }

    .tl-hero__content {
        grid-template-columns:1fr
    }

    .tl-hero__bonus-card {
        margin: 0 auto;
        max-width: 340px
    }

    .tl-bonus-grid {
        grid-template-columns:1fr
    }

    .tl-bonus-grid {
        display: none
    }

    .tl-bonus-slider-wrap .tl-bonus-slider {
        display: flex
    }

    .tl-reviews-grid {
        grid-template-columns:1fr
    }

    .tl-footer__top {
        grid-template-columns:1fr
    }

    .tl-footer__nav-cols {
        grid-template-columns:1fr 1fr
    }

    .tl-jackpot-section {
        margin: 0 12px;
        padding: 32px 20px
    }

    .tl-form-row {
        grid-template-columns:1fr
    }

    .tl-security-grid {
        grid-template-columns:1fr 1fr
    }
}

@media (max-width: 768px) {
    .tl-header__inner {
        grid-template-columns:auto 1fr auto auto;
        gap: 10px;
        height: 60px;
        padding: 0 16px
    }

    .tl-header__meta {
        display: none
    }

    .tl-hero {
        min-height: 440px
    }

    .tl-hero__content {
        padding: 60px 0 48px
    }

    .tl-section {
        padding: 48px 0
    }

    .tl-reviews-grid {
        grid-template-columns:1fr
    }

    .tl-footer__nav-cols {
        grid-template-columns:1fr
    }

    .tl-security-grid {
        grid-template-columns:1fr
    }

    .tl-sticky-widget {
        padding: 10px 16px;
        gap: 12px
    }

    .tl-sticky-widget__text {
        font-size: .8rem
    }

    .tl-wheel-canvas {
        width: 260px;
        height: 260px
    }

    .tl-hero__bonus-card {
        padding: 24px 20px
    }

    .tl-review-content {
        padding: 24px 20px
    }

    .tl-review-form-wrap {
        padding: 24px 20px
    }
}

@media (max-width: 480px) {
    .tl-hero__actions {
        flex-direction: column
    }

    .tl-hero__actions .tl-btn {
        width: 100%;
        justify-content: center
    }

    .tl-bonus-slide {
        flex: 0 0 92%;
        max-width: 92%
    }

    .tl-jackpot__grid {
        grid-template-columns:1fr 1fr
    }

    .tl-footer__logos-row {
        gap: 6px
    }
}

.tl-contact-grid {
    display: grid;
    grid-template-columns:1fr 1.4fr;
    gap: 40px;
    align-items: start;
    margin-top: 8px
}

.tl-contact-info h3, .tl-contact-form-wrap h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--clr-text)
}

.tl-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px
}

.tl-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition)
}

.tl-contact-list li:hover {
    border-color: rgba(19, 202, 144, .25)
}

.tl-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(61, 24, 164, .3), rgba(19, 202, 144, .12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px
}

.tl-contact-list li div {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.tl-contact-list strong {
    font-size: .82rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .07em
}

.tl-contact-list span, .tl-contact-email {
    font-size: .93rem;
    color: var(--clr-text);
    font-weight: 500
}

.tl-contact-note {
    padding: 14px 18px;
    background: rgba(61, 24, 164, .12);
    border: 1px solid rgba(61, 24, 164, .2);
    border-radius: var(--radius-md);
    font-size: .84rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.tl-contact-note strong {
    color: var(--clr-text)
}

.tl-contact-note a {
    color: var(--clr-primary)
}

.tl-contact-form-wrap {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 32px
}

.tl-form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5l3 3 3-3' fill='none' stroke='%238a8fa8' stroke-width='1.8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer
}

.tl-responsible-header {
    background: linear-gradient(135deg, rgba(255, 160, 50, .06), rgba(255, 80, 80, .06));
    border: 1px solid rgba(255, 160, 50, .2);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 32px
}

.tl-responsible-disclaimer {
    font-size: .93rem;
    color: rgba(232, 234, 240, .85);
    line-height: 1.65;
    text-align: center
}

.tl-helporg-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 24px
}

.tl-helporg-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all var(--transition)
}

.tl-helporg-card:hover {
    border-color: rgba(19, 202, 144, .3);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3)
}

.tl-helporg-card strong {
    font-size: .98rem;
    font-weight: 700;
    color: var(--clr-text)
}

.tl-helporg-card p {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
    flex: 1
}

@media (max-width: 768px) {
    .tl-contact-grid {
        grid-template-columns:1fr;
        gap: 24px
    }
}

.tl-wp-nonce {
    display: none !important
}

.tl-wp-ajax {
    display: none !important
}

.tl-elementor-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body,
.tl-wrap,
#main-content,
#tl-page,
.tl-section,
.tl-container {
    min-width: 0;
}

.tl-wrap {
    width: 100%;
    max-width: 100%;
}

.tl-container {
    width: 100%;
    max-width: 1200px;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
}

.tl-hero,
.tl-hero__content,
.tl-info-table-wrap,
.tl-jackpot-section,
.tl-jackpot__grid,
.tl-bonus-grid,
.tl-bonus-slider-wrap,
.tl-bonus-slider,
.tl-wheel-section,
.tl-review-content,
.tl-content-area,
.tl-steps-wrap,
.tl-steps-inner,
.tl-security-grid,
.tl-security-badge,
.tl-reviews-grid,
.tl-review-form-wrap,
.tl-form,
.tl-form-row,
.tl-info-card {
    min-width: 0;
    max-width: 100%;
}

.tl-hero__title,
.tl-hero__sub,
.tl-hero__bonus-label,
.tl-hero__bonus-amount,
.tl-hero__bonus-spins,
.tl-section-title,
.tl-section-sub,
.tl-jackpot-card__label,
.tl-jackpot-card__amount,
.tl-jackpot-card__game,
.tl-bonus-card__title,
.tl-bonus-card__amount,
.tl-bonus-card__desc,
.tl-bonus-card__terms,
.tl-review-author__name,
.tl-review-author__title,
.tl-review-card__name,
.tl-review-card__date,
.tl-review-card__text,
.tl-step-title,
.tl-step-desc,
.tl-security-card__title,
.tl-security-card__desc,
.tl-content-area p,
.tl-content-area li,
.tl-content-area a,
.tl-content-area td,
.tl-content-area th,
.tl-info-card p,
.tl-info-card h3 {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tl-content-area img,
.tl-info-page-content img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.tl-content-area iframe,
.tl-info-page-content iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
}

.tl-content-area pre,
.tl-info-page-content pre {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.tl-content-area code,
.tl-info-page-content code {
    max-width: 100%;
    white-space: pre-wrap;
    word-break: break-word;
}

@media (max-width: 1024px) {
    .tl-container {
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .tl-header__inner {
        grid-template-columns:auto minmax(0, 1fr) auto;
        gap: 12px;
    }

    .tl-header__logo {
        min-width: 0;
    }

    .tl-header__logo img {
        max-width: 150px;
        object-fit: contain;
    }

    .tl-header__right {
        min-width: 0;
    }

    .tl-hero__content {
        grid-template-columns:1fr;
        gap: 30px;
    }

    .tl-hero__bonus-card {
        width: 100%;
        max-width: 420px;
        min-width: 0;
        margin: 0;
    }

    .tl-jackpot__grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .tl-security-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .tl-reviews-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .tl-footer__nav-cols {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .tl-container {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }

    .tl-section {
        width: 100%;
        padding: 42px 0;
    }

    .tl-section--sm {
        padding: 34px 0;
    }

    .tl-section-head {
        width: 100%;
        max-width: 100%;
        margin-bottom: 26px;
        text-align: center;
    }

    .tl-section-title {
        max-width: 100%;
        font-size: 25px;
        line-height: 1.2;
    }

    .tl-section-sub {
        max-width: 100%;
        margin: 8px auto 0;
        font-size: 14px;
        line-height: 1.6;
    }

    .tl-tag {
        max-width: 100%;
        white-space: normal;
        text-align: center;
        justify-content: center;
        line-height: 1.35;
    }

    .tl-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 99999;
    }

    .tl-wrap {
        padding-top: 60px;
    }

    .tl-header__inner {
        width: 100%;
        height: 60px;
        padding: 0 14px;
        grid-template-columns:auto minmax(0, 1fr) auto;
        gap: 8px;
    }

    .tl-header__logo img {
        width: auto;
        max-width: 120px;
        height: 35px;
    }

    .tl-header__right {
        margin-left: auto;
        gap: 6px;
    }

    .tl-header__meta {
        display: none;
    }

    .tl-header__right .tl-btn {
        padding: 7px 10px;
        font-size: 11px;
    }

    .tl-burger {
        display: flex;
        flex-shrink: 0;
    }

    .tl-mobile-menu {
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100dvh - 60px);
        padding: 16px 14px 30px;
        background: rgba(22, 23, 27, .99);
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        z-index: 99998;
    }

    .tl-mobile-menu.open,
    .tl-mobile-menu.active,
    .tl-mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .tl-mobile-menu__nav {
        width: 100%;
        gap: 7px;
    }

    .tl-mobile-menu__item {
        width: 100%;
        min-height: 48px;
        padding: 12px 14px;
        border: 1px solid var(--clr-border);
        background: rgba(255, 255, 255, .04);
        border-radius: 10px;
    }

    html.menu-open,
    body.menu-open {
        overflow: hidden;
    }

    .tl-hero {
        width: 100%;
        min-height: auto;
        padding: 0;
    }

    .tl-hero__bg {
        background-position: center;
    }

    .tl-hero__overlay {
        background: linear-gradient(180deg, rgba(21, 22, 26, .4) 0%, rgba(21, 22, 26, .9) 48%, rgba(21, 22, 26, .99) 100%);
    }

    .tl-hero__content {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
        max-width: 100%;
        gap: 24px;
        padding: 54px 0 38px;
    }

    .tl-hero__content > div,
    .tl-hero__content > #bonus {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .tl-hero__badge {
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
    }

    .tl-hero__title {
        max-width: 100%;
        font-size: 30px;
        line-height: 1.12;
    }

    .tl-hero__title br {
        display: none;
    }

    .tl-hero__sub {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .tl-hero__actions {
        display: grid;
        grid-template-columns:1fr;
        width: 100%;
        gap: 10px;
    }

    .tl-hero__actions .tl-btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
        text-align: center;
    }

    .tl-hero__bonus-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 24px 18px;
        border-radius: 18px;
    }

    .tl-hero__bonus-amount {
        font-size: 28px;
    }

    .tl-btn {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .tl-btn--lg {
        padding: 12px 18px;
        font-size: 15px;
    }

    .tl-info-table-wrap {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        border: 1px solid var(--clr-border);
        border-radius: 14px;
        -webkit-overflow-scrolling: touch;
    }

    .tl-info-table {
        width: 100%;
        min-width: 600px;
    }

    .tl-info-table td {
        padding: 11px 13px;
        font-size: 13px;
    }

    .tl-info-table__param {
        min-width: 0;
    }

    .tl-jackpot-section {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 24px 16px;
        border-radius: 18px;
    }

    .tl-jackpot__grid {
        grid-template-columns:1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .tl-jackpot-card {
        width: 100%;
        min-width: 0;
        padding: 22px 16px;
    }

    .tl-jackpot-card__amount {
        font-size: 25px;
    }

    .tl-bonus-grid {
        display: grid;
        grid-template-columns:1fr;
        gap: 14px;
    }

    .tl-bonus-slider-wrap {
        display: none;
    }

    .tl-bonus-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 22px 17px;
        border-radius: 16px;
    }

    .tl-bonus-card__amount {
        font-size: 25px;
    }

    .tl-bonus-card .tl-btn {
        width: 100%;
    }

    .tl-wheel-section {
        width: 100%;
        max-width: 100%;
        padding: 28px 14px;
        border-radius: 18px;
    }

    .tl-wheel-wrap {
        width: min(260px, 80vw);
        max-width: 100%;
        margin: 28px auto 20px;
    }

    .tl-wheel-canvas {
        display: block;
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 1/1;
    }

    .tl-wheel-spin-btn {
        width: 100%;
        max-width: 320px;
        margin-top: 18px;
        padding: 12px 18px;
    }

    .tl-wheel-result {
        width: 100%;
        max-width: 100%;
        padding: 16px 14px;
    }

    .tl-review-content {
        width: 100%;
        max-width: 100%;
        padding: 22px 16px;
        border-radius: 16px;
        overflow: hidden;
    }

    .tl-review-author {
        width: 100%;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
        padding-bottom: 18px;
    }

    .tl-review-author > div {
        min-width: 0;
    }

    .tl-review-author__avatar {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }

    .tl-review-author__links {
        flex-wrap: wrap;
    }

    .tl-content-area {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        font-size: 14px;
        overflow: hidden;
    }

    .tl-content-area h1 {
        font-size: 25px;
    }

    .tl-content-area h2 {
        font-size: 21px;
    }

    .tl-content-area h3 {
        font-size: 18px;
    }

    .tl-content-area p,
    .tl-content-area li {
        font-size: 14px;
        line-height: 1.7;
    }

    .tl-content-area ul,
    .tl-content-area ol {
        margin-left: 0;
        padding-left: 20px;
    }

    .tl-content-area blockquote {
        margin: 16px 0;
        padding: 12px 14px;
    }

    .tl-content-area table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 560px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .tl-content-area table th,
    .tl-content-area table td {
        padding: 9px 11px;
        font-size: 12px;
    }

    .tl-steps-wrap {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .tl-steps-inner {
        width: 100%;
        min-width: 0;
    }

    .tl-steps-table,
    .tl-steps-table tbody,
    .tl-steps-table tr,
    .tl-steps-table td {
        display: block;
        width: 100%;
    }

    .tl-steps-table {
        border-spacing: 0;
    }

    .tl-steps-table tr {
        position: relative;
        margin-bottom: 12px;
        padding: 16px 14px 16px 62px;
        background: var(--clr-card);
        border: 1px solid var(--clr-border);
        border-radius: 14px;
    }

    .tl-steps-table tr td {
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .tl-steps-table tr td:first-child {
        position: absolute;
        top: 15px;
        left: 14px;
        width: 36px;
    }

    .tl-step-title {
        font-size: 15px;
    }

    .tl-step-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .tl-security-grid {
        grid-template-columns:1fr;
        gap: 12px;
    }

    .tl-security-card {
        width: 100%;
        min-width: 0;
        padding: 18px 15px;
        border-radius: 14px;
    }

    .tl-security-badge {
        width: 100%;
        gap: 7px;
        margin-top: 22px;
    }

    .tl-security-badge__item {
        max-width: 100%;
        min-width: 0;
        padding: 6px 10px;
        font-size: 11px;
        white-space: normal;
    }

    .tl-reviews-grid {
        grid-template-columns:1fr;
        gap: 12px;
        margin-bottom: 26px;
    }

    .tl-review-card {
        width: 100%;
        min-width: 0;
        padding: 18px 15px;
        border-radius: 14px;
    }

    .tl-review-card__head {
        min-width: 0;
    }

    .tl-review-card__head > div:last-child {
        min-width: 0;
    }

    .tl-review-card__text {
        font-size: 13px;
        line-height: 1.65;
    }

    .tl-review-form-wrap {
        width: 100%;
        max-width: 100%;
        padding: 22px 16px;
        border-radius: 16px;
    }

    .tl-form-row {
        grid-template-columns:1fr;
        gap: 14px;
    }

    .tl-form-input,
    .tl-form-textarea {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        font-size: 16px;
    }

    .tl-form .tl-btn {
        width: 100%;
    }

    .tl-info-card {
        width: 100%;
        max-width: 100%;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .tl-info-card > div {
        width: 100%;
        min-width: 0;
    }

    .tl-info-card h3 {
        font-size: 15px !important;
        line-height: 1.4;
    }

    .tl-info-card p {
        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    .tl-footer {
        width: 100%;
        padding: 42px 0 20px;
    }

    .tl-footer__top {
        grid-template-columns:1fr;
        gap: 28px;
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .tl-footer__brand,
    .tl-footer__nav-cols,
    .tl-footer__nav-col {
        width: 100%;
        min-width: 0;
    }

    .tl-footer__nav-cols {
        grid-template-columns:1fr;
        gap: 24px;
    }

    .tl-footer__logos-row {
        width: 100%;
        gap: 7px;
    }

    .tl-footer__logo-badge {
        height: auto;
        min-height: 32px;
        max-width: 100%;
        padding: 5px 9px;
        white-space: normal;
        text-align: center;
    }

    .tl-sticky-widget {
        left: 8px;
        right: 8px;
        bottom: max(8px, env(safe-area-inset-bottom));
        width: auto;
        max-width: none;
        padding: 12px 38px 12px 12px;
        border: 1px solid rgba(19, 202, 144, .25);
        border-radius: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 9px;
        text-align: center;
        max-height: calc(100dvh - 16px);
        overflow-y: auto;
    }

    .tl-sticky-widget__text {
        width: 100%;
        max-width: 100%;
        font-size: 12px;
        white-space: normal;
    }

    .tl-sticky-widget .tl-btn {
        width: 100%;
    }

    .tl-sticky-widget__close {
        position: absolute;
        top: 7px;
        right: 7px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .tl-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .tl-header__inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .tl-header__logo img {
        max-width: 100px;
        height: 32px;
    }

 
    .tl-header__right .tl-btn {
        padding: 7px 9px;
        font-size: 10px;
    }

    .tl-hero__content {
        padding: 44px 0 32px;
    }

    .tl-hero__title {
        font-size: 26px;
    }

    .tl-hero__sub {
        font-size: 13px;
    }

    .tl-section {
        padding: 34px 0;
    }

    .tl-section--sm {
        padding: 28px 0;
    }

    .tl-section-title {
        font-size: 22px;
    }

    .tl-section-sub {
        font-size: 13px;
    }

    .tl-info-table {
        min-width: 520px;
    }

    .tl-jackpot-card {
        padding: 19px 12px;
    }

    .tl-jackpot-card__amount {
        font-size: 22px;
    }

    .tl-bonus-card {
        padding: 19px 13px;
    }

    .tl-wheel-section {
        padding: 24px 10px;
    }

    .tl-wheel-wrap {
        width: min(230px, 78vw);
    }

    .tl-wheel-canvas {
        max-width: 230px;
    }

    .tl-review-content {
        padding: 18px 12px;
    }

    .tl-review-author {
        display: grid;
        grid-template-columns:auto minmax(0, 1fr);
    }

    .tl-content-area h1 {
        font-size: 23px;
    }

    .tl-content-area h2 {
        font-size: 20px;
    }

    .tl-content-area table {
        min-width: 500px;
    }

    .tl-steps-table tr {
        padding: 14px 11px 14px 55px;
    }

    .tl-steps-table tr td:first-child {
        top: 13px;
        left: 10px;
    }

    .tl-security-card,
    .tl-review-card {
        padding: 16px 12px;
    }

    .tl-review-form-wrap {
        padding: 18px 12px;
    }

    .tl-info-card {
        padding: 17px 12px;
    }
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html.tl-menu-open,
body.tl-menu-open {
    overflow: hidden;
}

.tl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    background: var(--clr-header, #16171b);
    border-bottom: 1px solid var(--clr-border, #252633);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

.tl-wrap {
    padding-top: 68px;
}

.tl-header__inner {
    display: grid;
    grid-template-columns:auto minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    min-width: 0;
    height: 68px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 16px;
}

.tl-header__logo {
    min-width: 0;
    flex-shrink: 0;
}

.tl-header__logo a {
    display: flex;
    align-items: center;
}

.tl-header__logo img {
    display: block;
    width: auto;
    max-width: 160px;
    height: 40px;
    object-fit: contain;
}

.tl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 3px;
}

.tl-nav__item {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    padding: 8px 11px;
    color: var(--clr-text-muted, #8a8fa8);
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
}

.tl-nav__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.tl-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    gap: 8px;
    flex-shrink: 0;
}

.tl-burger {
    display: none;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 1px solid var(--clr-border, #252633);
    border-radius: 9px;
    background: rgba(255, 255, 255, .05);
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

.tl-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--clr-text, #e8eaf0);
    border-radius: 3px;
    transition: transform .25s ease, opacity .25s ease;
}

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

.tl-burger.active span:nth-child(2),
.tl-burger.open span:nth-child(2),
.tl-burger.is-open span:nth-child(2) {
    opacity: 0;
}

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

.tl-mobile-menu {
    display: none;
}

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

    .tl-header__inner {
        grid-template-columns:auto minmax(0, 1fr) auto;
    }

    .tl-burger {
        display: flex;
    }

    .tl-mobile-menu {
        display: flex;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100dvh - 68px);
        padding: 18px 16px 30px;
        background: rgba(22, 23, 27, .99);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        gap: 16px;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform .3s ease, opacity .25s ease, visibility .25s ease;
        z-index: 99998;
    }

    .tl-mobile-menu.open,
    .tl-mobile-menu.active,
    .tl-mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .tl-mobile-menu__nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 7px;
    }

    .tl-mobile-menu__item {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 50px;
        gap: 12px;
        padding: 13px 15px;
        color: var(--clr-text, #e8eaf0);
        background: rgba(255, 255, 255, .04);
        border: 1px solid var(--clr-border, #252633);
        border-radius: 11px;
        font-size: 15px;
        font-weight: 600;
    }

    .tl-mobile-menu__item svg {
        width: 19px;
        height: 19px;
        flex: 0 0 19px;
        color: var(--clr-primary, #13ca90);
    }

    .tl-mobile-menu > div {
        display: grid !important;
        grid-template-columns:1fr 1fr;
        width: 100%;
        gap: 8px !important;
        padding: 0 !important;
        margin-top: auto;
    }

    .tl-mobile-menu > div .tl-btn {
        width: 100%;
        min-width: 0;
        padding: 12px 8px;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .tl-header__inner {
        height: 60px;
        padding: 0 14px;
        gap: 8px;
    }

    .tl-wrap {
        padding-top: 60px;
    }

    .tl-header__logo img {
        max-width: 118px;
        height: 34px;
    }

    .tl-header__right {
        gap: 6px;
    }

    .tl-header__right > .tl-btn {
        padding: 7px 10px;
        font-size: 11px;
    }

    .tl-burger {
        width: 38px;
        height: 38px;
    }

    .tl-mobile-menu {
        top: 60px;
        height: calc(100dvh - 60px);
        padding: 14px 14px max(24px, env(safe-area-inset-bottom));
    }
}

@media (max-width: 520px) {
    .tl-header__inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .tl-header__logo img {
        max-width: 104px;
        height: 32px;
    }

    .tl-header__right > .tl-btn--primary {
        padding: 7px 9px;
        font-size: 10px;
    }

    .tl-mobile-menu__item {
        min-height: 48px;
        padding: 12px 13px;
        font-size: 14px;
    }

    .tl-mobile-menu > div {
        grid-template-columns:1fr;
    }
}

@media (max-width: 360px) {
    .tl-header__logo img {
        max-width: 90px;
    }


}

.tl-mobile-menu__actions {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    padding-top: 12px;
}

.tl-mobile-menu__actions .tl-btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
}

@media (max-width: 480px) {
    .tl-mobile-menu__actions {
        grid-template-columns:1fr;
    }
}