:root {
    --thorf-primary: #5b6cff;
    --thorf-primary-light: #7b8aff;
    --thorf-primary-dark: #4a5acc;
    --thorf-primary-alpha-20: rgba(91,108,255,0.2);
    --thorf-accent: #00d4ff;
    --thorf-bg-dark: #0f1419;
    --thorf-bg-light: #1a1f29;
    --thorf-bg-card: #252a35;
    --thorf-bg-card-hover: #2f3440;
    --thorf-text-primary: #ffffff;
    --thorf-text-secondary: rgba(255,255,255,0.7);
    --thorf-text-muted: rgba(255,255,255,0.45);
    --thorf-success: #22c55e;
    --thorf-success-dark: #16a34a;
    --thorf-warning: #f59e0b;
    --thorf-danger: #ef4444;
    --thorf-gradient-primary: linear-gradient(135deg, #5b6cff, #00d4ff);
    --thorf-gradient-dark: linear-gradient(135deg, #0f1419, #252a35);
    --thorf-radius-sm: 8px;
    --thorf-radius: 12px;
    --thorf-radius-lg: 18px;
    --thorf-transition: 0.3s ease;
    --thorf-spacing-sm: 8px;
    --thorf-font-heading: 'Poppins', sans-serif;
    --thorf-font-body: 'Inter', sans-serif;
}

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

html {
    font-size: 100%;
    line-height: 1.6;
    scroll-behavior: smooth;
}

body {
    font-family: var(--thorf-font-body);
    background-color: #0c0c0e;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--thorf-text-primary);
    min-height: 100vh;
    display: grid;
    grid-template-areas:
        "header header"
        "sidebar main"
        "footer footer";
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto 1fr auto;
}

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

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

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

.thorf-header {
    grid-area: header;
    background: var(--thorf-bg-card);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header-nav a,
.header-nav div {
    color: var(--thorf-text-secondary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--thorf-transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav a:hover,
.header-nav div:hover,
.header-nav a.active {
    color: var(--thorf-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--thorf-primary);
    color: var(--thorf-primary);
    padding: 10px 20px;
    border-radius: var(--thorf-radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--thorf-transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-login:hover {
    background: var(--thorf-primary);
    color: white;
}

.btn-register {
    background: var(--thorf-gradient-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--thorf-radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--thorf-transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 108, 255, 0.4);
}

.btn-search {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: var(--thorf-radius-sm);
    color: var(--thorf-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--thorf-transition);
}

.btn-search:hover {
    background: rgba(255,255,255,0.2);
    color: var(--thorf-accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--thorf-text-secondary);
    border-radius: 2px;
    transition: all var(--thorf-transition);
}

.sidebar {
    grid-area: sidebar;
    background: var(--thorf-bg-card);
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    top: 73px;
    height: calc(100vh - 73px);
    overflow-y: auto;
}

.sidebar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: var(--thorf-text-secondary);
    cursor: pointer;
    transition: all var(--thorf-transition);
    position: relative;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.sidebar-item:hover {
    background: rgba(255,255,255,0.05);
    color: var(--thorf-accent);
}

.sidebar-item.active {
    background: var(--thorf-primary-alpha-20);
    color: var(--thorf-primary-light);
}

.sidebar-item i {
    font-size: 18px;
}

.sidebar-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: var(--thorf-accent);
    border-radius: 50%;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all var(--thorf-transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--thorf-bg-card);
    z-index: 201;
    transition: right var(--thorf-transition);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--thorf-text-secondary);
    cursor: pointer;
    font-size: 20px;
    padding: 8px;
    transition: color var(--thorf-transition);
}

.mobile-menu-close:hover {
    color: var(--thorf-accent);
}

.mobile-menu-body {
    flex: 1;
    padding: 20px;
}

.mobile-menu-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.mobile-menu-btn {
    background: var(--thorf-gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--thorf-radius);
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--thorf-transition);
}

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

.mobile-menu-btn-secondary {
    background: transparent;
    border: 1px solid var(--thorf-primary);
    color: var(--thorf-primary);
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    color: var(--thorf-text-secondary);
    cursor: pointer;
    transition: all var(--thorf-transition);
    border-radius: var(--thorf-radius-sm);
    margin-bottom: 4px;
}

.mobile-menu-item:hover {
    background: rgba(255,255,255,0.05);
    color: var(--thorf-accent);
}

.mobile-menu-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--thorf-text-muted);
    font-size: 12px;
}

main {
    grid-area: main;
    min-height: calc(100vh - 73px);
}

.thorf-article {
    padding: 40px 0;
}

.thorf-page-title {
    font-family: var(--thorf-font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--thorf-text-primary);
    margin-bottom: 32px;
    text-align: center;
    background: var(--thorf-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.thorf-intro {
    margin-bottom: 48px;
    text-align: center;
}

.thorf-intro p {
    font-size: 1.125rem;
    color: var(--thorf-text-secondary);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thorf-slogan {
    font-style: italic;
    color: var(--thorf-accent);
    font-size: 1.25rem;
    font-weight: 600;
}

.thorf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--thorf-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--thorf-transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.thorf-btn-primary {
    background: var(--thorf-gradient-primary);
    color: white;
}

.thorf-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(91, 108, 255, 0.4);
}

.thorf-hero {
    background: var(--thorf-gradient-dark);
    border-radius: var(--thorf-radius-lg);
    margin-bottom: 64px;
    overflow: hidden;
}

.thorf-hero-gradient-banner {
    padding: 48px 32px;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/banner.png');
        /* image-set() overrides fallback above in modern browsers */
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
            image-set(
                url('/images/banner.avif') type('image/avif'),
                url('/images/banner.webp') type('image/webp'),
                url('/images/banner.png') type('image/png')
            );;
}

.thorf-banner-content {
    max-width: 600px;
    margin: 0 auto;
}

.thorf-banner-label {
    display: inline-block;
    background: rgba(91, 108, 255, 0.2);
    color: var(--thorf-primary-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thorf-banner-title {
    font-family: var(--thorf-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--thorf-text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.thorf-banner-text {
    font-size: 1.125rem;
    color: var(--thorf-text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.thorf-games-section {
    margin-bottom: 64px;
}

.games-section-title {
    font-family: var(--thorf-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--thorf-text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.thorf-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.thorf-game-card {
    background: var(--thorf-bg-card);
    border-radius: var(--thorf-radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 200/267;
    cursor: pointer;
    transition: all var(--thorf-transition);
}

.thorf-game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thorf-game-placeholder {
    background: var(--thorf-gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thorf-text-muted);
    font-size: 48px;
}

.thorf-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: all var(--thorf-transition);
}

.thorf-game-card:hover .thorf-game-overlay {
    opacity: 1;
}

.thorf-game-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: white;
}

.thorf-play-btn {
    background: var(--thorf-gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transition: all var(--thorf-transition);
}

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

.btn-view-all-games {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--thorf-primary);
    color: var(--thorf-primary);
    padding: 16px 32px;
    border-radius: var(--thorf-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--thorf-transition);
    margin: 0 auto;
}

.btn-view-all-games:hover {
    background: var(--thorf-primary);
    color: white;
}

.thorf-content-section {
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.thorf-content-section.thorf-visible {
    opacity: 1;
    transform: translateY(0);
}

.thorf-content-section h2 {
    font-family: var(--thorf-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--thorf-text-primary);
    margin-bottom: 24px;
}

.thorf-content-section h3 {
    font-family: var(--thorf-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--thorf-text-primary);
    margin: 32px 0 16px 0;
}

.thorf-content-section p {
    font-size: 1rem;
    color: var(--thorf-text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.thorf-content-section ul {
    margin: 20px 0;
    padding-left: 24px;
}

.thorf-content-section li {
    color: var(--thorf-text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
}

table {
    width: 100%;
    background: var(--thorf-bg-card);
    border-radius: var(--thorf-radius);
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}

th {
    background: var(--thorf-bg-light);
    color: var(--thorf-text-primary);
    font-weight: 600;
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

td {
    padding: 16px;
    color: var(--thorf-text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.thorf-quick-table th {
    background: var(--thorf-primary);
    color: white;
}

.thorf-promo-code-highlight {
    background: var(--thorf-bg-card);
    border: 1px solid var(--thorf-primary-alpha-20);
    border-radius: var(--thorf-radius);
    padding: 24px;
    margin: 32px 0;
}

.thorf-promo-code-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.thorf-promo-icon {
    width: 48px;
    height: 48px;
    background: var(--thorf-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.thorf-promo-code-content {
    flex: 1;
}

.thorf-promo-label {
    display: block;
    font-size: 14px;
    color: var(--thorf-text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thorf-promo-code {
    font-size: 18px;
    font-weight: 700;
    color: var(--thorf-accent);
    font-family: monospace;
}

.thorf-copy-code-btn {
    background: var(--thorf-primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: var(--thorf-radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--thorf-transition);
}

.thorf-copy-code-btn:hover {
    background: var(--thorf-primary-dark);
    transform: translateY(-2px);
}

.thorf-timeline {
    margin: 32px 0;
}

.thorf-timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.thorf-timeline-number {
    width: 40px;
    height: 40px;
    background: var(--thorf-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.thorf-timeline-content {
    flex: 1;
    padding-top: 4px;
}

.thorf-timeline-title {
    font-weight: 600;
    color: var(--thorf-text-primary);
    margin-bottom: 8px;
}

.thorf-timeline-text {
    color: var(--thorf-text-secondary);
    line-height: 1.6;
}

.thorf-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.thorf-stat-card {
    background: var(--thorf-bg-card);
    border-radius: var(--thorf-radius);
    padding: 24px;
    text-align: center;
    transition: all var(--thorf-transition);
    border-left: 3px solid transparent;
}

.thorf-stat-icon {
    font-size: 2rem;
    color: var(--thorf-accent);
    margin-bottom: 16px;
}

.thorf-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--thorf-text-primary);
    margin-bottom: 8px;
}

.thorf-stat-label {
    font-size: 14px;
    color: var(--thorf-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thorf-info-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--thorf-radius);
    margin: 24px 0;
    align-items: flex-start;
}

.thorf-info-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.thorf-info-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.thorf-info-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.thorf-info-warning .thorf-info-icon {
    color: var(--thorf-warning);
}

.thorf-info-success .thorf-info-icon {
    color: var(--thorf-success);
}

.thorf-info-content {
    color: var(--thorf-text-secondary);
    line-height: 1.6;
}

.thorf-info-content strong {
    color: var(--thorf-text-primary);
}

.thorf-provider-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.thorf-provider-tag {
    background: var(--thorf-bg-card);
    color: var(--thorf-text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--thorf-transition);
}

.thorf-provider-tag:hover {
    background: var(--thorf-bg-card-hover);
    border-color: var(--thorf-primary);
    color: var(--thorf-primary-light);
}

.thorf-security-section {
    background: var(--thorf-bg-card);
    border-radius: var(--thorf-radius-lg);
    padding: 48px 32px;
    margin: 64px 0;
}

.thorf-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.thorf-security-badge {
    background: var(--thorf-bg-dark);
    border-radius: var(--thorf-radius);
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.thorf-security-icon {
    font-size: 2.5rem;
    color: var(--thorf-accent);
    margin-bottom: 16px;
}

.thorf-security-badge-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--thorf-text-primary);
    margin-bottom: 12px;
}

.thorf-security-badge-text {
    color: var(--thorf-text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.thorf-wheel-section {
    background: var(--thorf-bg-card);
    border-radius: var(--thorf-radius-lg);
    padding: 48px 32px;
    margin: 64px 0;
}

.thorf-wheel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.thorf-wheel-card {
    background: var(--thorf-bg-dark);
    border-radius: var(--thorf-radius);
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

.thorf-wheel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.thorf-wheel-icon {
    width: 48px;
    height: 48px;
    background: var(--thorf-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.thorf-wheel-name {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--thorf-text-primary);
}

.thorf-wheel-cost {
    background: rgba(255,215,0,0.2);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.thorf-wheel-table {
    font-size: 14px;
}

.thorf-wheel-table th {
    background: var(--thorf-primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px;
}

.thorf-wheel-table td {
    padding: 12px;
}

.thorf-cashback-section {
    background: var(--thorf-bg-card);
    border-radius: var(--thorf-radius-lg);
    padding: 48px 32px;
    margin: 64px 0;
}

.thorf-cashback-card {
    background: var(--thorf-bg-dark);
    border-radius: var(--thorf-radius);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 32px;
}

.thorf-cashback-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.thorf-cashback-icon {
    width: 64px;
    height: 64px;
    background: var(--thorf-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.thorf-cashback-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--thorf-accent);
    margin-bottom: 4px;
}

.thorf-cashback-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--thorf-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thorf-cashback-body {
    margin-bottom: 32px;
}

.thorf-cashback-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.thorf-cashback-stat {
    text-align: center;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--thorf-radius-sm);
}

.thorf-cashback-stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--thorf-text-primary);
    margin-bottom: 4px;
}

.thorf-cashback-stat-label {
    font-size: 12px;
    color: var(--thorf-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thorf-shop-section {
    background: var(--thorf-bg-card);
    border-radius: var(--thorf-radius-lg);
    padding: 48px 32px;
    margin: 64px 0;
}

.thorf-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.thorf-shop-card {
    background: var(--thorf-bg-dark);
    border-radius: var(--thorf-radius);
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.1);
}

.thorf-shop-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.thorf-shop-icon {
    width: 48px;
    height: 48px;
    background: var(--thorf-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.thorf-shop-category {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--thorf-text-primary);
}

.thorf-shop-count {
    background: rgba(0,212,255,0.2);
    color: var(--thorf-accent);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.thorf-shop-table {
    font-size: 14px;
}

.thorf-shop-table th {
    background: var(--thorf-primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px;
}

.thorf-shop-table td {
    padding: 12px;
}

.thorf-lang-section {
    background: var(--thorf-bg-card);
    border-radius: var(--thorf-radius-lg);
    padding: 48px 32px;
    margin: 64px 0;
}

.thorf-lang-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.thorf-lang-tag {
    background: var(--thorf-bg-dark);
    color: var(--thorf-text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--thorf-transition);
}

.thorf-lang-tag:hover {
    background: var(--thorf-bg-card-hover);
    border-color: var(--thorf-accent);
    color: var(--thorf-accent);
}

.thorf-lang-tag i {
    color: var(--thorf-accent);
}

.thorf-restricted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.thorf-restricted-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--thorf-radius-sm);
    color: var(--thorf-text-secondary);
    font-size: 14px;
}

.thorf-restricted-item i {
    color: var(--thorf-danger);
}

.thorf-site-screenshot-wrap {
    display: block;
    margin: 48px 0;
    border-radius: var(--thorf-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.thorf-site-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--thorf-transition);
}

.thorf-site-screenshot:hover {
    transform: scale(1.02);
}

.thorf-faq-section {
    background: var(--thorf-bg-card);
    border-radius: var(--thorf-radius-lg);
    padding: 48px 32px;
    margin: 64px 0;
}

.thorf-faq-list {
    margin-top: 32px;
}

.thorf-faq-item {
    background: var(--thorf-bg-dark);
    border-radius: var(--thorf-radius);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--thorf-transition);
}

.thorf-faq-question {
    padding: 24px;
    font-weight: 600;
    color: var(--thorf-text-primary);
    cursor: pointer;
    position: relative;
    transition: all var(--thorf-transition);
}

.thorf-faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--thorf-accent);
    transition: transform var(--thorf-transition);
}

.thorf-faq-item.open .thorf-faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.thorf-faq-question:hover {
    background: rgba(255,255,255,0.03);
}

.thorf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--thorf-transition);
}

.thorf-faq-item.open .thorf-faq-answer {
    max-height: 300px;
}

.thorf-faq-answer div {
    padding: 0 24px 24px 24px;
    color: var(--thorf-text-secondary);
    line-height: 1.6;
}

.thorf-footer {
    grid-area: footer;
    background: var(--thorf-bg-card);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 48px 0 24px 0;
}

.thorf-footer-top {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.thorf-footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    color: var(--thorf-text-secondary);
}

.footer-col strong {
    color: var(--thorf-text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a,
.footer-col div {
    color: var(--thorf-text-secondary);
    text-decoration: none;
    transition: color var(--thorf-transition);
    cursor: pointer;
    font-size: 14px;
}

.footer-col a:hover,
.footer-col div:hover {
    color: var(--thorf-accent);
}

.thorf-footer-disclaimer {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--thorf-radius);
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 14px;
    color: var(--thorf-text-secondary);
    line-height: 1.6;
}

.thorf-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.thorf-footer-copyright {
    color: var(--thorf-text-muted);
    font-size: 14px;
}

.thorf-footer-badges {
    display: flex;
    gap: 12px;
    align-items: center;
}

.thorf-age-badge {
    background: var(--thorf-warning);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
}

.thorf-ssl-badge {
    background: var(--thorf-success);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

div[data-link] {
    cursor: pointer;
}

.thorf-section-title {
    font-family: var(--thorf-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin: 64px 0 32px 0;
    background: var(--thorf-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thorf-breadcrumb {
    margin: 20px 0;
}

.thorf-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.thorf-breadcrumb-item {
    color: var(--thorf-text-muted);
    font-size: 14px;
}

.thorf-breadcrumb-item a {
    color: var(--thorf-text-muted);
    text-decoration: none;
    transition: color var(--thorf-transition);
}

.thorf-breadcrumb-item a:hover {
    color: var(--thorf-accent);
}

.thorf-breadcrumb-item + .thorf-breadcrumb-item::before {
    content: '›';
    color: var(--thorf-text-muted);
    margin-right: 8px;
}

.thorf-breadcrumb-current {
    color: var(--thorf-text-primary);
    font-weight: 500;
}

@media (prefers-reduced-motion: no-preference) {
    @keyframes fd-fade-up {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fd-fade-in {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes fd-scale-in {
        from {
            opacity: 0;
            transform: scale(0.96);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .thorf-page-title {
        animation: fd-fade-up 0.5s ease-out both;
    }

    .thorf-intro {
        animation: fd-fade-up 0.5s ease-out 0.15s both;
    }

    .thorf-hero {
        animation: fd-fade-in 0.5s ease-out 0.25s both;
    }

    .thorf-games-section {
        animation: fd-fade-up 0.5s ease-out 0.35s both;
    }

    .thorf-game-card:nth-child(1) {
        animation: fd-scale-in 0.4s ease-out 0s both;
    }

    .thorf-game-card:nth-child(2) {
        animation: fd-scale-in 0.4s ease-out 0.05s both;
    }

    .thorf-game-card:nth-child(3) {
        animation: fd-scale-in 0.4s ease-out 0.1s both;
    }

    .thorf-game-card:nth-child(4) {
        animation: fd-scale-in 0.4s ease-out 0.15s both;
    }

    .thorf-game-card:nth-child(5) {
        animation: fd-scale-in 0.4s ease-out 0.2s both;
    }

    .thorf-game-card:nth-child(6) {
        animation: fd-scale-in 0.4s ease-out 0.25s both;
    }

    .thorf-game-card:nth-child(7) {
        animation: fd-scale-in 0.4s ease-out 0.3s both;
    }

    .thorf-game-card:nth-child(8) {
        animation: fd-scale-in 0.4s ease-out 0.35s both;
    }

    .thorf-game-card:hover {
        transform: scale(1.04);
        box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 0 1px var(--thorf-accent);
    }

    .thorf-stat-card:hover {
        transform: translateY(-4px);
        border-left: 3px solid var(--thorf-primary);
    }
}

#thorf-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--thorf-gradient-primary);
    z-index: 1000;
    transition: width 0.3s ease;
}

#thorf-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--thorf-bg-card);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
    z-index: 150;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.thorf-sticky-bar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.thorf-sticky-bonus-text {
    color: var(--thorf-text-primary);
    font-weight: 600;
    margin-right: 24px;
}

.thorf-sticky-bar-btn {
    background: var(--thorf-gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--thorf-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--thorf-transition);
}

.thorf-sticky-bar-btn:hover {
    transform: translateY(-2px);
}

.thorf-sticky-bar-close {
    background: transparent;
    border: none;
    color: var(--thorf-text-muted);
    cursor: pointer;
    font-size: 16px;
    padding: 8px;
    transition: color var(--thorf-transition);
}

.thorf-sticky-bar-close:hover {
    color: var(--thorf-text-primary);
}

#thorf-toast {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: var(--thorf-success);
    color: white;
    padding: 16px 24px;
    border-radius: var(--thorf-radius);
    font-weight: 600;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

#thorf-toast.thorf-toast-show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 1320px) {
    .thorf-container {
        max-width: 1000px;
    }
    
    .thorf-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1040px) {
    body {
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "main"
            "footer";
    }
    
    .sidebar {
        display: none;
    }
    
    .thorf-page-title {
        font-size: 2.5rem;
    }
    
    .thorf-banner-title {
        font-size: 2rem;
    }
    
    .thorf-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }
    
    .thorf-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .thorf-footer-cols {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 32px;
    }
}

@media (max-width: 790px) {
    .btn-login {
        display: none;
    }
    
    .btn-search {
        display: none;
    }
    
    .header-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .thorf-page-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    
    .thorf-intro p {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .thorf-hero-gradient-banner {
        padding: 32px 20px;
    }
    
    .thorf-banner-title {
        font-size: 1.75rem;
    }
    
    .thorf-banner-text {
        font-size: 1rem;
    }
    
    .thorf-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .thorf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .thorf-content-section {
        margin-bottom: 48px;
    }
    
    .thorf-content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .thorf-content-section h3 {
        font-size: 1.25rem;
        margin: 24px 0 12px 0;
    }
    
    .thorf-footer-cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .thorf-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .thorf-security-grid,
    .thorf-wheel-grid,
    .thorf-shop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .thorf-cashback-highlight {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .thorf-cashback-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .thorf-restricted-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .thorf-timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .thorf-promo-code-badge {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .table-wrapper {
        font-size: 14px;
    }
    
    th, td {
        padding: 12px 8px;
    }
    
    .thorf-wheel-table th,
    .thorf-wheel-table td,
    .thorf-shop-table th,
    .thorf-shop-table td {
        padding: 8px;
    }
    
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
    
    #thorf-sticky-bar {
        padding: 12px;
    }
    
    .thorf-sticky-bar-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .thorf-sticky-bonus-text {
        margin-right: 0;
        margin-bottom: 8px;
        text-align: center;
    }
}
/* ── HERO BANNER SIZING (post-patch) ─────────────── */
.thorf-hero-gradient-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
/* ── BREADCRUMB LIST MARKERS (post-patch) ────────── */
ol.thorf-breadcrumb-list { list-style-type: none !important; padding-left: 0 !important; margin: 0 !important; }

/* ── OVERFLOW FIX (post-patch) ───────────────────── */
html { overflow-x: clip !important; }
body { display: block !important; overflow-x: clip !important; width: 100%; }
/* H1 size cap — 20% smaller than default */
[class*="-page-title"], main h1:first-child { font-size: clamp(1.45rem, 3.2vw, 2.1rem) !important; }
/* Kill any grid-area LLM put on structural elements */
.thorf-header, main, .thorf-footer, footer { grid-area: unset !important; }
/* Header: always flex, single row */
.thorf-header { display: flex !important; align-items: center !important; justify-content: space-between !important; height: 80px !important; padding: 0 20px !important; }
/* Toast: hidden by default via opacity (translateX alone not enough) */
#thorf-toast { opacity: 0 !important; }
.thorf-toast-show { opacity: 1 !important; transform: translateX(0) !important; }

/* ── MOBILE GRID FIX (post-patch) ────────────────── */
@media (max-width: 790px) {
    [class*="-games-grid"] { grid-template-columns: repeat(2, 1fr) !important; }
    [class*="-stats-grid"] { grid-template-columns: repeat(2, 1fr) !important; }
    [class*="-provider-grid"] { grid-template-columns: repeat(3, 1fr) !important; }
    [class*="-footer-cols"] { grid-template-columns: 1fr 1fr !important; }
    [class*="-container"] { max-width: 100% !important; padding: 0 15px !important; box-sizing: border-box !important; }
    main, [class*="-article"] { margin: 0 !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
    main > div:first-child,
    main > [class*="-container"]:first-child { padding-top: 20px !important; }
    main { overflow: visible !important; }
    body { overflow-x: clip !important; }
}

/* ── GAMES GRID MOBILE FIX (post-patch) ─────────── */
@media (max-width: 790px) {
    .thorf-games-grid, [class*="-games-grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .thorf-game-card, [class*="-game-card"] {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    .thorf-games-section .thorf-container,
    [class*="-games-section"] [class*="-container"] {
        padding: 0 10px !important;
        overflow: hidden !important;
    }
}

/* ── LAYOUT (post-patch, canonical flow-based) ───── */
body { display: block; min-height: 100vh; }
.thorf-header { position: sticky; top: 0; z-index: 1000; width: 100%; }
.sidebar { position: fixed; left: 0; top: 80px; bottom: 0; width: 200px; z-index: 999; overflow-y: auto; }
main { margin-left: 200px; min-width: 0; max-width: 100%; overflow: hidden; }
.thorf-footer { margin-left: 200px; }
@media (max-width: 1040px) {
    .sidebar { width: 56px !important; }
    main { margin-left: 56px !important; }
    .thorf-footer { margin-left: 56px !important; }
}
@media (max-width: 790px) {
    .sidebar { display: none !important; }
    main { margin-left: 0 !important; overflow: visible !important; width: 100% !important; max-width: 100% !important; }
    .thorf-footer { margin-left: 0 !important; }
    [class*="-container"] { max-width: 100% !important; padding: 0 15px !important; box-sizing: border-box !important; }
    [class*="-games-grid"] { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    [class*="-stats-grid"] { grid-template-columns: repeat(2, 1fr) !important; }
    [class*="-provider-grid"] { grid-template-columns: repeat(3, 1fr) !important; }
    [class*="-footer-cols"] { grid-template-columns: 1fr 1fr !important; }
}

/* ── COMPLIANCE BLOCKS (post-patch) ─────────────────── */
/* Container styling only — typography (h2 gradient, h3 color, p opacity) is
   inherited from .thorf-content-section which is ALSO applied to this section.
   Do not override font-size/color here or it will break visual consistency
   with other content sections. */
.thorf-responsible-gaming, section.responsible-gaming {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border-left: 3px solid var(--thorf-primary, rgba(255,255,255,0.2));
    border-radius: 6px;
}
.footer-license-info, .license-info {
    font-size: 0.78rem;
    color: var(--thorf-text-muted, rgba(255,255,255,0.6));
    line-height: 1.6;
    padding: 0.5rem 0 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-license-info span, .license-info span {
    display: inline-block;
}
a.dmca-badge {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    opacity: 0.85;
    transition: opacity 0.2s;
}
a.dmca-badge:hover { opacity: 1; }
a.dmca-badge img {
    height: 28px;
    width: auto;
    display: block;
}
@media (max-width: 600px) {
    a.dmca-badge img { height: 24px; }
    .footer-license-info, .license-info { font-size: 0.72rem; }
}

/* === THORFORTUNE sticky-bar + payment + faq patch v2 === */
/* (3) Desktop: hide sticky bar entirely — overrides inline JS display:flex */
@media (min-width: 791px) {
    #thorf-sticky-bar { display: none !important; }
}
/* (4) Mobile: refined sticky bar */
@media (max-width: 790px) {
    #thorf-sticky-bar {
        padding: 10px 14px;
        flex-direction: column;
        gap: 8px;
        background: rgba(21,26,37,0.92);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(91,108,255,0.35);
        border-radius: 14px 14px 0 0;
        box-shadow: 0 -8px 24px rgba(0,0,0,0.45);
    }
    .thorf-sticky-bonus-text {
        margin: 0;
        text-align: center;
        font-size: 13px;
        line-height: 1.25;
        letter-spacing: .2px;
        font-weight: 700;
        background: linear-gradient(90deg,#ffd76a,#ffb02e);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    .thorf-sticky-bar-actions {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .thorf-sticky-bar-btn {
        flex: 1 1 auto;
        text-align: center;
        padding: 11px 18px;
        font-size: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 14px rgba(91,108,255,0.45);
        animation: thorf-sticky-pulse 2.2s ease-in-out infinite;
    }
    .thorf-sticky-bar-close {
        flex: 0 0 auto;
        width: 40px; height: 40px;
        border-radius: 10px;
        background: rgba(255,255,255,0.06);
        display: flex; align-items: center; justify-content: center;
        font-size: 15px; padding: 0;
    }
}
@keyframes thorf-sticky-pulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(91,108,255,0.45); transform: scale(1); }
    50%      { box-shadow: 0 6px 22px rgba(91,108,255,0.85); transform: scale(1.015); }
}
@media (prefers-reduced-motion: reduce) {
    .thorf-sticky-bar-btn { animation: none !important; }
}
/* (2e) Payment-method pills */
.thorf-payment-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 14px 0 6px; }
.thorf-pay-logos-label { font-size: 13px; font-weight: 600; color: var(--thorf-text-muted); margin-right: 4px; }
.thorf-pay-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; font-size: 13px; font-weight: 600; color: var(--thorf-text-primary); background: var(--thorf-bg-card,#252a35); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; }
.thorf-pay-pill i { font-size: 16px; color: var(--thorf-primary,#5b6cff); }
/* (2b) FAQ page CTA link */
.thorf-faq-cta { margin: 6px 0 18px; }
.thorf-faq-page-link { display: inline-block; font-weight: 600; color: var(--thorf-primary,#5b6cff); text-decoration: none; }
.thorf-faq-page-link:hover { text-decoration: underline; }

/* === THORFORTUNE lang-switch-footer === */
.lang-switch-footer{display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:center;margin:14px 0;padding-top:12px;border-top:1px solid rgba(255,255,255,.1)}
.lang-foot-item{display:inline-flex;align-items:center;gap:6px;font-size:.82rem;font-weight:600;text-decoration:none;color:inherit;opacity:.75;transition:opacity .2s}
.lang-foot-item:hover{opacity:1}
.lang-foot-item.active{opacity:1;text-decoration:underline}
.lang-switch-footer .lang-flag{font-size:1.05rem;line-height:1}

/* === THORFORTUNE hero legibility === */
/* Darkening scrim behind hero text (vignette) — keeps lightning visible at edges,
   guarantees contrast where the copy sits. Sits above the bg image, below content. */
.thorf-hero-gradient-banner { position: relative; }
.thorf-hero-gradient-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 78% at center,
        rgba(8,11,20,0.50) 0%,
        rgba(8,11,20,0.22) 55%,
        rgba(8,11,20,0.00) 100%);
    pointer-events: none;
    z-index: 0;
}
.thorf-banner-content { position: relative; z-index: 1; }
.thorf-banner-label {
    background: rgba(91,108,255,0.92);
    color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.thorf-banner-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.95), 0 0 18px rgba(0,0,0,0.85);
}
.thorf-banner-text {
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 0 12px rgba(0,0,0,0.80);
}
.thorf-hero-gradient-banner .thorf-btn-primary {
    box-shadow: 0 6px 20px rgba(91,108,255,0.55);
}

/* === THORFORTUNE hero uniform height === */
.thorf-hero-gradient-banner{min-height:300px;display:flex;flex-direction:column;align-items:center;justify-content:center}
.thorf-hero-gradient-banner > .thorf-banner-content{width:100%;max-width:600px}
@media (max-width:790px){.thorf-hero-gradient-banner{min-height:240px}}

/* === THORFORTUNE hero brighter base overlay === */
.thorf-hero-gradient-banner{
  background-image:
    linear-gradient(rgba(0,0,0,0.12), rgba(0,0,0,0.12)),
    image-set(
      url('/images/banner.avif') type('image/avif'),
      url('/images/banner.webp') type('image/webp'),
      url('/images/banner.png') type('image/png'));
}

/* === THORFORTUNE kyc subpage components === */
#thorf-progress-bar{position:fixed;top:0;left:0;height:3px;width:0;background:var(--thorf-gradient-primary,linear-gradient(90deg,#5b6cff,#4a5acc));z-index:300;transition:width .1s linear}
.thorf-kyc-triggers,.thorf-document-categories,.thorf-processing-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:16px;margin-top:18px}
.thorf-kyc-trigger-item{display:flex;gap:14px;align-items:flex-start;background:var(--thorf-bg-card,#252a35);border:1px solid rgba(255,255,255,.08);border-radius:var(--thorf-radius,12px);padding:18px}
.thorf-kyc-trigger-icon{flex:0 0 auto;width:44px;height:44px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:rgba(91,108,255,.15);color:var(--thorf-primary,#5b6cff);font-size:20px}
.thorf-kyc-trigger-content h3{margin:0 0 6px;font-size:1.05rem;color:var(--thorf-text-primary,#fff)}
.thorf-kyc-trigger-content p{margin:0;color:var(--thorf-text-secondary,#aeb6c4);line-height:1.55}
.thorf-document-category{background:var(--thorf-bg-card,#252a35);border:1px solid rgba(255,255,255,.08);border-radius:var(--thorf-radius,12px);padding:18px}
.thorf-document-category-header{display:flex;align-items:center;gap:10px;margin-bottom:10px;color:var(--thorf-primary,#5b6cff)}
.thorf-document-category-header h3{margin:0;font-size:1.05rem;color:var(--thorf-text-primary,#fff)}
.thorf-document-list{margin:0;padding-left:18px;color:var(--thorf-text-secondary,#aeb6c4);line-height:1.7}
.thorf-timeline-container{display:flex;flex-direction:column;gap:14px;margin-top:18px}
.thorf-timeline-badge{flex:0 0 auto;padding:6px 14px;border-radius:20px;font-size:.8rem;font-weight:700;color:#fff;white-space:nowrap;height:fit-content}
.thorf-timeline-badge-primary{background:var(--thorf-primary,#5b6cff)}
.thorf-timeline-badge-info{background:#2b9fd8}
.thorf-timeline-badge-success{background:var(--thorf-success,#2ecc71)}
.thorf-timeline-time{display:inline-block;margin-top:6px;font-size:.85rem;color:var(--thorf-text-muted,#8a93a6);font-weight:600}
.thorf-info-info{border-left:4px solid #2b9fd8}
