/* =========================================================================
   Tsars Casino DE — eigenes Stylesheet.
   Thema: Himmel-Fantasy, fliegendes Goldschiff über schwebenden Schlössern.
   Helle Palette: Violett/Lavendel + Himmelblau + Gold auf Weiss.
   Alles ueber die Variablen unten steuern: zum Anpassen HIER aendern, nicht verstreut.
   Praefix .ts- an jeder Klasse, damit nichts mit Fremd-Skripten kollidiert.
   ========================================================================= */

:root {
    --bg: #ffffff;
    --bg-card: rgba(255,255,255,.74);
    --bg-surface: #f3f5fc;
    --bg-topbar: #ffffff;
    --accent: #6c5ce7;
    --accent-hover: #5848d6;
    --accent-2: #d9a441;
    --accent-2-hover: #c4912f;
    --green: #2ea86b;
    --green-dark: #228a55;
    --red: #e2574c;
    --red-dark: #c43f35;
    --text-white: #1c1838;
    --text-light: #2c2a46;
    --text-muted: #6d6a86;
    --edge: rgba(108,92,231,.22);
    --font: Roboto, system-ui, 'Segoe UI', sans-serif;
    --font-display: 'Arial Black', 'Segoe UI', system-ui, sans-serif;
    --topbar-h: 64px;
    --rds: 12px;
    --rds-s: 8px;
    --speed: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-light);
    line-height: 1.6; font-size: 15px; font-weight: 500; overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
p, li, dd, dt, span, a { font-weight: inherit; }
strong, b { font-weight: 800; }
main {
    position: relative;
}

main::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('../art/ts-body-bg.webp') center center / cover no-repeat;
    opacity: .75;
    pointer-events: none;
    z-index: -1;
}
main > * {
    position: relative;
    z-index: 1;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.ts-layout { display: block; }
.ts-sidebar { display: none; }

.ts-sidebar {
    background: var(--bg-topbar);
    border-right: 1px solid var(--edge);
    position: sticky;
    top: var(--topbar-h);
    height: calc(100vh - var(--topbar-h));
    overflow-y: auto;
    padding: 0;
    z-index: 10;
}
.ts-sidebar::-webkit-scrollbar { width: 4px; }
.ts-sidebar::-webkit-scrollbar-track { background: transparent; }
.ts-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }
.ts-sidebar__promo {
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 12px; text-decoration: none;
    background: linear-gradient(135deg, rgba(108,92,231,.15), rgba(108,92,231,.05));
    border-bottom: 1px solid var(--edge);
    transition: background var(--speed);
}
.ts-sidebar__promo:hover { background: linear-gradient(135deg, rgba(108,92,231,.25), rgba(108,92,231,.1)); }
.ts-sidebar__promo-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 4px;
}
.ts-sidebar__promo-value {
    font-size: 15px; font-weight: 700; color: var(--accent);
    text-align: center;
}
.ts-sidebar__section {
    padding: 14px 10px;
    border-top: 1px solid var(--edge);
}
.ts-sidebar__label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted);
    padding: 0 6px; margin-bottom: 10px; display: block;
}
.ts-sidebar__game {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 6px; border-radius: var(--rds-s);
    text-decoration: none; color: var(--text-light);
    transition: background var(--speed);
}
.ts-sidebar__game:hover { background: rgba(255,255,255,.05); }
.ts-sidebar__game-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 6px; overflow: hidden; }
.ts-sidebar__game-icon img { width: 100%; height: 100%; object-fit: cover; }
.ts-sidebar__game-info { display: flex; flex-direction: column; min-width: 0; }
.ts-sidebar__game-info strong { font-size: 13px; color: var(--text-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ts-sidebar__game-info small { font-size: 11px; color: var(--text-muted); }

/* Buttons — die Basis steckt in .ts-btn, die Varianten (--cta, --outline, --ghost, --lg/--sm) kommen oben drauf */
.ts-btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font); font-weight: 700; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    border-radius: 30px; letter-spacing: .5px; transition: all var(--speed);
}
.ts-btn--cta {
    background: linear-gradient(135deg, var(--accent), #5848d6);
    color: #ffffff; padding: 14px 40px; font-size: 16px;
    font-weight: 800;
    text-shadow: 0 1px 1px rgba(255,255,255,.25);
    box-shadow: 0 4px 16px rgba(108,92,231,.4);
    animation: ctaPulse 2.4s ease-in-out infinite;
}
.ts-btn--cta:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(108,92,231,.6); animation: none; }
@keyframes ctaPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(108,92,231,.4); }
    50% { transform: scale(1.035); box-shadow: 0 6px 22px rgba(108,92,231,.6); }
}
.ts-btn--primary { background: var(--accent); color: #ffffff; }
.ts-btn--outline {
    background: transparent; border: 2px solid var(--accent);
    color: var(--accent); padding: 8px 20px; font-size: 12px;
}
.ts-btn--outline:hover { background: var(--accent); color: #000; }
.ts-btn--ghost {
    background: var(--accent-2); border: 2px solid var(--accent-2);
    color: #ffffff; font-weight: 800; padding: 8px 20px; font-size: 12px;
}
.ts-btn--ghost:hover { background: var(--accent-2-hover); border-color: var(--accent-2-hover); color: #ffffff; }
.ts-btn--sm { padding: 8px 18px; font-size: 11px; }
.ts-btn--lg { padding: 16px 50px; font-size: 16px; }

/* Topbar fix oben (Desktop). Auf Mobil verschwindet sie und .ts-mobile-header übernimmt */
.ts-topbar {
    display: flex; align-items: center;
    height: var(--topbar-h); background: var(--bg-topbar);
    border-bottom: 1px solid var(--edge);
    position: sticky; top: 0; z-index: 100;
    padding: 0 24px; gap: 16px;
}
.ts-topbar__logo { flex-shrink: 0; text-decoration: none; }
.ts-topbar__logo img { height: 58px; width: auto; display: block; }
.ts-footer__logo-img { display: block; height: 42px; width: auto; margin-bottom: 16px; }
.ts-mobile-header__logo .ts-mobile-logo-img { display: block; height: 46px; width: auto; }
.ts-topbar__nav {
    display: flex; align-items: center; gap: 6px;
    flex: 1; justify-content: center;
    margin-left: 0;
}
.ts-topbar__nav-link {
    color: var(--text-muted); text-decoration: none;
    font-size: 15px; font-weight: 600;
    padding: 8px 18px; border-radius: 8px;
    transition: color var(--speed), background var(--speed);
    white-space: nowrap;
}
.ts-topbar__nav-link:hover { color: var(--text-white); background: rgba(255,255,255,.06); }
.ts-topbar__nav-link--active {
    color: #fff;
    background: rgba(108,92,231,.18);
    box-shadow: inset 0 -2px 0 var(--accent-2);
}

.ts-topbar__actions .ts-btn--outline {
    background: var(--accent); border-color: var(--accent); color: #ffffff;
}
.ts-topbar__actions .ts-btn--outline:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #ffffff; }
.ts-topbar__nav-link--bonus {
    color: #000; background: linear-gradient(135deg, var(--accent), #6c5ce7);
    font-weight: 700;
}
.ts-topbar__nav-link--bonus:hover { background: linear-gradient(135deg, var(--accent-hover), var(--accent)); color: #000; }

.ts-topbar__nav-link--bonus.ts-topbar__nav-link--active {
    color: #000;
    box-shadow:
        0 0 0 2px var(--bg-topbar),
        0 0 0 4px var(--accent),
        0 6px 16px rgba(108,92,231,.45);
}
.ts-topbar__actions { display: flex; gap: 10px; flex-shrink: 0; }

.ts-mobile-header {
    display: none; position: fixed; top: 0; left: 0; right: 0;
    height: 56px; background: var(--bg-topbar); z-index: 101;
    align-items: center; justify-content: space-between; padding: 0 16px;
    border-bottom: 1px solid var(--edge);
}
.ts-mobile-header__logo img { height: 46px; width: auto; }
/* Mobil: Header-Inhalt kompakt halten, damit Logo + CTA nebeneinander passen und nichts abgeschnitten wird */
@media (max-width: 600px) {
    .ts-mobile-header { padding: 0 12px; gap: 8px; }
    .ts-mobile-header__logo .ts-mobile-logo-img { height: 46px; max-width: 60vw; }
    .ts-mobile-header .ts-btn--sm { padding: 7px 12px; font-size: 10px; white-space: nowrap; flex-shrink: 0; }
}
.ts-burger {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 5px; padding: 8px;
}
.ts-burger span { display: block; width: 22px; height: 2px; background: var(--text-white); border-radius: 2px; transition: var(--speed); }

.ts-mobile-nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.97); z-index: 100;
    opacity: 0; visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    padding: 80px 32px 40px;
    overflow-y: auto;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
    gap: 6px;
}
.ts-mobile-nav--open { opacity: 1; visibility: visible; }
.ts-mobile-nav__link {
    display: block; padding: 16px 24px; color: var(--text-light);
    text-decoration: none; font-size: 20px; font-weight: 700;
    border-radius: 12px; transition: background var(--speed);
    text-align: center; width: 100%; max-width: 320px;
    border: 1px solid var(--edge);
}
.ts-mobile-nav__link:hover { background: rgba(255,255,255,.08); }
.ts-mobile-nav__link--bonus {
    color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border: none; font-size: 22px;
}
.ts-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 99; }
.ts-overlay--visible { display: block; }

.ts-hero { margin-bottom: 0; position: relative; }
.ts-hero-overlay-link {
    position: absolute; inset: 0; z-index: 1;
    text-decoration: none;
    cursor: pointer;
}
.ts-hero .ts-banner { position: relative; z-index: 2; }
.ts-hero .ts-banner .ts-btn--cta { position: relative; z-index: 3; }
/* Home-Banner. Das Bild setzt ::after (Licht links), ::before blendet den Grund
   nach #ffffff aus, damit es nahtlos an die Body-Farbe anschließt. Der Text liegt darüber, höherer z-index */
.ts-banner {
    position: relative; min-height: 640px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    border-radius: 0;
}
.ts-banner::after {
    content: ''; position: absolute; inset: 0;
    background: url('../art/ts-hero-bg.webp') left center/cover no-repeat;
    z-index: 0;
    filter: brightness(1.06) saturate(1.06);
    animation: heroPulse 6s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { transform: scale(1); filter: brightness(1.04) saturate(1.05); }
    50% { transform: scale(1.025); filter: brightness(1.12) saturate(1.12); }
}
.ts-banner::before {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(255,255,255,0) 55%, rgba(255,255,255,.55) 80%, rgba(255,255,255,1) 100%),
        radial-gradient(ellipse 46% 72% at 50% 46%, rgba(255,255,255,.62) 0%, rgba(255,255,255,.2) 58%, rgba(255,255,255,0) 78%);
    z-index: 1;
}
.ts-banner__body {
    position: relative; z-index: 2;
    padding: 56px 24px; max-width: 660px; margin: 0 auto; text-align: center;
}
.ts-banner__tag {
    display: inline-block; background: rgba(108,92,231,.15);
    color: var(--accent); font-size: 13px; font-weight: 700;
    padding: 6px 18px; border-radius: 20px; margin-bottom: 16px;
    letter-spacing: .5px; text-transform: uppercase;
}
.ts-banner__logo { width: 200px; margin: 0 0 20px; }
.ts-banner h1 {
    font-family: var(--font-display); font-size: 62px; font-weight: 700;
    color: #1c1838; margin-bottom: 14px; letter-spacing: .5px;
}
.ts-banner__offer {
    font-size: 58px; font-weight: 900; color: #1c1838;
    line-height: 1.08; margin-bottom: 14px;
}
.ts-banner__offer strong { color: #6c5ce7; }
.ts-banner__sub {
    font-size: 17px; color: #fff; margin-bottom: 28px;
}


.ts-slot-section {
    margin-bottom: 32px; padding: 24px;
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds);
    max-width: 70%; margin-left: auto; margin-right: auto;
}

