:root {
    
    --shffl-bg-primary: #000000;
    --shffl-bg-elevated: #1a1a1a;
    --shffl-bg-header: #0a0a0a;
    --shffl-bg-card: #1a1a1a;
    --shffl-bg-card-hover: #222222;
    --shffl-btn-surface: #232323;
    --shffl-btn-surface-hover: #2c2c2c;
    --shffl-btn-1: #2e2e2e;
    --shffl-btn-2: #7b2ff7;
    --shffl-accent: #7b2ff7;
    --shffl-accent-hover: #9055ff;
    --shffl-accent-cta: #7b2ff7;
    --shffl-accent-cta-hover: #8f4fff;
    --shffl-accent-rgb: 123, 47, 247;
    --shffl-text-primary: #ffffff;
    --shffl-text-secondary: #b3b3b3;
    --shffl-text-muted: #737373;
    --shffl-border: #2a2a2a;
    --shffl-success: #22c55e;
    --shffl-radius: 14px;
    --shffl-radius-sm: 10px;
    --shffl-radius-lg: 18px;
    --shffl-radius-pill: 999px;
    --shffl-container: 1200px;
    --shffl-header-h: 72px;
    --shffl-transition: 0.25s ease;
    --shffl-h1: 2rem;
    --shffl-h2: 1.5rem;
    --shffl-h3: 1.25rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overscroll-behavior: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--shffl-bg-primary);
    color: var(--shffl-text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    overscroll-behavior: none;
}

::selection {
    background: rgba(var(--shffl-accent-rgb), 0.35);
    color: var(--shffl-text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--shffl-transition);
}

a:hover {
    color: var(--shffl-accent);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: var(--shffl-h1); }
h2 { font-size: var(--shffl-h2); }
h3 { font-size: var(--shffl-h3); }

.shffl-container {
    width: 100%;
    max-width: var(--shffl-container);
    margin: 0 auto;
    padding: 0 20px;
}

.shffl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--shffl-header-h);
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background var(--shffl-transition);
}

.shffl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.shffl-header__logo img {
    height: 36px;
    width: auto;
}

.shffl-header__logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--shffl-text-primary);
}

.shffl-header__nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.shffl-header__nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--shffl-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--shffl-text-secondary);
    transition: all var(--shffl-transition);
}

.shffl-header__nav a:hover,
.shffl-header__nav a.shffl-active {
    color: var(--shffl-text-primary);
    background: rgba(var(--shffl-accent-rgb), 0.14);
}

.shffl-header__nav a svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.shffl-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shffl-header__actions .shffl-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.shffl-header__actions .shffl-btn--lg {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.shffl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--shffl-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--shffl-transition);
    white-space: nowrap;
}

.shffl-btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--shffl-text-primary);
    background: var(--shffl-btn-surface);
}

.shffl-btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
    background: var(--shffl-btn-surface-hover);
}

.shffl-btn--cta {
    background: linear-gradient(135deg, #7b2ff7 0%, #6c35de 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(var(--shffl-accent-rgb), 0.35);
}

.shffl-btn--cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 36px rgba(var(--shffl-accent-rgb), 0.45);
    filter: brightness(1.06);
}

.shffl-btn--lg {
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--shffl-radius-pill);
}

.shffl-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1100;
}

.shffl-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--shffl-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.shffl-burger.shffl-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.shffl-burger.shffl-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.shffl-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1050;
    background: var(--shffl-bg-elevated);
    border-left: none;
    padding: calc(var(--shffl-header-h) + 16px) 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.shffl-mobile-nav.shffl-open {
    transform: translateX(0);
    pointer-events: auto;
}

.shffl-mobile-nav__close {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    color: var(--shffl-text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.shffl-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--shffl-text-secondary);
    border-radius: var(--shffl-radius-sm);
    transition: all var(--shffl-transition);
}

.shffl-mobile-nav a:hover,
.shffl-mobile-nav a.shffl-active {
    color: var(--shffl-text-primary);
    background: rgba(var(--shffl-accent-rgb), 0.12);
}

.shffl-mobile-nav a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.8;
}

.shffl-mobile-nav__actions {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
}

.shffl-mobile-nav__actions .shffl-btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
    color: #fff;
    padding: 10px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--shffl-radius-sm);
}

.shffl-mobile-nav__actions .shffl-btn--outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.shffl-mobile-nav__actions .shffl-btn--outline:hover {
    border-color: #fff;
    color: #fff;
}

.shffl-mobile-nav__actions .shffl-btn--cta {
    color: #fff;
}

.shffl-main--home {
    padding-top: var(--shffl-header-h);
}

.shffl-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: calc(var(--shffl-header-h) + 48px) 20px 56px;
    overflow: hidden;
}

.shffl-main--home .shffl-hero {
    padding: 40px 20px 56px;
}

.shffl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 85% 65% at 82% 30%, rgba(var(--shffl-accent-rgb), 0.22), transparent 52%),
        radial-gradient(ellipse 55% 45% at 12% 80%, rgba(var(--shffl-accent-rgb), 0.1), transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    z-index: 1;
}

.shffl-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 65% at center, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at center, black, transparent);
}

