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

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

:root {
    --c-bg: #15161a;
    --c-header: #16171b;
    --c-primary: #13ca90;
    --c-secondary: #3d18a4;
    --c-text: #e8eaf0;
    --c-muted: #9ea3b4;
    --c-card: #1d1e24;
    --c-border: #2a2c35;
    --c-white: #ffffff;
    --c-primary-hover: #0fb87e;
    --c-secondary-hover: #4e25c4;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-glow: 0 0 24px rgba(19, 202, 144, 0.18);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.32);
    --font: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

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

.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: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    transition: transform .18s, box-shadow .18s, background .18s;
    white-space: nowrap;
}

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

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

.tl-btn--primary {
    background: var(--c-primary);
    color: #0a1a14;
    box-shadow: 0 4px 18px rgba(19, 202, 144, 0.32);
}

.tl-btn--primary:hover {
    background: var(--c-primary-hover);
    box-shadow: 0 6px 24px rgba(19, 202, 144, 0.42);
    color: #0a1a14;
}

.tl-btn--secondary {
    background: var(--c-secondary);
    color: var(--c-white);
    box-shadow: 0 4px 18px rgba(61, 24, 164, 0.28);
}

.tl-btn--secondary:hover {
    background: var(--c-secondary-hover);
    color: var(--c-white);
}

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

.tl-btn--outline:hover {
    background: var(--c-primary);
    color: #0a1a14;
}

.tl-btn--sm {
    padding: 8px 18px;
    font-size: 13px;
}

.tl-btn--lg {
    padding: 16px 40px;
    font-size: 17px;
}

/* =========================================================
   HEADER
   ========================================================= */
.tl-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

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

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

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

.tl-header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.tl-header__nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--c-muted);
    font-size: 14px;
    font-weight: 600;
    transition: color .18s, background .18s;
}

.tl-header__nav a:hover, .tl-header__nav a.tl-active {
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.06);
}

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

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

.tl-header__status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(19, 202, 144, 0.08);
    border: 1px solid rgba(19, 202, 144, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-primary);
    white-space: nowrap;
}

.tl-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-primary);
    animation: tl-pulse 2s infinite;
}

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

.tl-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
}

.tl-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: transform .28s, opacity .28s;
}

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

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

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

.tl-mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    padding: 12px 20px 20px;
    z-index: 999;
}

.tl-mobile-nav.tl-open {
    display: block;
    animation: tl-slideDown .22s ease;
}

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

.tl-mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tl-mobile-nav ul a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    color: var(--c-muted);
    font-size: 15px;
    font-weight: 600;
    transition: background .18s, color .18s;
}

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

.tl-mobile-nav ul svg {
    width: 18px;
    height: 18px;
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.tl-hero {
    position: relative;
    overflow: hidden;
    background: #0d0e12;
}

.tl-hero__slides {
    display: flex;
    transition: transform .6s cubic-bezier(.77, 0, .18, 1);
}

.tl-hero__slide {
    min-width: 100%;
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.tl-hero__slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .45;
}

.tl-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13, 14, 18, .92) 40%, rgba(19, 202, 144, .08) 100%);
}

.tl-hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 48px;
}

.tl-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(19, 202, 144, 0.12);
    border: 1px solid rgba(19, 202, 144, 0.3);
    color: var(--c-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.tl-hero__title {
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--c-white);
    margin-bottom: 16px;
    text-balance: balance;
}

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

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

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

.tl-hero__controls {
    position: absolute;
    bottom: 24px;
    left: 48px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.tl-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}

.tl-hero__dot.tl-active {
    background: var(--c-primary);
    transform: scale(1.35);
}

.tl-hero__arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 10;
    pointer-events: none;
}

.tl-hero__arrow {
    pointer-events: all;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    backdrop-filter: blur(6px);
}

.tl-hero__arrow:hover {
    background: rgba(19, 202, 144, 0.25);
}

/* =========================================================
   BREADCRUMBS
   ========================================================= */
.tl-breadcrumbs {
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    padding: 10px 0;
}

.tl-breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    flex-wrap: wrap;
    font-size: 13px;
}

