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

:root {
    --c-bg: #15161a;
    --c-header: #16171b;
    --c-footer: #16171b;
    --c-primary: #13ca90;
    --c-secondary: #3d18a4;
    --c-text: #e8eaf0;
    --c-text-muted: #9a9db0;
    --c-border: rgba(255, 255, 255, 0.08);
    --c-card: #1c1d23;
    --c-card2: #1f2028;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.25s ease;
}

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

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

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

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

a:hover {
    opacity: 0.82;
}

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

.x9f2a {
    display: none;
}

.wp-block-legacy {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.elementor-hidden-node {
    display: none !important;
}

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

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

.tlk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none !important;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.tlk-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
    opacity: 1;
}

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

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

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

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

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

.tlk-btn--sm {
    padding: 8px 16px;
    font-size: 0.82rem;
}

.tlk-header {
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.tlk-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 68px;
}

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

.tlk-header__logo img {
    height: 44px;
    width: auto;
}

.tlk-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tlk-nav__item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: var(--radius-sm);
    color: var(--c-text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color var(--transition), background var(--transition);
}

.tlk-nav__item:hover {
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.06);
    opacity: 1;
}

.tlk-nav__item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

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

.tlk-status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    border: 1px solid var(--c-border);
}

.tlk-status__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-primary);
    box-shadow: 0 0 6px var(--c-primary);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 6px var(--c-primary);
    }
    50% {
        box-shadow: 0 0 12px var(--c-primary), 0 0 20px rgba(19, 202, 144, 0.4);
    }
}

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

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

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

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

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

.tlk-mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--c-header);
    border-bottom: 1px solid var(--c-border);
    padding: 16px 20px 24px;
    z-index: 998;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.tlk-mobile-menu.is-open {
    display: flex;
}

.tlk-mobile-menu .tlk-nav__item {
    font-size: 1rem;
    padding: 12px 14px;
}

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

.tlk-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('/img/luck-b.jpg');
    background-size: cover;
    background-position: center;
}

.tlk-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(21, 22, 26, 0.92) 0%, rgba(19, 202, 144, 0.1) 60%, rgba(61, 24, 164, 0.25) 100%);
}

.tlk-hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 0 70px;
    max-width: 680px;
}

.tlk-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 202, 144, 0.12);
    border: 1px solid rgba(19, 202, 144, 0.3);
    color: var(--c-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.tlk-hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

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

.tlk-hero__sub {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 560px;
}

.tlk-hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.tlk-hero__trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    font-size: 0.82rem;
    color: var(--c-text-muted);
}

.tlk-hero__trust-star {
    color: #f5a623;
    font-size: 1rem;
}

.tlk-section {
    padding: 64px 0;
}

.tlk-section--sm {
    padding: 48px 0;
}

.tlk-section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.tlk-section-sub {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    margin-bottom: 36px;
    line-height: 1.5;
}

.tlk-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.tlk-card:hover {
    border-color: rgba(19, 202, 144, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.tlk-card--alt {
    background: var(--c-card2);
}

.tlk-toc {
}

.tlk-toc__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tlk-toc__item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    text-decoration: none !important;
}

.tlk-toc__item:hover {
    color: var(--c-primary);
    border-color: rgba(19, 202, 144, 0.3);
    background: rgba(19, 202, 144, 0.05);
    opacity: 1;
}

.tlk-toc__item svg {
    color: var(--c-primary);
    flex-shrink: 0;
}

.tlk-mirrors {
}

.tlk-mirrors__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.tlk-mirrors__time {
    color: var(--c-primary);
    font-weight: 700;
}

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

.tlk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.tlk-table th {
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    color: var(--c-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid var(--c-border);
}

.tlk-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--c-border);
    vertical-align: middle;
}

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

.tlk-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.tlk-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}

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

.tlk-badge--purple {
    background: rgba(61, 24, 164, 0.2);
    color: #9b7ef8;
}

.tlk-badge--yellow {
    background: rgba(245, 166, 35, 0.12);
    color: #f5a623;
}

.tlk-video {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
    background: #000;
}

.tlk-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tlk-slot {
}