.shffl-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--shffl-container);
    margin: 0 auto;
    padding: 0;
}

.shffl-hero__layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px 48px;
    flex-wrap: wrap;
}

.shffl-hero__col--text {
    flex: 1 1 400px;
    min-width: 0;
    text-align: left;
}

.shffl-hero__col--text .shffl-hero__badge {
    margin-bottom: 20px;
}

.shffl-hero__col--text h1 {
    margin-bottom: 16px;
}

.shffl-hero__col--text .shffl-hero__sub {
    margin-left: 0;
    margin-right: 0;
    max-width: 520px;
}

.shffl-hero__col--text .shffl-hero__actions {
    justify-content: flex-start;
}

@media (min-width: 1024px) {
    .shffl-hero__layout {
        flex-wrap: nowrap;
        gap: 48px 64px;
    }

    .shffl-hero__col--bonus {
        flex: 0 0 380px;
        max-width: 400px;
        margin-left: 0;
        margin-right: 0;
    }
}

.shffl-hero__col--bonus {
    flex: 1 1 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1023px) {
    .shffl-hero__col--text {
        text-align: center;
    }

    .shffl-hero__col--text .shffl-hero__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .shffl-hero__col--text .shffl-hero__actions {
        justify-content: center;
    }

    .shffl-hero__col--bonus {
        width: 100%;
    }
}

.shffl-hero-bonus {
    position: relative;
    border-radius: var(--shffl-radius-lg);
    padding: 28px 26px 22px;
    background: linear-gradient(165deg, rgba(22, 22, 28, 0.98) 0%, rgba(6, 6, 10, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 1px rgba(var(--shffl-accent-rgb), 0.14),
        0 24px 56px rgba(0, 0, 0, 0.55),
        0 0 72px -20px rgba(var(--shffl-accent-rgb), 0.38);
    overflow: hidden;
}

.shffl-hero-bonus__shine {
    position: absolute;
    top: -45%;
    right: -30%;
    width: 85%;
    height: 95%;
    background: radial-gradient(circle, rgba(var(--shffl-accent-rgb), 0.26) 0%, transparent 68%);
    pointer-events: none;
}

.shffl-hero-bonus__eyebrow {
    position: relative;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a6ff;
    margin-bottom: 10px;
}

.shffl-hero-bonus__title {
    position: relative;
    margin: 0 0 6px;
    font-size: clamp(1.35rem, 2.8vw, 1.65rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e8dcff 45%, #b894ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shffl-hero-bonus__highlight {
    position: relative;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--shffl-accent);
    margin-bottom: 14px;
    text-shadow: 0 0 28px rgba(var(--shffl-accent-rgb), 0.5);
}

.shffl-hero-bonus__hint {
    position: relative;
    font-size: 0.82rem;
    color: var(--shffl-text-muted);
    line-height: 1.55;
    margin-bottom: 20px;
}

.shffl-hero-bonus__actions {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.shffl-hero-bonus__actions .shffl-btn {
    width: 100%;
}

.shffl-hero-bonus__legal {
    position: relative;
    font-size: 0.68rem;
    color: var(--shffl-text-muted);
    line-height: 1.45;
    text-align: center;
}

.shffl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(var(--shffl-accent-rgb), 0.12);
    border: 1px solid rgba(var(--shffl-accent-rgb), 0.28);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c9a6ff;
    margin-bottom: 20px;
}

.shffl-hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--shffl-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.shffl-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.shffl-hero h1 span {
    background: linear-gradient(135deg, #ffffff 0%, #c9a6ff 45%, var(--shffl-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shffl-hero__sub {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--shffl-text-secondary);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.shffl-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.shffl-hero.shffl-hero--page::before {
    background:
        radial-gradient(ellipse 70% 55% at 0% 0%, rgba(var(--shffl-accent-rgb), 0.14), transparent 58%),
        radial-gradient(ellipse 50% 45% at 100% 100%, rgba(20, 184, 166, 0.07), transparent 55%),
        linear-gradient(180deg, #020203 0%, #0a0a0c 48%, #060608 100%);
}

.shffl-hero--page {
    min-height: auto;
    padding: calc(var(--shffl-header-h) + 28px) 20px 36px;
    align-items: flex-end;
}

.shffl-hero--page .shffl-hero__content,
.shffl-hero__content--page {
    max-width: var(--shffl-container);
    text-align: left;
}

.shffl-hero-page__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2.5rem;
}

.shffl-hero-page__text {
    flex: 1 1 280px;
    min-width: 0;
}

.shffl-hero-page__art {
    flex: 0 1 min(440px, 100%);
    max-width: 100%;
    margin-left: auto;
}

.shffl-hero-page__art img {
    width: 100%;
    height: auto;
    max-width: min(440px, 100%);
    display: block;
    margin-left: auto;
    border-radius: var(--shffl-radius-lg);
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 36px rgba(var(--shffl-accent-rgb), 0.22));
}

@media (max-width: 767px) {
    .shffl-hero-page__row {
        flex-direction: column;
        align-items: stretch;
    }

    .shffl-hero-page__art {
        flex: 0 1 auto;
        max-width: min(300px, 100%);
        margin: 1rem auto 0;
    }

    .shffl-hero-page__art img {
        margin-left: auto;
        margin-right: auto;
        max-width: min(300px, 100%);
    }
}

.shffl-hero__grid--page {
    opacity: 0.45;
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 88% 72% at 70% 28%, black, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 88% 72% at 70% 28%, black, transparent 75%);
}

.shffl-hero__page-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--shffl-accent) 0%, rgba(var(--shffl-accent-rgb), 0.35) 42%, rgba(20, 184, 166, 0.25) 72%, transparent 100%);
    z-index: 2;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 24px rgba(var(--shffl-accent-rgb), 0.2);
}