.tl-breadcrumbs__list li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-muted);
}

.tl-breadcrumbs__list a {
    color: var(--c-muted);
}

.tl-breadcrumbs__list a:hover {
    color: var(--c-primary);
}

.tl-breadcrumbs__list .tl-sep {
    color: var(--c-border);
}

.tl-breadcrumbs__list .tl-current {
    color: var(--c-text);
    font-weight: 600;
}

/* =========================================================
   SECTIONS GENERAL
   ========================================================= */
.tl-section {
    padding: 72px 0;
}

.tl-section--alt {
    background: rgba(255, 255, 255, 0.018);
}

.tl-section__head {
    text-align: center;
    margin-bottom: 48px;
}

.tl-section__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 10px;
}

.tl-section__title {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    color: var(--c-white);
    line-height: 1.2;
    text-balance: balance;
}

.tl-section__title span {
    color: var(--c-primary);
}

.tl-section__sub {
    margin-top: 12px;
    color: var(--c-muted);
    font-size: 15px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

/* =========================================================
   FEATURES TILES
   ========================================================= */
.tl-features__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tl-feature-card {
    flex: 1 1 220px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .22s, transform .22s, box-shadow .22s;
}

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

.tl-feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(19, 202, 144, 0.18), rgba(61, 24, 164, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-feature-card__icon svg {
    width: 24px;
    height: 24px;
}

.tl-feature-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-white);
}

.tl-feature-card__text {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.6;
}

/* =========================================================
   WINNERS
   ========================================================= */
.tl-winners__table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
}

.tl-winners__table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: var(--c-card);
    text-align: left;
}

.tl-winners__table thead tr {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--c-border);
}

.tl-winners__table th {
    padding: 14px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--c-muted);
}

.tl-winners__table td {
    padding: 13px 18px;
    font-size: 14px;
    color: var(--c-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tl-winners__table tbody tr:last-child td {
    border-bottom: none;
}

.tl-winners__table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.025);
}

.tl-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

.tl-rank--1 {
    background: #ffd700;
    color: #1a1200;
}

.tl-rank--2 {
    background: #c0c0c0;
    color: #111;
}

.tl-rank--3 {
    background: #cd7f32;
    color: #fff;
}

.tl-rank--other {
    background: rgba(255, 255, 255, 0.08);
    color: var(--c-muted);
}

.tl-winner-amount {
    font-weight: 800;
    color: var(--c-primary);
}

/* =========================================================
   APP INFO
   ========================================================= */
.tl-app__inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.tl-app__table-wrap {
    flex: 1 1 340px;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
}

.tl-app__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-card);
    text-align: left;
}

.tl-app__table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tl-app__table tr:last-child {
    border-bottom: none;
}

.tl-app__table th {
    padding: 13px 18px;
    font-size: 12px;
    font-weight: 700;
    color: var(--c-muted);
    width: 42%;
    background: rgba(255, 255, 255, 0.03);
}

.tl-app__table td {
    padding: 13px 18px;
    font-size: 14px;
    color: var(--c-text);
}

.tl-app__downloads {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tl-app__downloads-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: 6px;
}

.tl-app__downloads-sub {
    font-size: 14px;
    color: var(--c-muted);
    margin-bottom: 8px;
    line-height: 1.55;
}

.tl-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    text-decoration: none;
    color: var(--c-text);
    transition: border-color .2s, transform .2s;
}

.tl-dl-btn:hover {
    border-color: var(--c-primary);
    transform: translateY(-2px);
    color: var(--c-text);
}

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

.tl-dl-btn__label {
    font-size: 10px;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.tl-dl-btn__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-white);
}

/* =========================================================
   BONUSES
   ========================================================= */
.tl-bonuses__grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tl-bonus-card {
    flex: 1 1 280px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
}