.ts-slider-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; gap: 12px;
}
.ts-slider-title { display: flex; align-items: center; gap: 10px; min-width: 0; }
.ts-slider-title h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: .3px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.ts-section-header__icon { width: 24px; height: 24px; border-radius: 6px; }
.ts-slider-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ts-slider-arrows { display: flex; gap: 6px; }
.ts-slider-arrow {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--edge);
    color: var(--text-muted); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--speed); padding: 0;
}
.ts-slider-arrow:hover { border-color: var(--accent); color: var(--text-white); }
.ts-slider-arrow:disabled { opacity: .3; cursor: default; }
.ts-slider-arrow:disabled:hover { border-color: var(--edge); color: var(--text-muted); }
.ts-slider-arrow svg { width: 12px; height: 12px; fill: currentColor; }

/* Slot-/Anbieter-Karussell: horizontales Scrollen mit Snap. Die Scrollbar blende ich aus
   (die Pfeile reichen), aber das Wischen mit dem Finger bleibt auf Mobil erhalten */
.ts-slot-slider {
    display: flex; gap: 12px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding: 4px 0 8px;
}
.ts-slot-slider::-webkit-scrollbar { display: none; }

.ts-slot-tile {
    flex: 0 0 calc((100% - 60px) / 6);
    scroll-snap-align: start;
    text-decoration: none; color: var(--text-light);
    border-radius: var(--rds-s);
    position: relative;
    transition: transform var(--speed);
}
.ts-slot-tile::after {
    content: ''; position: absolute; inset: 0;
    border-radius: var(--rds-s);
    border: 3px solid transparent;
    transition: border-color var(--speed), box-shadow var(--speed);
    pointer-events: none; z-index: 3;
}
.ts-slot-tile:hover { transform: translateY(-4px); }
.ts-slot-tile:hover::after {
    border-color: rgba(108,92,231,.9);
    box-shadow: 0 0 20px rgba(108,92,231,.4);
}
.ts-slot-tile__thumb {
    aspect-ratio: 1/1;
    display: flex; align-items: center; justify-content: center;
    position: relative; border-radius: var(--rds-s) var(--rds-s) 0 0;
    overflow: hidden;
}
.ts-slot-tile__thumb img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
}
.ts-slot-tile__hover {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(108,92,231,.5) 0%, rgba(255,255,255,.25) 40%, rgba(255,255,255,.1) 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--speed);
}
.ts-slot-tile__hover .ts-play-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(108,92,231,.5);
    transition: transform .2s ease;
}
.ts-slot-tile__hover .ts-play-icon svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.ts-slot-tile:hover .ts-slot-tile__hover { opacity: 1; }
.ts-slot-tile:hover .ts-play-icon { transform: scale(1.1); }
.ts-slot-tile__meta {
    background: var(--bg-card); padding: 10px 12px;
    display: flex; flex-direction: column;
    border: 1px solid var(--edge); border-top: none;
    border-radius: 0 0 var(--rds-s) var(--rds-s);
}
.ts-slot-tile__meta strong { font-size: 13px; color: var(--text-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ts-slot-tile__meta small { font-size: 11px; color: var(--text-muted); }

.ts-slot-tile__live-tag {
    position: absolute; top: 8px; left: 8px;
    padding: 2px 8px; background: #e53935; color: #fff;
    font-size: 10px; font-weight: 700; border-radius: 4px;
    letter-spacing: .5px; z-index: 2;
}

.ts-vendor-tile {
    flex: 0 0 calc((100% - 60px) / 6);
    scroll-snap-align: start;
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds-s); padding: 16px 20px;
    display: flex; align-items: center; justify-content: center;
    min-height: 80px;
}
.ts-vendor-tile img { max-height: 40px; width: auto; object-fit: contain; filter: brightness(.9); transition: filter var(--speed); }
.ts-vendor-tile:hover img { filter: brightness(1.1); }

.ts-block {
    margin-bottom: 40px; padding: 0 24px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.ts-block h2 {
    font-size: 22px; font-weight: 700; color: var(--text-white);
    margin-bottom: 16px;
}
.ts-block p {
    color: var(--text-light); margin-bottom: 14px;
}
.ts-block a { color: var(--accent); text-decoration: underline; }

.ts-highlight-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px; margin: 20px 0;
}
.ts-highlight {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 24px;
    text-align: center;
}
.ts-highlight__icon { font-size: 36px; margin-bottom: 12px; }
.ts-highlight h3 { font-size: 16px; color: var(--text-white); margin-bottom: 8px; }
.ts-highlight p { font-size: 13px; color: var(--text-muted); margin: 0; }

.ts-features {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    padding: 0 24px; margin-bottom: 40px; max-width: 70%; margin-left: auto; margin-right: auto;
}
.ts-perk-box {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 28px 20px;
    text-align: center;
}
.ts-perk-box__icon { font-size: 32px; margin-bottom: 14px; }
.ts-perk-box h3 { font-size: 15px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.ts-perk-box p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.ts-qa-list { max-width: 1100px; margin-left: auto; margin-right: auto; }
/* FAQ als Akkordeon mit nativen <details>/<summary>: null JS, öffnet/schließt von selbst.
   Der kleine Pfeil ist das ::after des summary, das sich bei [open] dreht */
.ts-faq-item {
    border: 1px solid var(--edge); border-radius: var(--rds-s);
    margin-bottom: 10px; overflow: hidden;
    background: var(--bg-card);
    transition: border-color .25s ease;
}
.ts-faq-item[open] { border-color: var(--accent); }
.ts-faq-item__q {
    width: 100%; background: var(--bg-card); border: none;
    color: var(--text-white); font-family: var(--font);
    font-size: 15px; font-weight: 700; text-align: left;
    padding: 18px 22px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    list-style: none;
}
.ts-faq-item__q::-webkit-details-marker { display: none; }
.ts-faq-item__q::after {
    content: '+'; font-size: 24px; line-height: 1; color: var(--accent);
    font-weight: 300; transition: transform .25s ease;
    flex-shrink: 0;
}
.ts-faq-item[open] .ts-faq-item__q::after { transform: rotate(45deg); }
.ts-faq-item__a {
    padding: 0 22px 18px;
    font-size: 14px; color: var(--text-light); line-height: 1.7;
    font-weight: 500;
}
.ts-faq-item__a p { margin: 0; }

.ts-cta-section {
    text-align: center; padding: 48px 24px;
    background: linear-gradient(135deg, rgba(108,92,231,.08), rgba(255,203,5,.05));
    border-radius: var(--rds); margin: 0 auto 40px;
    border: 1px solid var(--edge); max-width: 900px;
}
.ts-cta-section h2 { font-size: 26px; color: var(--text-white); margin-bottom: 12px; }
.ts-cta-section p { color: var(--text-muted); margin-bottom: 24px; }

/* Footer: gleicher Grund wie die Topbar, um den Kreis zu schließen. Drin: Brand, Links, Zahlungslogos
   und rechtlicher Hinweis (Curaçao, 18+, verantwortungsvolles Spielen) */
.ts-footer {
    background: var(--bg-topbar); border-top: 1px solid var(--edge);
    padding: 40px 24px 20px; font-family: var(--font);
}
.ts-footer__top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 40px; margin-bottom: 28px; max-width: 70%; margin-left: auto; margin-right: auto;
}
.ts-footer__brand { max-width: 400px; flex-shrink: 0; }
.ts-footer__logo-img { height: 50px; width: auto; margin-bottom: 16px; }
.ts-footer__desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.ts-footer__links {
    display: flex; gap: 48px; flex: 1; justify-content: flex-end;
}
.ts-footer__nav ul { list-style: none; padding: 0; margin: 0; }
.ts-footer__heading {
    font-size: 13px; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 12px;
}
.ts-footer__nav li a {
    display: block; font-size: 13px; color: var(--text-muted);
    text-decoration: none; padding: 3px 0; transition: color var(--speed);
}
.ts-footer__nav li a:hover { color: var(--text-white); }
.ts-footer__providers {
    display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 20px 0;
    border-top: 1px solid var(--edge); max-width: 70%; margin: 0 auto;
}
.ts-footer__providers span {
    font-size: 11px; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: .5px;
}
.ts-footer__pays {
    display: flex; flex-wrap: wrap; gap: 10px; padding: 20px 0;
    border-top: 1px solid var(--edge); max-width: 70%; margin: 0 auto;
}
.ts-pay-badge {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 6px 12px; background: var(--bg-card);
    border: 1px solid var(--edge); border-radius: 6px;
}
.ts-footer__bottom {
    border-top: 1px solid var(--edge); padding-top: 20px;
    max-width: 70%; margin: 0 auto;
}
.ts-footer__badges { display: flex; gap: 12px; align-items: center; justify-content: center; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--edge); max-width: 70%; margin-left: auto; margin-right: auto; }
.ts-footer__age {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid #e53935; color: #e53935; font-size: 12px; font-weight: 700;
}
.ts-footer__badge {
    font-size: 11px; color: var(--text-muted); background: var(--bg-card);
    padding: 4px 10px; border-radius: 4px; border: 1px solid var(--edge);
}
.ts-footer__disclaimer {
    font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px;
}
.ts-footer__disclaimer a { color: var(--accent); text-decoration: underline; }
.ts-footer__copy { font-size: 11px; color: var(--text-muted); opacity: .5; }