@media (min-width: 768px) {
    .shffl-hero__page-accent {
        width: 4px;
    }
}

.shffl-breadcrumb--page {
    margin-bottom: 1.35rem;
}

.shffl-breadcrumb__list {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0.4rem 0.85rem 0.4rem 0.75rem;
    list-style: none;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--shffl-radius-pill);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 20px rgba(0, 0, 0, 0.35);
}

.shffl-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--shffl-text-muted);
}

.shffl-breadcrumb__item:not(:last-child)::after {
    content: '/';
    margin: 0 0.55rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.22);
    font-size: 0.7rem;
    user-select: none;
}

.shffl-breadcrumb__item a {
    color: var(--shffl-text-secondary);
    transition: color var(--shffl-transition);
}

.shffl-breadcrumb__item a:hover {
    color: #c9a6ff;
}

.shffl-breadcrumb__item--current span {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    margin: -0.15rem -0.1rem -0.15rem 0;
    border-radius: var(--shffl-radius-sm);
    color: var(--shffl-text-primary);
    font-weight: 700;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, rgba(var(--shffl-accent-rgb), 0.22) 0%, rgba(var(--shffl-accent-rgb), 0.08) 100%);
    border: 1px solid rgba(var(--shffl-accent-rgb), 0.35);
    box-shadow: 0 0 20px rgba(var(--shffl-accent-rgb), 0.12);
}

.shffl-page-hero {
    position: relative;
    padding: 1.25rem 0 0.25rem 1rem;
    border-left: 2px solid rgba(var(--shffl-accent-rgb), 0.4);
}

@media (min-width: 768px) {
    .shffl-page-hero {
        padding-left: 1.35rem;
        border-left-width: 3px;
    }
}

.shffl-page-hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5eead4;
    opacity: 0.95;
}

.shffl-hero--page .shffl-page-hero h1 {
    font-size: clamp(1.45rem, 3.2vw, 1.95rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
    margin-bottom: 0.65rem;
    line-height: 1.2;
    color: var(--shffl-text-primary);
}

.shffl-hero--page .shffl-page-hero h1::after {
    content: '';
    display: block;
    width: 2.75rem;
    height: 3px;
    margin-top: 14px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--shffl-accent), rgba(20, 184, 166, 0.45));
}

.shffl-page-hero__lead {
    max-width: 36rem;
    margin: 0;
    font-size: clamp(0.88rem, 1.55vw, 1rem);
    color: var(--shffl-text-secondary);
    line-height: 1.65;
}

.shffl-hero--page .shffl-hero__sub.shffl-page-hero__lead {
    margin: 0;
    max-width: 36rem;
}

.shffl-hero--page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--shffl-accent-rgb), 0.35) 15%, rgba(255, 255, 255, 0.06) 50%, rgba(20, 184, 166, 0.2) 85%, transparent);
    z-index: 2;
}

@media (max-width: 767px) {
    .shffl-hero--page {
        min-height: auto;
        padding: calc(var(--shffl-header-h) + 16px) 16px 24px;
    }

    .shffl-breadcrumb--page {
        margin-bottom: 1rem;
    }

    .shffl-page-hero {
        padding-top: 0.85rem;
        padding-left: 0.85rem;
    }
}

.shffl-section {
    padding: 80px 0;
}

.shffl-section--originals {
    padding: 32px 0 40px;
    background: var(--shffl-bg-primary);
}

.shffl-originals-wrapper {
    width: 100%;
    max-width: var(--shffl-container);
    margin: 0 auto;
    padding: 0 20px;
}

.shffl-originals-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.shffl-originals-title {
    position: relative;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: var(--shffl-text-primary);
    text-align: left;
}

.shffl-section-heading__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--shffl-accent);
    filter: drop-shadow(0 0 10px rgba(var(--shffl-accent-rgb), 0.35));
}

.shffl-section-heading__icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

@media (min-width: 768px) {
    .shffl-originals-title {
        font-size: 1.75rem;
    }
    .shffl-originals-header {
        margin-bottom: 32px;
    }
}

.shffl-originals-slider {
    position: relative;
    overflow: hidden;
}

.shffl-carousel-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.shffl-carousel-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 9999px;
    background: #2a2d33;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.shffl-carousel-view-all:hover {
    background: #363a42;
    color: #fff;
}

.shffl-carousel-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #2a2d33;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.shffl-carousel-arrow:hover:not(.shffl-carousel-arrow--disabled):not(:disabled) {
    background: #363a42;
}

.shffl-carousel-arrow__chev {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1;
    display: block;
    margin-top: -2px;
}