.tlk-slot__machine {
    background: linear-gradient(145deg, #1a1b22, #222430);
    border: 2px solid rgba(19, 202, 144, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(19, 202, 144, 0.05);
}

.tlk-slot__title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--c-primary);
    letter-spacing: 1px;
}

.tlk-slot__reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.tlk-slot__reel {
    width: 86px;
    height: 86px;
    background: var(--c-card);
    border: 2px solid var(--c-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    user-select: none;
    transition: transform 0.1s;
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.4);
}

.tlk-slot__reel.is-spinning {
    animation: reel-spin 0.12s linear infinite;
}

@keyframes reel-spin {
    0% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.85);
    }
    100% {
        transform: scaleY(1);
    }
}

.tlk-slot__result {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.tlk-slot__win-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--c-primary);
    animation: fade-in 0.4s ease;
}

.tlk-slot__lose-text {
    font-size: 0.95rem;
    color: var(--c-text-muted);
}

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

.tlk-content-block {
}

.tlk-content-block h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 32px 0 12px;
    color: var(--c-text);
}

.tlk-content-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 24px 0 10px;
    color: var(--c-text);
}

.tlk-content-block h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 20px 0 8px;
}

.tlk-content-block p {
    margin-bottom: 16px;
    color: var(--c-text);
    line-height: 1.75;
}

.tlk-content-block a {
    color: var(--c-secondary);
    text-decoration: underline;
}

.tlk-content-block ul, .tlk-content-block ol {
    margin: 12px 0 20px 22px;
}

.tlk-content-block li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.tlk-content-block strong {
    color: var(--c-primary);
    font-weight: 700;
}

.tlk-content-block em {
    color: var(--c-text-muted);
    font-style: italic;
}

.tlk-content-block blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 12px 20px;
    background: rgba(19, 202, 144, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
    color: var(--c-text-muted);
    font-style: italic;
}

.tlk-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.tlk-content-block table th, .tlk-content-block table td {
    padding: 12px 14px;
    border: 1px solid var(--c-border);
    text-align: left;
}

.tlk-content-block table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
}

.tlk-content-block img {
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

.tlk-steps {
    counter-reset: step-counter;
}

.tlk-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 24px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    margin-bottom: 14px;
    position: relative;
    transition: border-color var(--transition);
}

.tlk-step:hover {
    border-color: rgba(19, 202, 144, 0.25);
}

.tlk-step__num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary), var(--c-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 3px 12px rgba(19, 202, 144, 0.3);
}

.tlk-step__body h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.tlk-step__body p {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin: 0;
}

.tlk-safety-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tlk-safety-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 240px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tlk-safety-item__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: rgba(19, 202, 144, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
}

.tlk-safety-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.tlk-safety-item p {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin: 0;
    line-height: 1.5;
}

.tlk-comments {
}

.tlk-comment {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 16px;
}

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

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

.tlk-comment__meta {
}

.tlk-comment__name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.tlk-comment__date {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

.tlk-comment__stars {
    color: #f5a623;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.tlk-comment__text {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.65;
}

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

.tlk-form label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--c-text-muted);
    margin-bottom: 4px;
    display: block;
}

.tlk-form input, .tlk-form textarea, .tlk-form select {
    width: 100%;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: var(--c-text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.tlk-form input:focus, .tlk-form textarea:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(19, 202, 144, 0.12);
}

.tlk-form textarea {
    min-height: 120px;
    resize: vertical;
}

.tlk-form select option {
    background: var(--c-card);
}

.tlk-form__stars {
    display: flex;
    gap: 8px;
}

.tlk-form__star {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--c-border);
    transition: color var(--transition), transform var(--transition);
}

.tlk-form__star.is-active, .tlk-form__star:hover {
    color: #f5a623;
    transform: scale(1.2);
}

.tlk-form__msg {
    background: rgba(19, 202, 144, 0.1);
    border: 1px solid rgba(19, 202, 144, 0.3);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    color: var(--c-primary);
    font-weight: 600;
    display: none;
}

.tlk-form__msg.is-visible {
    display: block;
}

.tlk-author {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.tlk-author__photo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--c-primary);
    object-fit: cover;
    box-shadow: 0 0 20px rgba(19, 202, 144, 0.2);
}

.tlk-author__name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 3px;
}