.ts-cta-strip-wrap {
    padding: 0 24px; margin-bottom: 32px; max-width: 1100px; margin-left: auto; margin-right: auto;
}
.ts-cta-strip {
    display: flex; align-items: center; justify-content: flex-start;
    background:
        linear-gradient(to right, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 32%, rgba(255,255,255,.4) 60%, rgba(255,255,255,.12) 100%),
        url('../art/ts-promo-2.webp') right 20% / cover no-repeat,
        #ffffff;
    border: 3px solid var(--accent); border-radius: var(--rds);
    overflow: hidden; text-decoration: none; color: #fff;
    min-height: 300px; position: relative;
    transition: all var(--speed);
}
.ts-cta-strip:hover {
    border-color: var(--accent); box-shadow: 0 4px 30px rgba(108,92,231,.3);
    transform: translateY(-2px);
}
.ts-cta-strip__text {
    padding: 40px 48px; max-width: 620px; position: relative; z-index: 2;
    text-align: left;
}
.ts-cta-strip__label {
    font-size: 22px; color: #d2cce4; margin-bottom: 8px; font-weight: 700;
    font-style: italic;
}
.ts-cta-strip__title {
    font-size: 52px; font-weight: 900; color: #6c5ce7; line-height: 1.05;
    margin-bottom: 12px; text-transform: uppercase; font-style: italic;
    text-shadow: 0 3px 10px rgba(0,0,0,.6);
}
.ts-cta-strip__sub {
    font-size: 19px; color: #fff; margin-bottom: 24px; font-weight: 600;
    font-style: italic; opacity: .9;
}
.ts-cta-strip__btn {
    display: inline-block; padding: 10px 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff; font-weight: 700; font-size: 15px;
    border-radius: 30px; text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(108,92,231,.4);
    transition: background .25s ease, box-shadow .25s ease;
    animation: tsPulse 2s ease-in-out infinite;
}
.ts-cta-strip:hover .ts-cta-strip__btn {
    background: linear-gradient(135deg, #6c5ce7, var(--accent));
    box-shadow: 0 6px 28px rgba(108,92,231,.6);
    animation: none;
}
@keyframes tsPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(108,92,231,.4); }
    50%      { transform: scale(1.06); box-shadow: 0 8px 32px rgba(108,92,231,.65); }
}
.ts-cta-strip__art { display: none; }