.tl-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.tl-bonus-card--a::before {
    background: linear-gradient(90deg, var(--c-primary), #0fb87e);
}

.tl-bonus-card--b::before {
    background: linear-gradient(90deg, var(--c-secondary), #6e3ef5);
}

.tl-bonus-card--c::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.tl-bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.tl-bonus-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-bonus-card--a .tl-bonus-card__icon {
    background: rgba(19, 202, 144, 0.14);
}

.tl-bonus-card--b .tl-bonus-card__icon {
    background: rgba(61, 24, 164, 0.18);
}

.tl-bonus-card--c .tl-bonus-card__icon {
    background: rgba(245, 158, 11, 0.14);
}

.tl-bonus-card__icon svg {
    width: 26px;
    height: 26px;
}

.tl-bonus-card__label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-muted);
}

.tl-bonus-card__amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--c-white);
    line-height: 1.1;
}

.tl-bonus-card--a .tl-bonus-card__amount {
    color: var(--c-primary);
}

.tl-bonus-card--b .tl-bonus-card__amount {
    color: #8b5cf6;
}

.tl-bonus-card--c .tl-bonus-card__amount {
    color: #f59e0b;
}

.tl-bonus-card__desc {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.6;
}

.tl-bonus-card__cta {
    margin-top: 8px;
}

/* mobile slider for bonuses */
@media (max-width: 700px) {
    .tl-bonuses__grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .tl-bonus-card {
        min-width: 80vw;
        scroll-snap-align: start;
    }
}

/* =========================================================
   SLOT GAME
   ========================================================= */
.tl-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.tl-slot__machine {
    background: linear-gradient(160deg, #1a1b22, #111218);
    border: 2px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tl-slot__title-inner {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 22px;
}

.tl-slot__reels {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
}

.tl-slot__reel {
    width: 72px;
    height: 72px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    overflow: hidden;
    position: relative;
    transition: filter .2s;
}

.tl-slot__reel.tl-spin {
    animation: tl-reelSpin .7s linear;
}

@keyframes tl-reelSpin {
    0% {
        transform: translateY(0);
        filter: blur(0);
    }
    30% {
        filter: blur(3px);
    }
    70% {
        filter: blur(3px);
    }
    100% {
        transform: translateY(0);
        filter: blur(0);
    }
}

.tl-slot__result {
    text-align: center;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.tl-slot__win-text {
    font-size: 17px;
    font-weight: 800;
    color: var(--c-primary);
    animation: tl-fadeIn .4s ease;
}

.tl-slot__lose-text {
    font-size: 14px;
    color: var(--c-muted);
    animation: tl-fadeIn .4s ease;
}

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

.tl-slot__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tl-slot__btn-spin {
    min-width: 160px;
    background: linear-gradient(135deg, #3d18a4, #6e3ef5);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.tl-slot__btn-spin:hover {
    background: linear-gradient(135deg, #4e25c4, #7d4fff);
}

/* =========================================================
   CONTENT REVIEW BLOCK
   ========================================================= */
.tl-review {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.tl-review h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-white);
    margin: 28px 0 12px;
    line-height: 1.3;
}

.tl-review h2:first-child {
    margin-top: 0;
}

.tl-review h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-white);
    margin: 22px 0 10px;
}

.tl-review h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-primary);
    margin: 18px 0 8px;
}

.tl-review p {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.tl-review ul, .tl-review ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.tl-review li {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.tl-review strong {
    color: var(--c-text);
    font-weight: 700;
}

.tl-review a {
    color: var(--c-primary);
}

.tl-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.tl-review table th {
    background: rgba(255, 255, 255, 0.05);
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--c-muted);
    text-align: left;
    border: 1px solid var(--c-border);
}

.tl-review table td {
    padding: 11px 14px;
    font-size: 14px;
    color: var(--c-text);
    border: 1px solid var(--c-border);
}

.tl-review table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.025);
}

.tl-review blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 12px 20px;
    background: rgba(19, 202, 144, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
}

.tl-review blockquote p {
    margin: 0;
    color: var(--c-text);
}

/* =========================================================
   HOW TO REGISTER
   ========================================================= */
.tl-steps {
    display: flex;
    gap: 0;
    flex-direction: column;
    max-width: 780px;
    margin: 0 auto;
}

.tl-step {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 32px;
}

.tl-step:last-child {
    padding-bottom: 0;
}