.shffl-carousel-arrow--disabled,
.shffl-carousel-arrow:disabled {
    opacity: 0.38;
    cursor: default;
    pointer-events: none;
}

.shffl-originals-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0 12px;
}

.shffl-originals-grid::-webkit-scrollbar {
    display: none;
}

.shffl-originals-card {
    position: relative;
    flex: 0 0 calc((100% - 12px) / 2);
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--shffl-radius);
    scroll-snap-align: start;
    transition: filter var(--shffl-transition), transform var(--shffl-transition), box-shadow var(--shffl-transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.shffl-originals-card:hover {
    filter: brightness(1.08);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(var(--shffl-accent-rgb), 0.2);
}

@media (min-width: 768px) {
    .shffl-originals-grid {
        gap: 16px;
    }
    .shffl-originals-card {
        flex: 0 0 calc((100% - 5 * 16px) / 6);
        min-width: 120px;
    }
}

.shffl-originals-card__img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shffl-originals-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--shffl-transition);
}

.shffl-originals-card:hover .shffl-originals-card__img img {
    transform: scale(1.05);
}

.shffl-section--slots {
    padding: 0 0 32px;
}

.shffl-slots-wrapper {
    width: 100%;
    max-width: var(--shffl-container);
    margin: 0 auto;
    padding: 0 20px;
}

.shffl-slots-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .shffl-originals-header,
    .shffl-slots-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .shffl-carousel-toolbar {
        justify-content: flex-end;
        align-self: stretch;
    }
}

.shffl-slots-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--shffl-text-primary);
    text-align: left;
}

@media (min-width: 768px) {
    .shffl-slots-title {
        font-size: 1.75rem;
    }
}

.shffl-slots-slider {
    position: relative;
    overflow: hidden;
}

.shffl-slots-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0 12px;
}

.shffl-slots-grid::-webkit-scrollbar {
    display: none;
}

.shffl-slots-card {
    position: relative;
    flex: 0 0 calc((100% - 12px) / 2);
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--shffl-radius);
    scroll-snap-align: start;
    transition: filter var(--shffl-transition), transform var(--shffl-transition), box-shadow var(--shffl-transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.shffl-slots-card:hover {
    filter: brightness(1.06);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(var(--shffl-accent-rgb), 0.15);
}

.shffl-slots-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .shffl-slots-grid {
        gap: 16px;
    }
    .shffl-slots-card {
        flex: 0 0 calc((100% - 5 * 16px) / 6);
        min-width: 120px;
    }
}

.shffl-section--providers {
    padding: 0 0 48px;
}

.shffl-providers-wrapper {
    width: 100%;
    max-width: var(--shffl-container);
    margin: 0 auto;
    padding: 0 20px;
}

.shffl-providers-slider {
    position: relative;
    overflow: hidden;
}

.shffl-providers-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0 16px;
}

.shffl-providers-grid::-webkit-scrollbar {
    display: none;
}

.shffl-provider-card {
    flex: 0 0 148px;
    min-width: 148px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    scroll-snap-align: start;
    background: var(--shffl-bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--shffl-radius-sm);
    transition: transform var(--shffl-transition), box-shadow var(--shffl-transition), border-color var(--shffl-transition);
}

.shffl-provider-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--shffl-accent-rgb), 0.28);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.shffl-provider-card img {
    max-width: 100%;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .shffl-provider-card {
        flex: 0 0 168px;
        min-width: 168px;
        height: 84px;
    }
    .shffl-providers-grid {
        gap: 12px;
    }
}

.shffl-text-content {
    padding: 32px 0 32px;
}

.shffl-text-content__inner {
    max-width: var(--shffl-container);
}

.shffl-text-content h2,
.shffl-text-content h3 {
    margin: 24px 0 24px;
    letter-spacing: -0.02em;
}

.shffl-text-content h2 {
    font-size: var(--shffl-h2);
}

.shffl-text-content h3 {
    font-size: var(--shffl-h3);
}

/* FAQ: .shffl-text-content h3 wins over .shffl-faq__question - reset so accordion rows stay compact */
.shffl-text-content h3.shffl-faq__question {
    margin: 0;
    font-size: 1rem;
    font-weight: inherit;
    line-height: 1.25;
    letter-spacing: normal;
}

.shffl-text-content h2:first-child,
.shffl-text-content h3:first-child {
    margin-top: 0;
}

.shffl-text-content p {
    color: var(--shffl-text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.shffl-text-content p:last-child {
    margin-bottom: 0;
}

.shffl-text-content__inner p a {
    color: var(--shffl-accent);
    text-decoration: underline;
    text-decoration-color: rgba(var(--shffl-accent-rgb), 0.42);
    text-underline-offset: 3px;
}

.shffl-text-content__inner p a:hover {
    color: #ebe4ff;
    text-decoration-color: rgba(var(--shffl-accent-rgb), 0.85);
}

.shffl-content-illu {
    margin: 0 0 1.25rem;
    max-width: min(720px, 100%);
}

@media (min-width: 768px) {
    .shffl-content-illu {
        margin-left: auto;
        margin-right: auto;
    }
}

.shffl-content-illu img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--shffl-radius-lg);
    filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 28px rgba(var(--shffl-accent-rgb), 0.18));
}