@media (max-width: 600px) {
    .ts-cta-strip {
        flex-direction: column; text-align: center;
        background:
            linear-gradient(to bottom, rgba(255,255,255,.62) 0%, rgba(255,255,255,.9) 72%),
            url('../art/ts-promo-2.webp') center 18% / cover no-repeat,
            #ffffff;
    }
    .ts-cta-strip__text { padding: 28px 20px; max-width: 100%; text-align: center; }
    .ts-cta-strip__title { font-size: 28px; }
    .ts-cta-strip-wrap { padding: 0 16px; }
}

@media (max-width: 968px) {
    .ts-slot-section,
    .ts-cta-strip-wrap,
    .ts-features,
    .ts-footer__top,
    .ts-footer__providers,
    .ts-footer__pays,
    .ts-footer__bottom,
    .ts-footer__badges {
        max-width: 100%;
    }
    
    .ts-footer__top { flex-direction: column; gap: 28px; align-items: flex-start; }
    .ts-footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 20px; width: 100%; }
}

.ts-bonus-tiers {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 10px; margin: 20px 0;
}
.ts-bonus-tier {
    background: linear-gradient(180deg, rgba(255,255,255,.40), rgba(255,255,255,.34)); border: 1px solid var(--edge);
    border-radius: var(--rds-s); padding: 18px 10px;
    text-align: center; display: flex; flex-direction: column;
    align-items: center; gap: 6px; transition: all var(--speed);
    box-shadow: 0 2px 8px rgba(0,0,0,.3); text-decoration: none; cursor: pointer;
}
.ts-bonus-tier:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,.4); }
.ts-bonus-tier__num { color: var(--accent); }
.ts-bonus-tier__num svg { width: 28px; height: 28px; }
.ts-bonus-tier__pct { font-size: 18px; font-weight: 700; color: var(--text-white); line-height: 1.2; text-transform: uppercase; }
.ts-bonus-tier__max { font-size: 12px; color: var(--text-muted); }

.ts-breadcrumbs {
    padding: 16px 24px 0; font-size: 13px; color: var(--text-muted);
    max-width: 900px; margin-left: auto; margin-right: auto;
}
.ts-breadcrumbs a { color: var(--accent); text-decoration: none; }
.ts-breadcrumbs a:hover { text-decoration: underline; }
.ts-breadcrumbs span { margin: 0 6px; opacity: .5; }

.ts-bonus-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px; margin: 24px 0;
}
.ts-bonus-card {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 24px; text-align: center;
}
.ts-bonus-card__icon { font-size: 32px; margin-bottom: 10px; }
.ts-bonus-card h3 { font-size: 15px; color: var(--text-white); margin-bottom: 6px; }
.ts-bonus-card p { font-size: 13px; color: var(--text-muted); margin: 0; }
.ts-bonus-card--highlight { border-color: var(--accent); background: rgba(108,92,231,.05); }

.ts-pros-cons {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin: 24px 0; max-width: 800px;
}
.ts-pros-box, .ts-cons-box {
    background: var(--bg-card); border-radius: var(--rds);
    padding: 20px; border: 1px solid var(--edge);
}
.ts-pros-box h3 { color: var(--accent-2); margin-bottom: 12px; font-size: 15px; }
.ts-cons-box h3 { color: #e53935; margin-bottom: 12px; font-size: 15px; }
.ts-pros-box ul, .ts-cons-box ul { list-style: none; padding: 0; }
.ts-pros-box li, .ts-cons-box li {
    font-size: 13px; color: var(--text-light); padding: 6px 0;
    padding-left: 20px; position: relative;
}
.ts-pros-box li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-2); font-weight: 700; }
.ts-cons-box li::before { content: '✗'; position: absolute; left: 0; color: #e53935; font-weight: 700; }

.ts-review-card {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 20px; margin-bottom: 16px;
    max-width: 800px;
}
.ts-review-card__header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.ts-review-card__avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(108,92,231,.15); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.ts-review-card__name { font-size: 14px; font-weight: 600; color: var(--text-white); }
.ts-review-card__date { font-size: 11px; color: var(--text-muted); }
.ts-review-card__stars { color: var(--accent); font-size: 14px; margin-bottom: 8px; letter-spacing: 1px; }
.ts-review-card__text { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.ts-info-table {
    width: 100%; border-collapse: collapse; margin: 20px 0;
    max-width: 800px;
}
.ts-info-table th, .ts-info-table td {
    padding: 12px 16px; text-align: left; font-size: 13px;
    border-bottom: 1px solid var(--edge);
}
.ts-info-table th {
    background: var(--bg-card); color: var(--accent);
    font-weight: 700; font-size: 12px; text-transform: uppercase;
    letter-spacing: .5px;
}
.ts-info-table td { color: var(--text-light); }
.ts-info-table tr:hover td { background: rgba(255,255,255,.02); }

.ts-article {
    max-width: 1200px; margin-left: auto; margin-right: auto;
    font-family: var(--font);
}
.ts-article h2 {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 800; color: #fff;
    text-align: left; letter-spacing: .2px;
    margin: 36px 0 22px;
    padding-left: 18px;
    border-left: 5px solid var(--accent);
    line-height: 1.15;
    text-shadow: none;
}
.ts-article h3 {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 800; color: #fff;
    text-align: left; letter-spacing: .2px;
    margin: 32px 0 18px;
    padding-left: 14px;
    border-left: 4px solid var(--accent);
    line-height: 1.2;
    text-shadow: none;
}
.ts-article p { text-align: left; }
.ts-article p {
    font-size: 15px; line-height: 1.75; color: var(--text-light);
    font-weight: 500;
    margin-bottom: 14px;
}
.ts-article a { color: var(--accent); text-decoration: underline; }
.ts-article hr {
    border: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    margin: 36px auto;
    max-width: 1080px;
}

@media (max-width: 600px) {
    .ts-article h2 { font-size: 24px; margin: 28px 0 18px; }
    .ts-article h3 { font-size: 19px; margin: 24px 0 14px; }
    .ts-article hr { margin: 28px auto; }

    /* Footer: 3 Spalten, auch auf schmalen Bildschirmen ausgerichtet */
    .ts-footer__links { gap: 20px 12px; }
    .ts-footer__heading { font-size: 11.5px; letter-spacing: .3px; }
    .ts-footer__nav li a { font-size: 11.5px; padding: 3px 0; }
}

.ts-article-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin: -10px 0 30px;
    font-style: italic;
}

.ts-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 36px;
}
.ts-intro-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}
.ts-intro-text p { text-align: left; }

.ts-info-card {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(108,92,231,.10), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.46), rgba(255,255,255,.40));
    border: 1px solid rgba(108,92,231,.26);
    border-radius: 16px;
    padding: 36px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow:
        0 10px 40px rgba(0,0,0,.4),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.ts-info-card__badge {
    position: absolute;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #5848d6);
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(108,92,231,.4);
}

.ts-info-card__head {
    display: flex; flex-direction: column; align-items: center;
    gap: 4px;
    padding: 8px 0 4px;
}
.ts-info-card__brand {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: .5px;
    line-height: 1;
}
.ts-info-card__tag {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.ts-info-card__score {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,.03);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}
.ts-info-card__score-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    flex-shrink: 0;
}
.ts-info-card__score-meta { display: flex; flex-direction: column; gap: 4px; }
.ts-info-card__score-meta .ts-stars {
    color: #6c5ce7; letter-spacing: 1.5px; font-size: 14px;
}
.ts-info-card__score-label {
    font-size: 11px; color: var(--text-muted); font-weight: 500;
}

.ts-info-card__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px 14px;
}
.ts-info-stat {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 8px;
    background: rgba(255,255,255,.025);
    border-radius: 8px;
}
.ts-info-stat__icon {
    width: 22px; height: 22px;
    color: var(--accent);
    flex-shrink: 0;
}
.ts-info-stat__label {
    font-size: 10.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    margin-bottom: 1px;
}
.ts-info-stat__value {
    font-family: var(--font-display);
    font-size: 14px;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
}