.tl-step__line {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.tl-step__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-secondary), #6e3ef5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(61, 24, 164, 0.4);
}

.tl-step__connector {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, rgba(61, 24, 164, 0.5), transparent);
    margin: 6px 0;
    min-height: 20px;
}

.tl-step:last-child .tl-step__connector {
    display: none;
}

.tl-step__body {
    flex: 1;
    padding-top: 8px;
}

.tl-step__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--c-white);
    margin-bottom: 7px;
}

.tl-step__desc {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.65;
}

/* =========================================================
   AUTHOR
   ========================================================= */
.tl-author {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 26px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.tl-author__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-primary);
    flex-shrink: 0;
}

.tl-author__body {
    flex: 1;
    min-width: 200px;
}

.tl-author__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.tl-author__name {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-white);
}

.tl-author__role {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-primary);
    background: rgba(19, 202, 144, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.tl-author__bio {
    font-size: 14px;
    color: var(--c-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.tl-author__links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.tl-author__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-muted);
    border: 1px solid var(--c-border);
    padding: 5px 12px;
    border-radius: 20px;
    transition: border-color .2s, color .2s;
}

.tl-author__link:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.tl-author__link svg {
    width: 14px;
    height: 14px;
}

.tl-author__dates {
    font-size: 12px;
    color: var(--c-muted);
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.tl-author__dates span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.tl-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    margin-top: auto;
}

.tl-footer__top {
    padding: 48px 0 32px;
    border-bottom: 1px solid var(--c-border);
}

.tl-footer__grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.tl-footer__brand {
    flex: 0 0 220px;
}

.tl-footer__logo img {
    height: 40px;
    width: auto;
    margin-bottom: 14px;
}

.tl-footer__brand-desc {
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.65;
}

.tl-footer__flag {
    font-size: 24px;
    margin-top: 12px;
}

.tl-footer__col {
    flex: 1 1 160px;
}

.tl-footer__col-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-muted);
    margin-bottom: 14px;
}

.tl-footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tl-footer__col ul a {
    font-size: 13px;
    color: var(--c-muted);
    transition: color .18s;
}

.tl-footer__col ul a:hover {
    color: var(--c-primary);
}

.tl-footer__middle {
    padding: 28px 0;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.tl-footer__logos-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tl-footer__logos-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, 0.3);
}

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

.tl-footer__logo-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.tl-footer__logo-badge svg {
    width: 16px;
    height: 16px;
}

.tl-footer__bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.tl-footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.tl-footer__legal {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    max-width: 700px;
    line-height: 1.6;
}

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

.tl-footer__social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-muted);
    transition: background .2s, color .2s;
}

.tl-footer__social:hover {
    background: rgba(19, 202, 144, 0.15);
    color: var(--c-primary);
}

.tl-footer__social svg {
    width: 16px;
    height: 16px;
}

/* =========================================================
   PROMO WIDGET
   ========================================================= */
.tl-promo-widget {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    max-width: 520px;
    width: calc(100% - 32px);
    background: linear-gradient(135deg, #1a1b22, #16171b);
    border: 1px solid rgba(19, 202, 144, 0.35);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55), 0 0 32px rgba(19, 202, 144, 0.1);
    animation: tl-slideUp .45s cubic-bezier(.22, 1, .36, 1);
}

@keyframes tl-slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.tl-promo-widget__left {
    flex: 1;
    min-width: 0;
}

.tl-promo-widget__label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--c-primary);
    margin-bottom: 4px;
}

.tl-promo-widget__code {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tl-promo-widget__code-val {
    font-size: 20px;
    font-weight: 900;
    color: var(--c-white);
    letter-spacing: .06em;
    font-family: monospace;
}

.tl-promo-widget__copy {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 5px 8px;
    cursor: pointer;
    color: var(--c-muted);
    font-size: 12px;
    font-weight: 700;
    transition: background .2s, color .2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tl-promo-widget__copy:hover {
    background: rgba(19, 202, 144, 0.15);
    color: var(--c-primary);
}

.tl-promo-widget__copy svg {
    width: 14px;
    height: 14px;
}

.tl-promo-widget__sub {
    font-size: 12px;
    color: var(--c-muted);
    margin-top: 4px;
}

.tl-promo-widget__close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.25);
    font-size: 18px;
    line-height: 1;
    padding: 2px 4px;
    transition: color .2s;
}