.shffl-seo-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shffl-seo-list li {
    position: relative;
    padding: 0.9rem 1rem 0.9rem 1.1rem;
    border-radius: var(--shffl-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.92rem;
    color: var(--shffl-text-secondary);
    line-height: 1.7;
    border-left: 3px solid rgba(var(--shffl-accent-rgb), 0.5);
    transition: background var(--shffl-transition), border-color var(--shffl-transition);
}

.shffl-seo-list li::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--shffl-accent), rgba(20, 184, 166, 0.5));
    opacity: 0;
    transition: opacity var(--shffl-transition);
}

.shffl-seo-list li:hover {
    background: rgba(var(--shffl-accent-rgb), 0.05);
    border-color: rgba(var(--shffl-accent-rgb), 0.22);
}

.shffl-seo-list li:hover::before {
    opacity: 1;
}

.shffl-seo-list li strong {
    color: var(--shffl-text-primary);
    font-weight: 600;
}

.shffl-seo-table-wrap {
    overflow-x: auto;
    margin: 0 0 1.5rem;
    border-radius: var(--shffl-radius);
    border: 1px solid rgba(var(--shffl-accent-rgb), 0.25);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 8px 32px rgba(0, 0, 0, 0.4);
}

.shffl-seo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 480px;
}

.shffl-seo-table thead tr {
    background: linear-gradient(135deg, rgba(var(--shffl-accent-rgb), 0.22) 0%, rgba(var(--shffl-accent-rgb), 0.1) 100%);
}

.shffl-seo-table th {
    padding: 0.85rem 1.1rem;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #d4b8ff;
    white-space: nowrap;
    border-bottom: 1px solid rgba(var(--shffl-accent-rgb), 0.3);
}

.shffl-seo-table td {
    padding: 0.78rem 1.1rem;
    color: var(--shffl-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
    line-height: 1.55;
}

.shffl-seo-table tbody tr:last-child td {
    border-bottom: none;
}

.shffl-seo-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.shffl-seo-table tbody tr:hover {
    background: rgba(var(--shffl-accent-rgb), 0.06);
}

.shffl-seo-table td strong {
    color: var(--shffl-text-primary);
    font-weight: 600;
}

main h2[id] {
    scroll-margin-top: calc(var(--shffl-header-h) + 16px);
}

.shffl-toc {
    padding: 28px 0 36px;
    background: linear-gradient(180deg, rgba(10, 8, 18, 0.5) 0%, transparent 100%);
}

.shffl-toc__card {
    position: relative;
    padding: 1.35rem 1.35rem 1.25rem 1.5rem;
    border-radius: var(--shffl-radius-lg);
    background:
        radial-gradient(ellipse 120% 80% at 100% 0%, rgba(var(--shffl-accent-rgb), 0.14), transparent 55%),
        linear-gradient(165deg, rgba(22, 16, 38, 0.65) 0%, rgba(8, 8, 12, 0.96) 55%, rgba(5, 5, 8, 1) 100%);
    border: 1px solid rgba(var(--shffl-accent-rgb), 0.38);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 80px -24px rgba(var(--shffl-accent-rgb), 0.45);
    overflow: hidden;
}

.shffl-toc__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--shffl-accent) 0%, rgba(20, 184, 166, 0.55) 55%, rgba(var(--shffl-accent-rgb), 0.25) 100%);
    border-radius: var(--shffl-radius-lg) 0 0 var(--shffl-radius-lg);
    box-shadow: 0 0 20px rgba(var(--shffl-accent-rgb), 0.35);
}

.shffl-toc__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--shffl-accent-rgb), 0.55) 40%, rgba(20, 184, 166, 0.35) 70%, transparent);
    opacity: 0.9;
}

.shffl-toc__details {
    margin: 0;
}

.shffl-toc__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    list-style-type: none;
    cursor: pointer;
    padding: 0 0 0.85rem;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    user-select: none;
    -webkit-user-select: none;
}

.shffl-toc__summary::-webkit-details-marker,
.shffl-toc__summary::marker {
    display: none;
    content: '';
}

.shffl-toc__details[open] > .shffl-toc__summary {
    margin-bottom: 1rem;
}

.shffl-toc__summary-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.shffl-toc__summary-chev {
    flex-shrink: 0;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--shffl-text-secondary);
    transition: transform 0.2s ease;
}

.shffl-toc__details[open] .shffl-toc__summary-chev {
    transform: rotate(90deg);
}

.shffl-toc__summary:focus {
    outline: none;
}

.shffl-toc__summary:focus-visible {
    outline: 2px solid var(--shffl-accent);
    outline-offset: 4px;
    border-radius: var(--shffl-radius-sm);
}

.shffl-toc__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    color: #d4b8ff;
    background: linear-gradient(145deg, rgba(var(--shffl-accent-rgb), 0.28) 0%, rgba(var(--shffl-accent-rgb), 0.08) 100%);
    border: 1px solid rgba(var(--shffl-accent-rgb), 0.45);
    box-shadow:
        0 0 24px rgba(var(--shffl-accent-rgb), 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.shffl-toc__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--shffl-text-primary);
    text-shadow: 0 0 40px rgba(var(--shffl-accent-rgb), 0.25);
}