.ts-info-card__highlights {
    padding: 14px 14px 12px;
    background: var(--bg-card);
    border-radius: 10px;
    border-left: 3px solid var(--accent-2);
}
.ts-info-card__highlights-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.ts-info-card__highlights ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.ts-info-card__highlights li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.4;
    font-weight: 500;
}
.ts-info-card__highlights li::before {
    content: '✓';
    color: var(--accent-2);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.ts-info-card__payments {
    padding: 12px 14px;
    background: rgba(255,255,255,.025);
    border-radius: 10px;
}
.ts-info-card__payments-title {
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.ts-info-card__payments-icons {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.ts-info-card__payments-icons span {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px;
    color: var(--text-light);
    letter-spacing: .5px;
}

.ts-info-card__breakdown {
    padding: 14px 14px 12px;
    background: rgba(255,255,255,.025);
    border-radius: 10px;
}
.ts-info-card__breakdown-title {
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.ts-rating-bar {
    display: grid;
    grid-template-columns: 108px 1fr 30px;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.ts-rating-bar:last-child { margin-bottom: 0; }
.ts-rating-bar__label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    white-space: nowrap;
}
.ts-rating-bar__track {
    height: 6px;
    background: rgba(255,255,255,.06);
    border-radius: 3px;
    overflow: hidden;
}
.ts-rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #5848d6);
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(108,92,231,.4);
}
.ts-rating-bar__value {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    color: var(--text-white);
    text-align: right;
}

@media (max-width: 600px) {
    .ts-info-card__breakdown { display: none; }
}

.ts-info-card__cta {
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #c4912f 50%, var(--accent) 100%);
    background-size: 200% 100%;
    color: #fff !important;
    text-decoration: none !important;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    box-shadow:
        0 8px 28px rgba(108,92,231,.45),
        inset 0 -2px 0 rgba(0,0,0,.15);
    transition: all .3s ease;
}
.ts-info-card__cta svg {
    width: 18px; height: 18px;
    transition: transform .3s ease;
}
.ts-info-card__cta:hover {
    background-position: 100% 0;
    box-shadow: 0 12px 36px rgba(108,92,231,.6), inset 0 -2px 0 rgba(0,0,0,.15);
}
.ts-info-card__cta:hover svg { transform: translateX(4px); }

.ts-info-card__foot {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .3px;
}

.ts-quick-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: auto 0 0;
}
.ts-quick-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px;
    padding: 22px 14px;
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 14px;
    text-decoration: none !important;
    text-align: center;
    transition: all .25s ease;
}
.ts-quick-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(108,92,231,.15);
}
.ts-quick-card__icon {
    width: 30px; height: 30px; color: var(--accent);
    margin-bottom: 2px;
}
.ts-quick-card__title {
    color: var(--accent);
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ts-quick-card__desc {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 968px) {
    .ts-intro-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    .ts-info-card { max-width: 480px; margin: 0 auto; width: 100%; min-width: 0; }
    .ts-quick-cards { grid-template-columns: repeat(3, 1fr); }
}

.ts-mobile-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 24px;
}
.ts-mobile-section__text h2 {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 800; color: #fff;
    text-align: left;
    margin: 0 0 18px;
    padding-left: 16px;
    border-left: 4px solid var(--accent);
    line-height: 1.15;
    text-shadow: none;
}
.ts-mobile-section__text h3 {
    font-family: var(--font-display);
    font-size: 19px; font-weight: 800; color: #fff;
    text-align: left;
    margin: 26px 0 12px;
    padding-left: 13px;
    border-left: 3px solid var(--accent);
}
.ts-mobile-section__text p {
    font-size: 15px; line-height: 1.75; color: var(--text-light);
    font-weight: 500;
    margin-bottom: 24px;
}
.ts-check-list {
    list-style: none; margin: 0 0 28px; padding: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.ts-check-list li {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-light); font-size: 14px; font-weight: 500;
}
.ts-check-list li::before {
    content: '✓';
    width: 22px; height: 22px;
    background: rgba(108,92,231,.12);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-weight: 800; font-size: 13px;
    flex-shrink: 0;
}
.ts-platform-badges {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.ts-platform-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 10px;
    color: var(--text-white);
    font-weight: 700; font-size: 14px;
    text-decoration: none !important;
    transition: all .2s ease;
}
.ts-platform-badge:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.ts-platform-badge svg { width: 18px; height: 18px; }
.ts-platform-badge--ios svg { fill: #fff; }
.ts-platform-badge--android svg { fill: #3ddc84; }

.ts-phone-photo {
    display: block;
    width: 280px; max-width: 100%; height: auto;
}

@media (max-width: 968px) {
    .ts-mobile-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ts-phone-photo { width: 240px; }
    .ts-mobile-section__text h2 { font-size: 26px; }
}

.ts-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0 8px;
}
.ts-review-card {
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 22px;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ts-review-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.ts-review-card__head {
    display: flex; align-items: center; gap: 12px;
}
.ts-review-card__avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #5848d6);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 17px;
    font-family: var(--font-display);
    flex-shrink: 0;
}
.ts-review-card__name {
    font-weight: 700; font-size: 14px; color: var(--text-white);
}
.ts-review-card__date {
    font-size: 12px; color: var(--text-muted); margin-top: 2px;
}
.ts-review-card__stars {
    color: #6c5ce7; letter-spacing: 2px; font-size: 15px;
}
.ts-review-card__quote {
    color: var(--text-light); font-size: 14px; line-height: 1.6;
    font-style: italic;
    margin: 0; text-align: left;
    position: relative;
    padding-left: 14px;
    border-left: 3px solid rgba(255,203,5,.35);
}

@media (max-width: 968px) {
    .ts-reviews-grid { grid-template-columns: 1fr; }
}

.ts-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin: 28px 0 8px;
    padding: 20px 0;
}
.ts-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    position: relative;
}
.ts-step__circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #5848d6);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 22px;
    box-shadow: 0 8px 24px rgba(108,92,231,.35);
    margin-bottom: 14px;
    position: relative; z-index: 2;
}
.ts-step__circle svg {
    width: 28px; height: 28px;
    stroke: #fff; stroke-width: 2.2; fill: none;
}
.ts-step__title {
    font-family: var(--font-display);
    font-size: 14px; font-weight: 800; color: var(--accent);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 6px;
}
.ts-step__desc {
    font-size: 13px; color: var(--text-light); line-height: 1.45;
    font-weight: 500;
}
.ts-step__line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(108,92,231,.4), rgba(108,92,231,.15));
    margin-top: 32px;
    min-width: 20px;
    position: relative;
}
.ts-step__line::before {
    content: '';
    position: absolute; right: -2px; top: -3px;
    width: 8px; height: 8px;
    background: rgba(108,92,231,.4);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .ts-stepper {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .ts-step { max-width: 320px; margin-bottom: 16px; }
    .ts-step__line {
        width: 2px; height: 30px;
        min-width: 0;
        margin-top: 0; margin-bottom: 8px;
        background: linear-gradient(180deg, rgba(108,92,231,.5), rgba(108,92,231,.15));
        flex: none;
    }
    .ts-step__line::before { display: none; }
}

.ts-speed-bars {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 28px 0 12px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 14px;
}
.ts-speed-bar { display: flex; flex-direction: column; gap: 8px; }
.ts-speed-bar__head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.ts-speed-bar__method {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-white);
    font-weight: 700; font-size: 14px;
}
.ts-speed-bar__method svg {
    width: 22px; height: 22px;
    fill: var(--accent);
}
.ts-speed-bar__time {
    font-family: var(--font-display);
    font-weight: 800; font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
}
.ts-speed-bar__time--fast {
    background: rgba(255,203,5,.15);
    color: var(--accent-2);
}
.ts-speed-bar__time--medium {
    background: rgba(108,92,231,.15);
    color: var(--accent);
}
.ts-speed-bar__time--slow {
    background: rgba(255,107,107,.12);
    color: #ff8c8c;
}
.ts-speed-bar__track {
    height: 10px;
    background: rgba(255,255,255,.06);
    border-radius: 20px;
    overflow: hidden;
}
.ts-speed-bar__fill {
    height: 100%;
    border-radius: 20px;
    transition: width .6s ease;
    position: relative;
}
.ts-speed-bar__fill--fast {
    background: linear-gradient(90deg, #6c5ce7, #d9a441);
    box-shadow: 0 0 12px rgba(255,203,5,.4);
}
.ts-speed-bar__fill--medium {
    background: linear-gradient(90deg, var(--accent), #5848d6);
    box-shadow: 0 0 12px rgba(108,92,231,.35);
}
.ts-speed-bar__fill--slow {
    background: linear-gradient(90deg, #ff8c8c, #d65555);
    box-shadow: 0 0 12px rgba(255,107,107,.3);
}
.ts-speed-bars__legend {
    display: flex; gap: 18px; justify-content: center;
    margin-top: 6px; padding-top: 16px;
    border-top: 1px solid var(--edge);
    font-size: 12px; color: var(--text-muted);
    flex-wrap: wrap;
}
.ts-speed-bars__legend span {
    display: inline-flex; align-items: center; gap: 6px;
}
.ts-speed-bars__legend span::before {
    content: ''; width: 10px; height: 10px; border-radius: 50%;
    display: inline-block;
}
.ts-speed-bars__legend .ts-leg-fast::before { background: var(--accent-2); }
.ts-speed-bars__legend .ts-leg-medium::before { background: var(--accent); }
.ts-speed-bars__legend .ts-leg-slow::before { background: #ff8c8c; }

@media (max-width: 600px) {
    .ts-speed-bars { padding: 18px; }
    .ts-speed-bar__head { flex-direction: column; align-items: flex-start; gap: 6px; }
}

.ts-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 240px));
    justify-content: center;
    gap: 14px;
    margin: 28px auto 12px;
}
.ts-trust-badge {
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.ts-trust-badge:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.ts-trust-badge__icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(108,92,231,.2), rgba(108,92,231,.05));
    border: 1.5px solid rgba(108,92,231,.3);
    display: flex; align-items: center; justify-content: center;
}
.ts-trust-badge__icon svg {
    width: 30px; height: 30px;
    stroke: var(--accent); stroke-width: 2; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
}
.ts-trust-badge__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.ts-trust-badge__desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .ts-trust-badges { grid-template-columns: repeat(3, 1fr); }
}