.tlk-author__role {
    color: var(--c-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.tlk-author__bio {
    font-size: 0.9rem;
    color: var(--c-text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

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

.tlk-author__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--c-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-text-muted);
    transition: color var(--transition), border-color var(--transition);
}

.tlk-author__link:hover {
    color: var(--c-primary);
    border-color: rgba(19, 202, 144, 0.3);
    opacity: 1;
}

.tlk-author__dates {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.tlk-footer {
    background: var(--c-footer);
    border-top: 1px solid var(--c-border);
    margin-top: auto;
    padding: 52px 0 24px;
}

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

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

.tlk-footer__logo {
    height: 40px;
    margin-bottom: 16px;
}

.tlk-footer__tagline {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.tlk-footer__soc {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: color var(--transition), border-color var(--transition);
}

.tlk-footer__soc:hover {
    color: var(--c-primary);
    border-color: rgba(19, 202, 144, 0.3);
    opacity: 1;
}

.tlk-footer__col h5 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: var(--c-text-muted);
}

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

.tlk-footer__col li a {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    transition: color var(--transition);
}

.tlk-footer__col li a:hover {
    color: var(--c-text);
    opacity: 1;
}

.tlk-footer__mid {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--c-border);
}

.tlk-footer__mid-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    font-weight: 700;
}

.tlk-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.tlk-footer__pay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-text-muted);
    min-width: 80px;
}

.tlk-footer__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tlk-footer__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-text-muted);
}

.tlk-footer__trust-item svg {
    color: var(--c-primary);
    flex-shrink: 0;
}

.tlk-footer__flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 10px;
}

.tlk-footer__bottom {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

.tlk-footer__legal {
    line-height: 1.7;
    margin-bottom: 14px;
}

.tlk-footer__copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.tlk-footer__age {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--c-text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--c-text-muted);
    flex-shrink: 0;
}

.tlk-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 888;
    background: linear-gradient(90deg, #1a0f40 0%, #131b14 100%);
    border-top: 1px solid rgba(19, 202, 144, 0.3);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.tlk-widget__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.tlk-widget__bonus {
    color: var(--c-primary);
    font-weight: 800;
}

.tlk-widget__close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--c-text-muted);
    font-size: 1.2rem;
    padding: 4px 8px;
    line-height: 1;
    transition: color var(--transition);
}

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

.tlk-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tlk-provider {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--c-text-muted);
    transition: border-color var(--transition), color var(--transition);
}

.tlk-provider:hover {
    border-color: rgba(19, 202, 144, 0.3);
    color: var(--c-text);
}

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

.tlk-scroll-top {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 887;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--c-text-muted);
    transition: color var(--transition), border-color var(--transition), box-shadow var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.tlk-scroll-top.is-visible {
    display: flex;
}

.tlk-scroll-top:hover {
    color: var(--c-primary);
    border-color: rgba(19, 202, 144, 0.3);
    box-shadow: 0 4px 20px rgba(19, 202, 144, 0.15);
}

.wp-content-area {
    display: none;
}

#wpadminbar {
    display: none !important;
}

.wp-site-blocks {
    pointer-events: none;
    visibility: hidden;
    height: 0;
}

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

    .tlk-burger {
        display: flex;
    }

    .tlk-status {
        display: none;
    }

    .tlk-header__right {
        gap: 8px;
    }

    .tlk-hero {
        min-height: 420px;
    }

    .tlk-hero__content {
        padding: 60px 0 50px;
    }

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

    .tlk-author__links {
        justify-content: center;
    }

    .tlk-author__dates {
        justify-content: center;
    }

    .tlk-footer__top {
        gap: 24px;
    }

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

    .tlk-safety-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .tlk-hero__cta {
        flex-direction: column;
    }

    .tlk-hero__cta .tlk-btn {
        width: 100%;
        text-align: center;
    }

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

    .tlk-slot__reel {
        width: 70px;
        height: 70px;
        font-size: 2.4rem;
    }

    .tlk-widget {
        flex-direction: column;
        gap: 10px;
        padding: 14px 40px 14px 14px;
        text-align: center;
    }

    .tlk-widget__close {
        top: 14px;
        transform: none;
    }

    .tlk-footer__copy {
        flex-direction: column;
        gap: 10px;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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