.shffl-toc__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.shffl-toc__list li {
    margin: 0;
}

.shffl-toc__list a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--shffl-text-primary);
    text-decoration: none;
    border-radius: var(--shffl-radius-pill);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        background var(--shffl-transition),
        border-color var(--shffl-transition),
        color var(--shffl-transition),
        box-shadow var(--shffl-transition),
        transform 0.2s ease;
}

.shffl-toc__list a:hover {
    color: #f5f0ff;
    background: rgba(var(--shffl-accent-rgb), 0.2);
    border-color: rgba(var(--shffl-accent-rgb), 0.55);
    box-shadow:
        0 0 0 1px rgba(var(--shffl-accent-rgb), 0.2),
        0 6px 24px rgba(var(--shffl-accent-rgb), 0.25);
    transform: translateY(-1px);
}

.shffl-toc__list a:focus-visible {
    outline: 2px solid var(--shffl-accent);
    outline-offset: 3px;
}

.shffl-main--home .shffl-toc {
    padding-top: 4px;
    padding-bottom: 10px;
    background: linear-gradient(180deg, rgba(10, 8, 18, 0.35) 0%, transparent 92%);
}

.shffl-main--home .shffl-section.shffl-text-content#about {
    padding-top: 12px;
}

@media (max-width: 767px) {
    .shffl-toc {
        padding: 22px 0 28px;
    }

    .shffl-toc__card {
        padding: 1.15rem 1.1rem 1.1rem 1.25rem;
    }

    .shffl-toc__list {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .shffl-toc__list a {
        justify-content: center;
        text-align: center;
    }
}

/* Thematic inline CTA blocks (Bonus, Login, Games, Payments - mid & end) */
.shffl-inline-cta {
    --shffl-cta-accent-glow: rgba(var(--shffl-accent-rgb), 0.45);
    --shffl-cta-accent-bar: var(--shffl-accent);
    --shffl-cta-accent-soft: rgba(var(--shffl-accent-rgb), 0.14);
    margin: 2.25rem 0 2.5rem;
    padding: 0;
}

.shffl-inline-cta__card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1.35rem 1.75rem;
    padding: 1.5rem 1.5rem 1.55rem 1.6rem;
    border-radius: calc(var(--shffl-radius-lg) + 2px);
    background:
        radial-gradient(ellipse 85% 70% at 0% 0%, var(--shffl-cta-accent-soft), transparent 52%),
        linear-gradient(155deg, rgba(22, 16, 38, 0.88) 0%, rgba(7, 6, 12, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 20px 56px rgba(0, 0, 0, 0.48),
        0 0 72px -26px var(--shffl-cta-accent-glow);
    overflow: hidden;
}

.shffl-inline-cta__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--shffl-cta-accent-bar) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: var(--shffl-radius-lg) 0 0 var(--shffl-radius-lg);
    box-shadow: 0 0 22px var(--shffl-cta-accent-glow);
}

.shffl-inline-cta__body {
    flex: 1 1 280px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.shffl-inline-cta__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.shffl-inline-cta__title {
    margin: 0 0 0.6rem;
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--shffl-text-primary);
    letter-spacing: -0.03em;
}

.shffl-inline-cta__lead {
    margin: 0 0 1rem;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--shffl-text-secondary);
    max-width: 54ch;
}

.shffl-inline-cta__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shffl-inline-cta__bullets li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(245, 240, 255, 0.88);
}

.shffl-inline-cta__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--shffl-cta-accent-bar);
    box-shadow: 0 0 10px var(--shffl-cta-accent-glow);
}

.shffl-inline-cta__actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.65rem;
    min-width: 200px;
    position: relative;
    z-index: 1;
}

.shffl-inline-cta__actions .shffl-btn {
    white-space: nowrap;
    justify-content: center;
    text-align: center;
}

.shffl-inline-cta--bonus {
    --shffl-cta-accent-glow: rgba(245, 158, 11, 0.42);
    --shffl-cta-accent-bar: #fbbf24;
    --shffl-cta-accent-soft: rgba(245, 158, 11, 0.16);
}

.shffl-inline-cta--login {
    --shffl-cta-accent-glow: rgba(56, 189, 248, 0.4);
    --shffl-cta-accent-bar: #38bdf8;
    --shffl-cta-accent-soft: rgba(56, 189, 248, 0.14);
}

.shffl-inline-cta--games {
    --shffl-cta-accent-glow: rgba(167, 139, 250, 0.45);
    --shffl-cta-accent-bar: #c4b5fd;
    --shffl-cta-accent-soft: rgba(167, 139, 250, 0.16);
}

.shffl-inline-cta--payments {
    --shffl-cta-accent-glow: rgba(52, 211, 153, 0.42);
    --shffl-cta-accent-bar: #34d399;
    --shffl-cta-accent-soft: rgba(52, 211, 153, 0.14);
}

.shffl-inline-cta--end .shffl-inline-cta__card {
    background:
        radial-gradient(ellipse 80% 65% at 100% 100%, var(--shffl-cta-accent-soft), transparent 50%),
        linear-gradient(168deg, rgba(14, 10, 24, 0.92) 0%, rgba(5, 4, 8, 1) 100%);
}