.ts-cta-block {
    position: relative;
    margin: 48px 0 32px;
    padding: 44px 32px 28px;
    text-align: center;
    background:
        radial-gradient(ellipse at top, rgba(108,92,231,.14), transparent 65%),
        linear-gradient(180deg, #f3f5fc, #ffffff);
    border: 1px solid rgba(108,92,231,.28);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 18px 50px rgba(0,0,0,.5),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.ts-cta-block::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-2), var(--accent), var(--accent-2), transparent);
}

.ts-cta-block h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-align: center !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    border-left: none !important;
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
    line-height: 1.15;
}
.ts-cta-block p {
    font-size: 16px;
    color: var(--text-light);
    text-align: center !important;
    margin: 0 auto 28px;
    max-width: 540px;
    font-weight: 500;
}
.ts-cta-block p strong { color: #fff; font-weight: 800; }
.ts-cta-block .ts-btn--cta {
    margin: 0 auto;
    color: #ffffff !important;
    text-decoration: none !important;
}

.ts-cta-block .ts-info-card__foot {
    margin-top: 28px !important;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: .3px;
}

@media (max-width: 600px) {
    .ts-cta-block { padding: 32px 20px 22px; }
    .ts-cta-block h2 { font-size: 24px; }
    .ts-cta-block p { font-size: 14px; }
}

/* Cookie-Banner: startet außerhalb des Bildschirms (translateY) und gleitet hoch, sobald das JS .ts-is-visible setzt */
.ts-cookie-banner {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 560px;
    margin: 0 auto;
    background: linear-gradient(180deg, #f3f5fc, #ffffff);
    border: 1px solid rgba(108,92,231,.3);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    z-index: 9999;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    transform: translateY(120%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.ts-cookie-banner.ts-is-visible { transform: translateY(0); }
.ts-cookie-banner__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    display: flex; align-items: center; gap: 8px;
}
.ts-cookie-banner__title::before { content: '🍪'; font-size: 18px; }
.ts-cookie-banner__text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0 0 16px;
    font-weight: 500;
}
.ts-cookie-banner__text a {
    color: var(--accent);
    text-decoration: underline;
}
.ts-cookie-banner__actions {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.ts-cookie-banner__btn {
    flex: 1; min-width: 130px;
    padding: 10px 16px;
    font-family: var(--font-display);
    font-weight: 800; font-size: 12px;
    text-transform: uppercase; letter-spacing: .8px;
    border: none; border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
}
.ts-cookie-banner__btn--accept {
    background: linear-gradient(135deg, var(--accent), #5848d6);
    color: #fff;
    box-shadow: 0 4px 16px rgba(108,92,231,.4);
}
.ts-cookie-banner__btn--accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(108,92,231,.55);
}
.ts-cookie-banner__btn--reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,.18);
}
.ts-cookie-banner__btn--reject:hover {
    background: rgba(255,255,255,.05);
    color: #fff;
}
/* Einwilligungskategorien (Notwendig / Analyse / Marketing) */
.ts-cookie-banner__cats {
    display: flex; flex-wrap: wrap; gap: 10px 18px;
    margin: 14px 0 16px;
}
.ts-cookie-cat {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-light); cursor: pointer;
}
.ts-cookie-cat input { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }
.ts-cookie-cat small { color: var(--text-muted); font-size: 11px; }
.ts-cookie-cat--locked { opacity: .85; cursor: default; }
.ts-cookie-cat--locked input { cursor: not-allowed; }
.ts-cookie-banner__btn--save {
    background: rgba(108,92,231,.14);
    color: var(--accent-2);
    border: 1px solid var(--edge);
}
.ts-cookie-banner__btn--save:hover { background: rgba(108,92,231,.22); color: #fff; }
.ts-footer__cookie-settings { margin-top: 8px; }
.ts-footer__cookie-settings a { color: var(--text-muted); font-size: 11px; text-decoration: underline; }
.ts-footer__cookie-settings a:hover { color: var(--accent); }
@media (max-width: 600px) {
    .ts-cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 18px 16px; }
    .ts-cookie-banner__btn { flex: 1 1 100%; min-width: 0; }
}

.ts-super-bonus-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 11px;
    background: linear-gradient(135deg, #f3f5fc, #ffffff);
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 12px 24px 12px 13px;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(108,92,231,.28), 0 0 12px rgba(108,92,231,.15);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: superBonusPulse 2.4s ease-in-out infinite;
}
.ts-super-bonus-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 32px rgba(108,92,231,.5), 0 0 20px rgba(108,92,231,.3);
}
.ts-super-bonus-btn__icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), #6c5ce7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.ts-super-bonus-btn__text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 17px;
    color: var(--accent);
    letter-spacing: .3px;
}
@keyframes superBonusPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 24px rgba(108,92,231,.28), 0 0 12px rgba(108,92,231,.15); }
    50% { transform: scale(1.07); box-shadow: 0 4px 40px rgba(108,92,231,.6), 0 0 26px rgba(108,92,231,.35); }
}

.ts-super-bonus-popup {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 998;
    width: 340px;
    background: linear-gradient(170deg, #f3f5fc 0%, #ffffff 55%, #f3f5fc 100%);
    border: 2px solid var(--accent);
    border-radius: 18px;
    padding: 26px 20px 20px;
    box-shadow: 0 16px 56px rgba(0,0,0,.6), 0 0 50px rgba(108,92,231,.12);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.ts-super-bonus-popup.ts-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.ts-super-bonus-popup__close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}
.ts-super-bonus-popup__close:hover { color: var(--text-white); }

.ts-super-bonus-popup__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 18px;
    line-height: 1.4;
    text-align: center;
}
.ts-super-bonus-popup__title span { color: var(--accent); }