.tl-promo-widget__close:hover {
    color: var(--c-text);
}

/* =========================================================
   INFO PAGE CONTENT
   ========================================================= */
.tl-info-content {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px 0 60px;
}

.tl-info-content h1 {
    font-size: 26px;
    font-weight: 900;
    color: var(--c-white);
    margin-bottom: 20px;
}

.tl-info-content h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-white);
    margin: 26px 0 12px;
}

.tl-info-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--c-text);
    margin: 18px 0 8px;
}

.tl-info-content p {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.tl-info-content ul, .tl-info-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.tl-info-content li {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.7;
    margin-bottom: 6px;
}

.tl-info-content a {
    color: var(--c-primary);
}

.tl-info-content strong {
    color: var(--c-text);
}

/* =========================================================
   MISC
   ========================================================= */
.tl-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.tl-badge--green {
    background: rgba(19, 202, 144, 0.12);
    color: var(--c-primary);
}

.tl-badge--purple {
    background: rgba(61, 24, 164, 0.18);
    color: #9b7fff;
}

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

/* fade-in on scroll */
.tl-fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

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

/* =========================================================
   UNUSED / CAMOUFLAGE STYLES (wp-like)
   ========================================================= */
.wp-block-group, .wp-block-columns, .wp-block-column, .wp-block-image, .has-text-align-center, .has-medium-font-size, .wp-block-button, .wp-block-button__link, .wp-block-cover, .wp-block-media-text, .entry-content, .post-thumbnail, .wp-caption, .wp-post-nav-link, .bypostauthor, .alignnone, .aligncenter, .alignright, .alignleft, .screen-reader-text {
    display: revert;
    box-sizing: border-box
}

.elementor-widget-container, .elementor-section, .elementor-column, .e-con, .elementor-widget-wrap, .elementor-section-wrap {
    position: relative;
    display: revert
}

.wp-block-separator {
    border: none;
    border-bottom: 1px solid var(--c-border);
    margin: 24px 0
}

.entry-meta, .entry-footer, .cat-links, .tags-links, .edit-link {
    font-size: 13px;
    color: var(--c-muted)
}

#wpadminbar {
    display: none !important
}

.jetpack-sharing-buttons__list {
    list-style: none;
    display: flex;
    gap: 8px
}

.wp-embed-aspect-16-9, .wp-has-aspect-ratio {
    position: relative
}

.comment-form input, .comment-form textarea {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    width: 100%;
    font-family: var(--font);
    font-size: 14px
}

.widget_search .search-field {
    padding: 8px 14px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    width: 100%
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .tl-header__nav {
        gap: 2px;
    }

    .tl-header__nav a {
        padding: 7px 9px;
        font-size: 13px;
    }
}

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

    .tl-burger {
        display: flex;
    }

    .tl-hero__content {
        padding: 40px 24px;
    }

    .tl-hero__slide {
        min-height: 360px;
    }

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

    .tl-review {
        padding: 24px;
    }

    .tl-author {
        padding: 24px;
    }

    .tl-app__inner {
        flex-direction: column;
    }

    .tl-footer__grid {
        gap: 28px;
    }

    .tl-footer__brand {
        flex: 0 0 100%;
    }
}

@media (max-width: 600px) {
    .tl-header__status .tl-count-text {
        display: none;
    }

    .tl-hero__slide {
        min-height: 300px;
    }

    .tl-hero__content {
        padding: 28px 16px;
    }

    .tl-features__grid {
        gap: 12px;
    }

    .tl-feature-card {
        flex: 1 1 160px;
    }

    .tl-steps {
        padding: 0;
    }

    .tl-promo-widget {
        flex-direction: column;
        align-items: flex-start;
    }

    .tl-info-content {
        padding: 24px 18px;
    }

    .tl-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