.shffl-inline-cta--end .shffl-inline-cta__eyebrow {
    color: rgba(255, 255, 255, 0.48);
}

@media (min-width: 900px) {
    .shffl-inline-cta__actions {
        align-self: center;
        min-width: 220px;
    }
}

@media (max-width: 767px) {
    .shffl-inline-cta {
        margin: 1.75rem 0 2rem;
    }

    .shffl-inline-cta__card {
        padding: 1.2rem 1.15rem 1.35rem 1.25rem;
        gap: 1.15rem;
    }

    .shffl-inline-cta__actions {
        width: 100%;
        min-width: 0;
    }

    .shffl-inline-cta__actions .shffl-btn {
        width: 100%;
    }
}

/* Author page */
.shffl-section--author {
    padding-top: 40px;
    padding-bottom: 64px;
}

.shffl-author-card {
    display: grid;
    grid-template-columns: minmax(0, 150px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    padding: clamp(1.35rem, 3vw, 2rem);
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
    background:
        radial-gradient(ellipse 80% 80% at 0% 0%, rgba(var(--shffl-accent-rgb), 0.12), transparent 55%),
        linear-gradient(155deg, rgba(22, 16, 38, 0.95) 0%, rgba(7, 6, 12, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: calc(var(--shffl-radius-lg) + 2px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 20px 56px rgba(0, 0, 0, 0.45),
        0 0 64px -24px rgba(var(--shffl-accent-rgb), 0.35);
}

.shffl-author-card__img-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(var(--shffl-accent-rgb), 0.45);
    line-height: 0;
    background: rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.shffl-author-card__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 20%;
}

.shffl-author-card__role {
    margin: 0 0 0.45rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.shffl-author-card__name {
    margin: 0 0 0.5rem;
    font-size: clamp(1.25rem, 2.8vw, 1.55rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--shffl-text-primary);
    letter-spacing: -0.02em;
}

.shffl-author-card__tagline {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--shffl-text-secondary);
}

.shffl-author-card__excerpt {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(245, 240, 255, 0.82);
}

.shffl-author-card__social {
    margin: 1.1rem 0 0;
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
}

.shffl-author-card__linkedin {
    font-weight: 700;
    color: var(--shffl-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--shffl-transition), color var(--shffl-transition);
}

.shffl-author-card__linkedin:hover {
    color: #fff;
    border-bottom-color: rgba(var(--shffl-accent-rgb), 0.7);
}

.shffl-author-card__social-note {
    color: rgba(245, 240, 255, 0.65);
}

.shffl-author-bio {
    padding-top: 0.25rem;
}

@media (max-width: 720px) {
    .shffl-author-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .shffl-author-card__media {
        justify-self: center;
    }

    .shffl-author-card__img-wrap {
        margin: 0 auto;
    }
}

.shffl-faq {
    padding: 24px 0 48px;
}

.shffl-faq:has(+ .shffl-section--home-cta) {
    padding: 24px 0 24px;
}

.shffl-section--home-cta {
    padding: 28px 0 36px;
}

.shffl-section--home-cta .shffl-inline-cta {
    margin: 0;
}

.shffl-faq__title {
    margin: 0 0 20px;
    font-size: var(--shffl-h2);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shffl-faq__title::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--shffl-accent);
    border-radius: 3px;
    transform: rotate(45deg);
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(var(--shffl-accent-rgb), 0.5);
}

.shffl-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shffl-faq__item {
    background: var(--shffl-bg-card);
    border: 1px solid var(--shffl-border);
    border-radius: var(--shffl-radius);
    overflow: hidden;
}

.shffl-faq__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--shffl-text-primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: background var(--shffl-transition);
}

.shffl-faq__trigger:hover {
    background: rgba(var(--shffl-accent-rgb), 0.08);
}

.shffl-faq__question {
    margin: 0;
    font-size: 1rem;
    font-weight: inherit;
    line-height: 1;
}

.shffl-faq__icon {
    flex-shrink: 0;
    margin-left: 12px;
    font-size: 1.2rem;
    transition: transform var(--shffl-transition);
}

.shffl-faq__item.shffl-is-open .shffl-faq__icon {
    transform: rotate(90deg);
}

.shffl-faq__answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-top: 1px solid transparent;
}

.shffl-faq__item.shffl-is-open .shffl-faq__answer-wrap {
    max-height: 480px;
    border-top-color: rgba(255, 255, 255, 0.1);
}

.shffl-faq__answer {
    margin: 0;
    padding: 0 20px 16px;
    font-size: 0.95rem;
    color: var(--shffl-text-secondary);
    line-height: 1.7;
}

.shffl-error-404 {
    min-height: calc(100vh - var(--shffl-header-h) - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--shffl-header-h) + 48px) 20px 80px;
    text-align: center;
}

.shffl-error-404__code {
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 800;
    color: var(--shffl-accent);
    margin: 0 0 16px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.shffl-error-404__text {
    font-size: 1.25rem;
    color: var(--shffl-text-secondary);
    margin: 0 0 32px;
}

.shffl-footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 60px;
}

.shffl-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 40px 48px;
    padding-bottom: 48px;
}