.ts-super-bonus-popup__tiers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.ts-super-bonus-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(108,92,231,.18);
    border-radius: 12px;
    padding: 9px 14px 9px 9px;
    transition: border-color .2s, background .2s;
}
.ts-super-bonus-tier:hover { border-color: rgba(108,92,231,.5); background: rgba(108,92,231,.06); }
.ts-super-bonus-tier__count {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light);
}
.ts-super-bonus-tier__count strong {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #6c5ce7);
    color: #ffffff; font-size: 15px; font-weight: 800;
}
.ts-super-bonus-tier__count span { color: var(--text-muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.ts-super-bonus-tier__reward { font-size: 14px; font-weight: 800; color: var(--text-white); }

.ts-super-bonus-popup__today {
    text-align: center;
    margin: 4px 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
}
.ts-super-bonus-popup__today::before,
.ts-super-bonus-popup__today::after { content: '✦ '; }
.ts-super-bonus-popup__fs {
    text-align: center;
    background: linear-gradient(135deg, rgba(108,92,231,.12), rgba(108,92,231,.1));
    border: 1.5px solid var(--accent);
    border-radius: 12px;
    padding: 12px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: .5px;
    text-shadow: 0 0 18px rgba(108,92,231,.3);
    margin-bottom: 16px;
}
.ts-super-bonus-popup__cta {
    display: block;
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--accent), #6c5ce7);
    border: none;
    border-radius: 30px;
    color: #ffffff !important;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ts-super-bonus-popup__cta:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(108,92,231,.5);
}
.ts-super-bonus-popup__tc {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-size: 11px;
    color: var(--accent-2);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .ts-super-bonus-btn { bottom: 16px; right: 16px; padding: 8px 16px 8px 10px; }
    .ts-super-bonus-btn__icon { width: 30px; height: 30px; font-size: 16px; }
    .ts-super-bonus-btn__text { font-size: 14px; }
    .ts-super-bonus-popup { right: 10px; left: 10px; width: auto; bottom: 80px; }
}

.ts-lucky-wheel-section {
    margin: 40px 0;
    padding: 36px 28px;
    background:
        radial-gradient(ellipse at top, rgba(108,92,231,.12), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.40), rgba(255,255,255,.34));
    border: 1px solid rgba(108,92,231,.25);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.5);
}
.ts-lucky-wheel-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
    align-items: center;
}
.ts-lucky-wheel-section__text h2 {
    font-family: var(--font-display);
    font-size: 30px; font-weight: 800; color: #fff;
    text-align: left;
    padding-left: 18px;
    border-left: 5px solid var(--accent);
    line-height: 1.15;
    margin: 0 0 16px;
}
.ts-lucky-wheel-section__text p {
    font-size: 15px; color: var(--text-light); line-height: 1.6;
    margin: 0 0 14px; font-weight: 500;
}
.ts-lucky-wheel-section__list {
    list-style: none; padding: 0; margin: 18px 0 0;
    display: flex; flex-direction: column; gap: 10px;
}
.ts-lucky-wheel-section__list li {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-light); font-size: 14px; font-weight: 500;
}
.ts-lucky-wheel-section__list li::before {
    content: '★'; color: var(--accent); font-size: 16px;
}

/* Glücksrad (Bonus-Seite). Die Scheibe zeichnet das Canvas per JS; hier gebe ich nur
   den Rahmen und den Puls (wheelPulse), der sie "atmen" lässt, um den Klick anzulocken */
.ts-spin-wheel {
    position: relative; width: 100%; aspect-ratio: 1; max-width: 380px;
    margin: 0 auto;
    animation: wheelPulse 2.5s ease-in-out infinite;
}
@keyframes wheelPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(108,92,231,0.2)); }
    50% { transform: scale(1.03); filter: drop-shadow(0 0 20px rgba(108,92,231,0.5)); }
}
.ts-spin-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: 30px solid var(--accent);
    z-index: 10; filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
#wheelCanvas {
    width: 100%; height: 100%;
    filter: drop-shadow(0 0 30px rgba(108,92,231,.3));
}
.ts-spin-wheel__btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #5848d6);
    border: 3px solid #fff; color: #fff;
    font-family: var(--font-display); font-weight: 800;
    font-size: 14px; letter-spacing: 1.5px;
    cursor: pointer; z-index: 10;
    box-shadow: 0 4px 15px rgba(108,92,231,.5);
    transition: transform .2s, box-shadow .2s;
}
.ts-spin-wheel__btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(108,92,231,.7);
}
.ts-spin-wheel__btn:disabled {
    opacity: .6; cursor: not-allowed;
    transform: translate(-50%, -50%);
}