.shffl-footer__brand {
    max-width: 280px;
}

.shffl-footer__logo {
    margin-bottom: 16px;
}

.shffl-footer__logo img {
    height: 32px;
    width: auto;
}

.shffl-footer__logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--shffl-text-primary);
}

.shffl-footer__desc {
    font-size: 0.88rem;
    color: var(--shffl-text-secondary);
    line-height: 1.7;
}

.shffl-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 160px;
}

.shffl-footer__nav-title {
    margin: 0 0 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--shffl-text-muted);
}

.shffl-footer__nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--shffl-text-secondary);
    transition: color var(--shffl-transition);
}

.shffl-footer__nav a:hover,
.shffl-footer__nav a.shffl-active {
    color: var(--shffl-accent);
}

.shffl-footer__bottom {
    border-top: 1px solid var(--shffl-border);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.shffl-footer__copy {
    font-size: 0.84rem;
    color: var(--shffl-text-muted);
}

.shffl-footer__bottom-links {
    display: flex;
    gap: 20px;
}

.shffl-footer__bottom-links a {
    font-size: 0.84rem;
    color: var(--shffl-text-muted);
}

.shffl-footer__bottom-links a:hover {
    color: var(--shffl-text-secondary);
}

@media (max-width: 1199px) {
    .shffl-footer__grid {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    :root {
        --shffl-header-h: 64px;
    }

    .shffl-header__nav,
    .shffl-header__actions {
        display: none;
    }

    .shffl-burger {
        display: flex;
    }

    .shffl-hero {
        min-height: unset;
        padding: calc(var(--shffl-header-h) + 32px) 20px 40px;
    }

    .shffl-main--home .shffl-hero {
        padding: 28px 20px 40px;
    }

    .shffl-main--home .shffl-hero__col--text .shffl-hero__actions {
        display: none;
    }

    .shffl-section {
        padding: 50px 0;
    }

    .shffl-section--author {
        padding: 32px 0 44px;
    }

    .shffl-faq:has(+ .shffl-section--home-cta) {
        padding: 20px 0 18px;
    }

    .shffl-section--home-cta {
        padding: 18px 0 28px;
    }

    .shffl-section--originals {
        padding: 20px 0 16px;
    }
    .shffl-originals-header {
        margin-bottom: 12px;
    }
    .shffl-section--slots {
        padding: 0 0 16px;
    }
    .shffl-slots-header {
        margin-bottom: 12px;
    }

    .shffl-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .shffl-footer__nav {
        width: 100%;
    }

    .shffl-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    .shffl-hero__actions .shffl-btn {
        width: 100%;
    }

    .shffl-btn--lg {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* ── Language switcher (desktop) ─────────────────────────────────── */

.shffl-lang-switcher {
    position: relative;
}

.shffl-lang-switcher__toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 11px;
    border-radius: var(--shffl-radius-sm);
    background: var(--shffl-btn-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--shffl-text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--shffl-transition);
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.shffl-lang-switcher__toggle:hover {
    background: var(--shffl-btn-surface-hover);
    border-color: rgba(255, 255, 255, 0.14);
}

.shffl-lang-switcher__flag {
    font-size: 1.1em;
    line-height: 1;
}

.shffl-lang-switcher__code {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.shffl-lang-switcher__arrow {
    width: 14px;
    height: 14px;
    opacity: 0.6;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.shffl-lang-open .shffl-lang-switcher__arrow {
    transform: rotate(180deg);
}

.shffl-lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--shffl-radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    padding: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 2000;
}

.shffl-lang-open .shffl-lang-switcher__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.shffl-lang-switcher__item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--shffl-text-secondary);
    transition: all 0.15s ease;
    white-space: nowrap;
}

.shffl-lang-switcher__item:hover {
    background: rgba(var(--shffl-accent-rgb), 0.12);
    color: var(--shffl-text-primary);
}

.shffl-lang-switcher__item--active {
    background: rgba(var(--shffl-accent-rgb), 0.18);
    color: var(--shffl-text-primary);
    font-weight: 600;
}

.shffl-lang-switcher__item .shffl-lang-switcher__flag {
    font-size: 1rem;
}

.shffl-lang-switcher__name {
    font-size: 0.82rem;
}

/* ── Language switcher (mobile) ──────────────────────────────────── */

.shffl-mobile-lang {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--shffl-border);
}

.shffl-mobile-lang__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--shffl-text-muted);
    margin-bottom: 10px;
}

.shffl-mobile-lang__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.shffl-mobile-lang__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--shffl-text-secondary);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
    text-align: center;
    transition: all 0.15s ease;
}

.shffl-mobile-lang__item span:first-child {
    font-size: 1.4rem;
    line-height: 1;
}

.shffl-mobile-lang__item:hover {
    background: rgba(var(--shffl-accent-rgb), 0.12);
    color: var(--shffl-text-primary);
    border-color: rgba(var(--shffl-accent-rgb), 0.2);
}

.shffl-mobile-lang__item--active {
    background: rgba(var(--shffl-accent-rgb), 0.18);
    color: var(--shffl-text-primary);
    border-color: rgba(var(--shffl-accent-rgb), 0.35);
    font-weight: 600;
}