.ts-spin-result {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.85); z-index: 9999;
    align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
}
.ts-spin-result.ts-active { display: flex; }
/* Niedrige/Querformat-Viewports: Popup oben andocken und scrollbar machen, sonst wird der Button unten abgeschnitten */
@media (max-height: 640px) {
    .ts-spin-result { align-items: flex-start; overflow-y: auto; padding: 16px 0; }
    .ts-spin-result__box { margin-top: 64px; }
}
.ts-spin-result__box {
    position: relative; overflow: visible;
    background: linear-gradient(170deg, #f3f5fc 0%, #ffffff 50%, #f3f5fc 100%);
    border: 2px solid var(--accent);
    border-radius: 20px; padding: 110px 32px 28px;
    text-align: center; max-width: 420px; width: 90%;
    margin-top: 80px;
    box-shadow: 0 0 60px rgba(108,92,231,.25), 0 0 120px rgba(108,92,231,.1);
    animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn { from { transform: scale(.7) translateY(30px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.ts-spin-result__img {
    width: 180px; height: auto; display: block;
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    z-index: 2;
}
.ts-spin-result__close {
    position: absolute; top: 12px; right: 14px;
    background: none; border: none; color: var(--text-muted);
    font-size: 28px; cursor: pointer; line-height: 1;
    transition: color .2s; z-index: 2;
}
.ts-spin-result__close:hover { color: #fff; }
.ts-spin-result__glow {
    position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(108,92,231,.3) 0%, transparent 70%);
    pointer-events: none;
}
.ts-spin-result__congrats {
    font-family: var(--font-display); font-size: 16px;
    color: var(--text-muted); letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.ts-spin-result__subtitle {
    font-family: var(--font-display); font-size: 28px;
    color: var(--accent); letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(108,92,231,.4);
    margin: 0 0 24px;
}
.ts-spin-result__prizes {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 14px; margin-bottom: 28px;
}
.ts-spin-result__prize-block {
    display: flex; flex-direction: column; align-items: center;
}
.ts-spin-result__prize-num {
    font-family: var(--font-display); font-size: 52px;
    color: var(--accent); line-height: 1; font-weight: 900;
    text-shadow: 0 0 20px rgba(108,92,231,.4);
}
.ts-spin-result__prize-label {
    font-size: 12px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px; margin-top: 6px;
}
.ts-spin-result__plus {
    font-size: 32px; color: var(--accent); font-weight: 700;
    margin-top: 10px;
}
.ts-spin-result__cta {
    display: block; width: 100%;
    padding: 16px 0; border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #5848d6);
    color: #fff !important; font-weight: 800; font-size: 16px;
    text-decoration: none !important; text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(108,92,231,.4);
    transition: transform .2s, box-shadow .2s;
}
.ts-spin-result__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(108,92,231,.6);
}

@media (max-width: 968px) {
    .ts-lucky-wheel-section__inner { grid-template-columns: 1fr; gap: 28px; }
    .ts-lucky-wheel-section__text h2 { text-align: center; border-left: none; padding-left: 0; }
    .ts-spin-wheel { max-width: 320px; }
}
@media (max-width: 480px) {
    .ts-spin-wheel { max-width: 280px; }
    .ts-spin-wheel__btn { width: 64px; height: 64px; font-size: 12px; }
    .ts-spin-result__box { padding: 90px 22px 22px; }
    .ts-spin-result__prize-num { font-size: 42px; }
    .ts-spin-result__subtitle { font-size: 22px; }
}
@media (max-width: 600px) {
    .ts-trust-badges { grid-template-columns: minmax(0, 1fr); max-width: 340px; }
}
@media (max-width: 600px) {
    .ts-quick-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ts-quick-card { padding: 16px 10px; }
    .ts-quick-card__title { font-size: 14px; }
}

.ts-faq-section { max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 24px; margin-bottom: 40px; }

.ts-qa-section { max-width: 1100px; margin: 24px auto; padding: 0 24px; }
.ts-qa-section h2 {
    font-family: var(--font-display);
    text-align: left;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .2px;
    margin: 36px 0 22px;
    padding-left: 18px;
    border-left: 5px solid var(--accent);
    line-height: 1.15;
}
.ts-qa-section details {
    border: 1px solid var(--edge); border-radius: var(--rds-s);
    margin-bottom: 8px; overflow: hidden;
}
.ts-qa-section summary {
    background: var(--bg-card); color: var(--text-white);
    font-size: 14px; font-weight: 600; padding: 16px 20px;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.ts-qa-section summary::-webkit-details-marker { display: none; }
.ts-qa-section summary::after { content: '+'; font-size: 20px; color: var(--accent); transition: transform var(--speed); }
.ts-qa-section details[open] summary::after { transform: rotate(45deg); }
.ts-qa-section details > div,
.ts-qa-section details > p {
    padding: 0 20px 16px; font-size: 13px;
    color: var(--text-muted); line-height: 1.6;
    font-family: var(--font);
}
.ts-qa-section details a { color: var(--accent); text-decoration: underline; }

/* =========================================================================
   Helles Thema – Lesbarkeit. Beim Umbau von dunkel auf hell waren ein paar
   Ueberschriften/Texte noch weiss (also unsichtbar auf hellem Grund). Hier
   ziehe ich die zentral auf dunkle Farbe und nehme die schweren schwarzen
   Schatten raus. Weisser Text auf farbigen Buttons bleibt unangetastet.
   ========================================================================= */
.ts-slider-title h2,
.ts-article h2, .ts-article h3,
.ts-mobile-section__text h2, .ts-mobile-section__text h3,
.ts-lucky-wheel-section__text h2,
.ts-cta-block h2,
.ts-qa-section h2,
.ts-trust-badge__title,
.ts-cookie-banner__title,
.ts-info-card__score-num,
.ts-info-stat__value { color: var(--text-white); text-shadow: none; }

.ts-banner h1, .ts-banner__offer { }
.ts-banner__sub { color: var(--text-light); }
.ts-cta-strip, .ts-cta-strip__sub { color: var(--text-light); }
.ts-cta-strip__title { text-shadow: none; }
.ts-cta-strip__label { color: var(--text-muted); }
.ts-cta-block p strong { color: var(--accent); }
.ts-platform-badge--ios svg { fill: var(--text-white); }

/* Hover-Zustaende auf hellen Flaechen: kein Weiss, sonst verschwindet der Text */
.ts-cookie-banner__btn--reject:hover,
.ts-spin-result__close:hover { color: var(--text-white); }
.ts-cookie-banner__btn--save:hover { color: var(--accent); }

.ts-legal-content { padding: 0 24px; max-width: 800px; margin: 0 auto 40px; font-family: var(--font); }
.ts-legal-content h1 {
    font-size: 24px; color: var(--text-white); margin-bottom: 8px;
}
.ts-legal-content .ts-last-updated {
    font-size: 12px; color: var(--text-muted); margin-bottom: 24px;
}
.ts-legal-content h2 {
    font-size: 18px; color: var(--text-white); margin: 24px 0 10px;
}
.ts-legal-content p, .ts-legal-content li {
    font-size: 14px; color: var(--text-light); line-height: 1.7;
    margin-bottom: 10px;
}
.ts-legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.ts-legal-content a { color: var(--accent); text-decoration: underline; }

.ts-error-page {
    text-align: center; padding: 80px 24px 60px;
    min-height: 60vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.ts-error-page__code {
    font-size: 120px; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 16px;
}
.ts-error-page h1 { font-size: 24px; color: var(--text-white); margin-bottom: 12px; }
.ts-error-page p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; max-width: 500px; }
.ts-error-page__links {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    margin-top: 20px;
}
.ts-error-page__links a { color: var(--accent); text-decoration: underline; font-size: 14px; }

@media (max-width: 1080px) {
    .ts-topbar { display: none; }
    .ts-mobile-header { display: flex; }
    .ts-sidebar { display: none; }
    .ts-layout { display: block; grid-template-columns: 1fr; }
    main { padding-top: 56px; }
    .ts-banner { min-height: 300px; }
    .ts-banner__body { padding: 40px 20px; }
    .ts-banner h1 { font-size: 34px; }
    .ts-banner__offer { font-size: 44px; }
    .ts-slot-tile { flex: 0 0 calc((100% - 36px) / 4); }
    .ts-vendor-tile { flex: 0 0 calc((100% - 36px) / 4); }
    .ts-features { grid-template-columns: repeat(2, 1fr); }
    .ts-footer__top { flex-direction: column; }
    .ts-pros-cons { grid-template-columns: 1fr; }
    .ts-bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .ts-bonus-tiers { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .ts-slot-tile { flex: 0 0 calc((100% - 12px) / 2.2); }
    .ts-vendor-tile { flex: 0 0 calc((100% - 12px) / 2.2); }
    .ts-banner { height: min(133vw, calc(100svh - 56px)); justify-content: center; align-items: flex-end; text-align: center; }
    .ts-banner::after { background: url('../art/ts-hero-bg-mobile.webp') top center/cover no-repeat; }
    .ts-banner::before { background: linear-gradient(to bottom, rgba(255,255,255,0) 30%, rgba(255,255,255,.5) 58%, rgba(255,255,255,1) 100%); }
    .ts-banner__body { padding: 28px 16px 34px; text-align: center; max-width: 100%; }
    .ts-banner__tag { font-size: 11px; padding: 5px 14px; background: rgba(108,92,231,.28); margin-bottom: 12px; }
    .ts-banner h1 { font-size: 36px; }
    .ts-banner__offer { font-size: 37px; }
    .ts-banner__sub { font-size: 14px; }
    .ts-banner__logo { width: 140px; margin: 0 auto 14px; }
    .ts-features { grid-template-columns: 1fr; }
    .ts-slot-section, .ts-block { padding: 0 16px; }
    .ts-cta-section { margin: 0 16px 32px; padding: 32px 16px; }
    .ts-footer { padding: 32px 16px 16px; }
    .ts-highlight-grid { grid-template-columns: 1fr; }
    .ts-bonus-grid { grid-template-columns: 1fr; }
    .ts-bonus-tiers { grid-template-columns: 1fr 1fr; }
    .ts-breadcrumbs { padding: 12px 16px 0; }
    .ts-legal-content { padding: 0 16px; }
    .ts-error-page { padding: 60px 16px 40px; }
    .ts-error-page__code { font-size: 80px; }
    .ts-info-table { font-size: 12px; }
    .ts-info-table th, .ts-info-table td { padding: 8px 10px; }
    }

/* reviews.html: die 5 Trust-Badges in EINER Reihe — nur Desktop; mobil bleibt der Standard (1 Spalte) */
@media (min-width: 1101px) {
    .ts-trust-badges--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}


/* no-hero-haze-mobile — убрать сглаженную панель за hero-текстом */
@media (max-width: 600px) {
  .ts-banner::before { background: none; }
  .ts-banner__body { background: none; }
}


/* ts-hero-contrast — текст читаем на светлой картинке */
.ts-banner h1 { color: #fff; -webkit-text-stroke: 2px #14102a; paint-order: stroke fill; }
.ts-banner__offer { color: #fff; -webkit-text-stroke: 2px #14102a; paint-order: stroke fill; }
.ts-banner__offer strong { color: #ffd35a; -webkit-text-stroke: 2px #14102a; paint-order: stroke fill; }
.ts-banner__sub { color: #fff; -webkit-text-stroke: .6px #14102a; paint-order: stroke fill; }
