/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #8d52da;
    --purple-dark: #6b3fa8;
    --purple-light: #a570e8;
    --yellow: #d4ff00;
    --yellow-dark: #b8d900;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #141420;
    --bg-card-hover: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b8b8c8;
    --text-muted: #6b6b7a;
    --border: rgba(141, 82, 218, 0.2);
    --border-active: rgba(141, 82, 218, 0.5);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(141, 82, 218, 0.3);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(ellipse at top, rgba(141, 82, 218, 0.1) 0%, transparent 50%);
    font-size: 14px;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

/* App Layout */
.app {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    border-right: 1px solid var(--border);
    padding: 24px 16px;
    overflow-y: auto;
    z-index: 100;
    content-visibility: auto;
    contain-intrinsic-size: 280px 100vh;
}

.sidebar__brand {
    margin-bottom: 32px;
    padding: 0 8px;
}

.sidebar__brand img {
    width: 120px;
    height: auto;
}

.sidebar__mode {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.mode-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.mode-btn:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.mode-btn.active {
    background: var(--purple);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.mode-btn svg {
    flex-shrink: 0;
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-item:hover {
    color: var(--text-primary);
    background: var(--bg-card);
}

.nav-item.active {
    background: var(--purple);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.nav-item svg:first-child {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.nav-item svg:last-child {
    margin-left: auto;
    opacity: 0.6;
}

/* Content */
.content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
    max-width: calc(100vw - 280px);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Topbar */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid var(--border);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-logo {
    display: none;
}

.search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.search-btn:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.topbar__right {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn--connect {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn--connect:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-active);
}

.btn--signup {
    background: var(--yellow);
    color: var(--bg-dark);
    font-weight: 700;
}

.btn--signup:hover {
    background: var(--yellow-dark);
    box-shadow: 0 0 20px rgba(212, 255, 0, 0.4);
}

/* Mobile Tabs */
.mobile-tabs {
    display: none;
    padding: 12px 16px;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    gap: 8px;
    overflow-x: auto;
}

.mobile-tab {
    padding: 10px 20px;
    border-radius: 20px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.mobile-tab:hover {
    color: var(--text-primary);
}

.mobile-tab.active {
    color: var(--purple);
    border-color: var(--purple);
    background: rgba(141, 82, 218, 0.1);
}

/* Main */
.main {
    padding: 32px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Promos */
.promos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 132px;
    margin-bottom: 32px;
}

.promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    aspect-ratio: 16 / 9;
    min-height: 200px;
}

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

.promo-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.promo-btn {
    padding: 12px 24px;
    border-radius: 24px;
    background: var(--purple);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.promo-btn:hover {
    background: var(--purple-light);
    box-shadow: var(--shadow-glow);
}

/* Category Pills */
.cats {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.cats::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 24px;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    position: relative;
}

.cat-pill:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.cat-pill.active {
    background: var(--purple);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4444;
    animation: pulse 2s infinite;
}

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

/* Filters */
.filters {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(141, 82, 218, 0.1);
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--border-active);
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 20px;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 13px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.filter-pill:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

/* Strip Sections */
.strip {
    margin-bottom: 48px;
    content-visibility: auto;
    contain-intrinsic-size: 400px;
}

.strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.strip-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.strip-controls {
    display: flex;
    gap: 8px;
}

.strip-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.strip-btn:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--purple);
}

.strip-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--purple) var(--bg-card);
}

.strip-container::-webkit-scrollbar {
    height: 6px;
}

.strip-container::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 3px;
}

.strip-container::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 3px;
}

.game-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    content-visibility: auto;
    contain-intrinsic-size: 200px 360px;
}

.game-card__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 5 / 7;
    background: var(--bg-card);
    margin-bottom: 12px;
}

.game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.game-card:hover .game-card__image img {
    transform: scale(1.05);
}

.game-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.game-badge--new {
    background: rgba(141, 82, 218, 0.9);
    color: var(--text-primary);
}

.game-badge--hot {
    background: rgba(255, 107, 47, 0.9);
    color: var(--text-primary);
}

.game-badge--live {
    background: rgba(255, 68, 68, 0.9);
    color: var(--text-primary);
}

.game-badge--max {
    display: none;
}

.game-card__info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.game-card__info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Studios */
.studios {
    margin-bottom: 48px;
    display: none;
}

.studios h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.studios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.studio-card {
    padding: 16px;
    border-radius: 16px;
    background: var(--bg-card);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.studio-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--purple);
    color: var(--text-primary);
}

/* Populaire */
.populaire {
    margin-bottom: 48px;
    display: none;
}

.populaire h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.populaire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

/* Featured */
.featured {
    margin-bottom: 48px;
    display: none;
}

.featured h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.game-seats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 11px;
    color: var(--text-secondary);
}

.seats-icons {
    display: flex;
    gap: 4px;
}

.seats-icons span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--yellow);
    display: inline-block;
}

.game-numbers {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

/* Live Feed */
.livefeed {
    margin-bottom: 48px;
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}

.livefeed-header {
    margin-bottom: 24px;
}

.livefeed-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.livefeed-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.livefeed-tab {
    padding: 10px 20px;
    border-radius: 20px;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.livefeed-tab:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.livefeed-tab.active {
    background: var(--purple);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.livefeed-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border);
}

.livefeed-table {
    display: grid;
    gap: 12px;
}

.livefeed-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 12px;
    border-radius: 12px;
    align-items: center;
    transition: all 0.2s ease;
}

.livefeed-row--header {
    background: var(--bg-darker);
    font-weight: 600;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.livefeed-row:not(.livefeed-row--header):hover {
    background: var(--bg-card-hover);
}

.livefeed-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.livefeed-cell--win {
    color: var(--yellow);
    font-weight: 600;
}

.badge-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.livefeed-more {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    background: var(--purple);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.livefeed-more:hover {
    background: var(--purple-light);
    box-shadow: var(--shadow-glow);
}

/* TOP 5 Games */
.tops {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

.top-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.top-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.top-card--hot::before {
    background-image: url('img/Jeux%20chauds.webp');
}

.top-card--cold::before {
    background-image: url('img/Jeux%20froids.webp');
}

.top-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.top-card__header h2 {
    font-size: 20px;
    font-weight: 700;
}

.top-card--hot .top-card__header h2 {
    color: #ff6b2f;
}

.top-card__header svg {
    flex-shrink: 0;
}

.info-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: all 0.2s ease;
}

.info-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.top-card__image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    z-index: 1;
}

.top-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-card__image span {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 12px;
    color: var(--text-secondary);
}

.top-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: var(--bg-darker);
    transition: all 0.2s ease;
}

.top-item:hover {
    background: var(--bg-card-hover);
}

.top-item img {
    width: 60px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.top-item__info {
    flex: 1;
}

.top-item__info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.top-item__info p {
    font-size: 12px;
    color: var(--text-muted);
}

.top-item__percent {
    font-size: 18px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 12px;
}

.top-item__percent--hot {
    color: #ff6b2f;
    background: rgba(255, 107, 47, 0.1);
}

.top-item__percent--cold {
    color: var(--purple);
    background: rgba(141, 82, 218, 0.1);
}

/* Themes */
.themes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    content-visibility: auto;
    contain-intrinsic-size: 400px;
}

.theme-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.theme-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--purple);
}

.theme-card__content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.theme-card__content p {
    font-size: 14px;
    color: var(--text-muted);
}

.theme-card__preview {
    display: flex;
    gap: 8px;
}

.theme-thumb {
    width: 60px;
    height: 80px;
    border-radius: 8px;
    background: var(--bg-darker);
    border: 1px solid var(--border);
}

/* SEO Section */
.seo-section {
    margin: 48px 32px;
    padding: 48px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.3;
    border-bottom: 2px solid var(--purple);
    padding-bottom: 16px;
}

.seo-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--purple);
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.4;
    scroll-margin-top: 100px;
}

.seo-section h2[id],
.seo-section p[id] {
    scroll-margin-top: 100px;
}

.seo-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 20px;
}

.seo-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.seo-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-darker);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.seo-table thead {
    background: var(--purple);
}

.seo-table th {
    padding: 16px 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.seo-table td {
    padding: 14px 12px;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.seo-table tbody tr {
    transition: background 0.2s ease;
}

.seo-table tbody tr:hover {
    background: var(--bg-card-hover);
}

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

.seo-faq {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--border);
}

.seo-faq h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 32px;
    margin-top: 0;
}

.faq-item {
    margin-bottom: 16px;
    background: var(--bg-darker);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--purple);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--bg-card);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--purple);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 48px 32px 32px;
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__brand img {
    width: 120px;
    height: auto;
}

.footer__lang {
    margin-left: auto;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--purple);
}

.age-badge {
    padding: 8px 12px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.footer__sponsors {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.footer__sponsors p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.sponsors-logos {
    display: flex;
    gap: 16px;
}

.sponsors-logos span {
    padding: 8px 16px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

/* Bonus Notification */
.bonus-notification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bonus-notification.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}


.bonus-notification__content {
    position: relative;
    width: 480px;
    height: 360px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(141, 82, 218, 0.2) 0%, var(--bg-card) 50%, var(--bg-darker) 100%);
    border: 3px solid rgba(141, 82, 218, 0.6);
    padding: 50px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 80px rgba(141, 82, 218, 0.6),
        0 0 120px rgba(141, 82, 218, 0.4),
        0 0 160px rgba(141, 82, 218, 0.2),
        inset 0 0 60px rgba(141, 82, 218, 0.1);
    overflow: hidden;
    pointer-events: auto;
}

/* Initial state - hidden */
.bonus-notification__content {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
}

/* Stage 1: Appear in center */
.bonus-notification.show .bonus-notification__content {
    animation: appearCenter 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Stage 2: Shrink and move down */
.bonus-notification.show.shrink .bonus-notification__content {
    animation: appearCenter 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
               moveDown 1.5s cubic-bezier(0.23, 1, 0.32, 1) 1s forwards;
}

/* Stage 3: Fixed at bottom */
.bonus-notification.show.shrunk .bonus-notification__content {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    width: 432px;
    height: 324px;
    padding: 45px 36px;
    border-radius: 30px;
    animation: none;
    opacity: 1;
}

@keyframes appearCenter {
    0% {
        transform: scale(0) rotate(-10deg);
        opacity: 0;
    }
    40% {
        transform: scale(1.05) rotate(2deg);
        opacity: 0.95;
    }
    70% {
        transform: scale(0.98) rotate(-1deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes moveDown {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    30% {
        transform: scale(0.95) translateY(calc(25vh + 50px));
        opacity: 1;
    }
    60% {
        transform: scale(0.92) translateY(calc(40vh + 120px));
        opacity: 1;
    }
    100% {
        transform: scale(0.9) translateY(calc(50vh + 180px));
        opacity: 1;
    }
}

.bonus-notification__content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(141, 82, 218, 0.3),
        transparent 30%,
        transparent,
        rgba(212, 255, 0, 0.2),
        transparent 60%,
        transparent,
        rgba(141, 82, 218, 0.3),
        transparent
    );
    animation: rotate 4s linear infinite;
    opacity: 0.5;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.bonus-notification__content::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 29px;
    background: linear-gradient(135deg, rgba(141, 82, 218, 0.15) 0%, var(--bg-card) 50%, var(--bg-darker) 100%);
    z-index: -1;
}

.bonus-notification__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(141, 82, 218, 0.5);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.bonus-notification__close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--purple);
    color: var(--text-primary);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(141, 82, 218, 0.6);
}

.bonus-notification__icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    background: rgba(141, 82, 218, 0.2);
    border: 3px solid rgba(141, 82, 218, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    box-shadow: 
        0 0 40px rgba(141, 82, 218, 0.8),
        0 0 80px rgba(141, 82, 218, 0.4),
        inset 0 0 20px rgba(141, 82, 218, 0.1);
    animation: iconPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.bonus-notification__icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(141, 82, 218, 0.4), rgba(212, 255, 0, 0.2));
    z-index: -1;
    opacity: 0.5;
    animation: iconRotate 8s linear infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 40px rgba(141, 82, 218, 0.8),
            0 0 80px rgba(141, 82, 218, 0.4),
            inset 0 0 20px rgba(141, 82, 218, 0.1);
        border-color: rgba(141, 82, 218, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 60px rgba(141, 82, 218, 1),
            0 0 120px rgba(141, 82, 218, 0.6),
            inset 0 0 30px rgba(141, 82, 218, 0.2);
        border-color: rgba(141, 82, 218, 0.9);
    }
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.bonus-notification__icon svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    stroke-width: 2.5;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.bonus-notification.show.shrunk .bonus-notification__icon svg {
    width: 42px;
    height: 42px;
}

.bonus-notification__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 12px;
    text-shadow: 
        0 0 20px rgba(212, 255, 0, 0.8),
        0 0 40px rgba(212, 255, 0, 0.4);
    animation: titleGlow 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.bonus-notification.show.shrunk .bonus-notification__title {
    font-size: 20px;
    margin-bottom: 8px;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(212, 255, 0, 0.8),
            0 0 40px rgba(212, 255, 0, 0.4);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(212, 255, 0, 1),
            0 0 60px rgba(212, 255, 0, 0.6),
            0 0 80px rgba(212, 255, 0, 0.3);
    }
}

.bonus-notification__text {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.bonus-notification.show.shrunk .bonus-notification__text {
    font-size: 13px;
    margin-bottom: 4px;
}

.bonus-notification__text strong {
    color: var(--yellow);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 255, 0, 0.5);
}

.bonus-notification__subtext {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.bonus-notification.show.shrunk .bonus-notification__subtext {
    font-size: 11px;
    margin-bottom: 16px;
}

.bonus-notification__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--bg-dark);
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 24px rgba(212, 255, 0, 0.4),
        0 0 40px rgba(212, 255, 0, 0.2);
    position: relative;
    z-index: 1;
    animation: btnPulse 2s ease-in-out infinite;
    pointer-events: auto;
    flex-shrink: 0;
    min-width: 180px;
    min-height: 50px;
}

.bonus-notification.show.shrunk .bonus-notification__btn {
    padding: 12px 24px;
    font-size: 15px;
    min-width: 150px;
    min-height: 44px;
    gap: 8px;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 
            0 8px 24px rgba(212, 255, 0, 0.4),
            0 0 40px rgba(212, 255, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 12px 32px rgba(212, 255, 0, 0.6),
            0 0 60px rgba(212, 255, 0, 0.4);
    }
}

.bonus-notification__btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 16px 40px rgba(212, 255, 0, 0.6),
        0 0 80px rgba(212, 255, 0, 0.4);
    background: linear-gradient(135deg, var(--yellow-dark) 0%, var(--yellow) 100%);
}

.bonus-notification__btn:active {
    transform: translateY(-1px) scale(1.02);
}

.bonus-notification__btn svg {
    transition: transform 0.3s ease;
}

.bonus-notification__btn:hover svg {
    transform: translateX(6px);
}

/* Mobile styles for bonus notification */
@media (max-width: 900px) {
    .bonus-notification__content {
        width: 340px;
        height: 280px;
        padding: 40px 30px;
        border-radius: 24px;
    }
    
    .bonus-notification.show.shrunk .bonus-notification__content {
        width: 306px;
        height: 252px;
        border-radius: 26px;
    }

    .bonus-notification__icon {
        width: 110px;
        height: 110px;
        margin-bottom: 16px;
    }

    .bonus-notification__icon svg {
        width: 50px;
        height: 50px;
    }

    .bonus-notification__title {
        font-size: 22px;
    }

    .bonus-notification__text {
        font-size: 14px;
    }

    .bonus-notification__subtext {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .bonus-notification__btn {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Desktop Scale Fix */
@media (min-width: 1920px) {
    html {
        font-size: 14px;
    }
}

/* Mobile Styles */
@media (max-width: 900px) {
    html {
        font-size: 16px;
    }
    
    body {
        font-size: 16px;
    }
    
    .sidebar {
        display: none;
    }

    .content {
        margin-left: 0;
        max-width: 100vw;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    /* Topbar Mobile */
    .topbar {
        padding: 12px 16px;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        background: rgba(10, 10, 15, 0.95);
        border-bottom: 1px solid var(--border);
        width: 100%;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .topbar__left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-logo {
        display: block;
        width: 80px;
        height: auto;
        flex-shrink: 0;
    }

    .search-btn {
        display: none;
    }

    .topbar__right {
        display: flex;
        gap: 8px;
    }

    .btn {
        padding: 8px 14px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .btn--connect {
        padding: 8px 12px;
        font-size: 12px;
    }

    .btn--signup {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Mobile Tabs */
    .mobile-tabs {
        display: flex;
        padding: 0 16px;
        gap: 0;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border);
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-tabs::-webkit-scrollbar {
        display: none;
    }

    .mobile-tab {
        padding: 12px 16px;
        font-size: 13px;
        font-weight: 500;
        color: var(--text-secondary);
        background: transparent;
        border: none;
        border-bottom: 2px solid transparent;
        white-space: nowrap;
        transition: all 0.2s ease;
        position: relative;
        flex-shrink: 0;
    }

    .mobile-tab:hover {
        color: var(--text-primary);
    }

    .mobile-tab.active {
        color: var(--purple);
        border-bottom-color: var(--purple);
    }

    /* Main Mobile */
    .main {
        padding: 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        flex: 1;
    }

    /* Promos Mobile */
    .promos {
        display: flex;
        flex-direction: row;
        gap: 0;
        margin-bottom: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .promos::-webkit-scrollbar {
        display: none;
    }

    .promo-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        border-radius: 0;
        aspect-ratio: 16 / 9;
        min-height: 200px;
        margin-bottom: 0;
    }

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

    .promo-content {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 0;
    }

    .promo-btn {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 20px;
    }

    /* Category Pills Mobile */
    .cats {
        display: flex;
        gap: 8px;
        margin: 16px;
        margin-bottom: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .cats::-webkit-scrollbar {
        display: none;
    }

    .cat-pill {
        flex: 0 0 auto;
        padding: 10px 18px;
        font-size: 13px;
        white-space: nowrap;
        scroll-snap-align: start;
    }

    .cat-pill svg {
        width: 14px;
        height: 14px;
    }

    /* Filters Mobile */
    .filters {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin: 0 16px 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .filters::-webkit-scrollbar {
        display: none;
    }

    .search-input {
        flex: 1;
        min-width: 200px;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 20px;
    }

    .filter-btn {
        flex: 0 0 auto;
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    .filter-pill {
        flex: 0 0 auto;
        padding: 10px 14px;
        font-size: 12px;
        white-space: nowrap;
    }

    /* Strip Sections Mobile */
    .strip {
        margin-bottom: 32px;
    }

    .strip-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 16px 16px;
    }

    .strip-header h2 {
        font-size: 20px;
        font-weight: 700;
    }

    .strip-controls {
        display: none;
    }

    .strip-container {
        display: flex;
        gap: 12px;
        padding: 0 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .strip-container::-webkit-scrollbar {
        display: none;
    }

    .game-card {
        flex: 0 0 160px;
        scroll-snap-align: start;
    }

    .game-card__image {
        border-radius: 12px;
        margin-bottom: 8px;
    }

    .game-card__info h3 {
        font-size: 13px;
    }

    .game-card__info p {
        font-size: 11px;
    }

    .game-badge {
        font-size: 10px;
        padding: 4px 8px;
        top: 6px;
        left: 6px;
    }

    /* Studios Mobile */
    .studios {
        display: block;
        margin: 0 16px 32px;
    }

    .studios h2 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .studios-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .studios-grid::-webkit-scrollbar {
        display: none;
    }

    .studio-card {
        flex: 0 0 110px;
        padding: 14px 12px;
        font-size: 11px;
        text-align: center;
        white-space: nowrap;
        scroll-snap-align: start;
    }

    /* Populaire Mobile */
    .populaire {
        display: block;
        margin: 0 16px 32px;
    }

    .populaire h2 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .populaire-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .populaire-grid::-webkit-scrollbar {
        display: none;
    }

    .populaire-grid .game-card {
        flex: 0 0 180px;
    }

    /* Featured Mobile */
    .featured {
        display: block;
        margin: 0 16px 32px;
    }

    .featured h2 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .featured-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .featured-grid::-webkit-scrollbar {
        display: none;
    }

    .featured-grid .game-card {
        flex: 0 0 180px;
    }

    .game-seats {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 8px;
        font-size: 11px;
        color: var(--text-secondary);
    }

    .seats-icons {
        display: flex;
        gap: 4px;
    }

    .seats-icons span {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--yellow);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
    }

    .game-numbers {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 8px;
        letter-spacing: 2px;
    }

    /* Live Feed Mobile */
    .livefeed {
        margin: 0 16px 32px;
    }

    .livefeed-header {
        margin-bottom: 16px;
    }

    .livefeed-header h2 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .livefeed-tabs {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .livefeed-tabs::-webkit-scrollbar {
        display: none;
    }

    .livefeed-tab {
        flex: 0 0 auto;
        padding: 10px 18px;
        font-size: 13px;
        white-space: nowrap;
    }

    .livefeed-content {
        padding: 16px;
        border-radius: 16px;
    }

    .livefeed-table {
        gap: 0;
    }

    .livefeed-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(141, 82, 218, 0.1);
    }

    .livefeed-row:last-child {
        border-bottom: none;
    }

    .livefeed-row--header {
        display: none;
    }

    .livefeed-cell {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px 0;
        font-size: 13px;
    }

    .livefeed-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        font-size: 11px;
        text-transform: uppercase;
        margin-right: 12px;
    }

    .livefeed-more {
        margin-top: 16px;
        padding: 14px;
        font-size: 14px;
        border-radius: 16px;
    }

    /* TOP 5 Mobile */
    .tops {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0 16px 32px;
    }

    .top-card {
        padding: 16px;
        border-radius: 16px;
    }

    .top-card__header {
        margin-bottom: 16px;
        gap: 8px;
    }

    .top-card__header h2 {
        font-size: 18px;
    }

    .top-card__header svg {
        width: 20px;
        height: 20px;
    }

    .info-btn {
        width: 20px;
        height: 20px;
    }

    .top-card__image {
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .top-card__image span {
        font-size: 11px;
        padding: 5px 10px;
        bottom: 8px;
        left: 8px;
    }

    .top-card__list {
        gap: 10px;
    }

    .top-item {
        padding: 10px;
        border-radius: 12px;
        gap: 10px;
    }

    .top-item img {
        width: 50px;
        height: 65px;
        border-radius: 8px;
    }

    .top-item__info h4 {
        font-size: 13px;
    }

    .top-item__info p {
        font-size: 11px;
    }

    .top-item__percent {
        font-size: 16px;
        padding: 6px 12px;
    }

    /* Themes Mobile */
    .themes {
        gap: 12px;
        margin: 0 16px 32px;
    }

    .theme-card {
        padding: 20px;
        border-radius: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .theme-card__content h2 {
        font-size: 28px;
    }

    .theme-card__content p {
        font-size: 13px;
    }

    .theme-card__preview {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .theme-card__preview::-webkit-scrollbar {
        display: none;
    }

    .theme-thumb {
        flex: 0 0 50px;
        width: 50px;
        height: 65px;
        border-radius: 8px;
    }

    /* Footer Mobile */
    .footer {
        padding: 32px 16px 24px;
    }

    .footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 24px;
    }

    .footer__brand img {
        width: 100px;
    }

    .footer__lang {
        margin-left: 0;
        width: 100%;
    }

    .lang-btn {
        width: 100%;
        justify-content: space-between;
    }

    .footer__social {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .age-badge {
        padding: 6px 10px;
        font-size: 11px;
    }

    .footer__sponsors {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .footer__sponsors p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .sponsors-logos {
        flex-direction: column;
        gap: 10px;
    }

    .sponsors-logos span {
        padding: 8px 14px;
        font-size: 11px;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-column h3 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-column ul {
        gap: 10px;
    }

    .footer-column a {
        font-size: 12px;
    }

    /* SEO Section Mobile */
    .seo-section {
        margin: 32px 16px;
        padding: 24px 16px;
    }

    .seo-section h1 {
        font-size: 24px;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }

    .seo-section h2 {
        font-size: 20px;
        margin-top: 32px;
        margin-bottom: 12px;
    }

    .seo-section h3 {
        font-size: 18px;
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .seo-section p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .seo-table-wrapper {
        margin: 32px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .seo-table {
        min-width: 100%;
        font-size: 10px;
        width: 100%;
    }

    .seo-table th {
        padding: 8px 6px;
        font-size: 9px;
        font-weight: 600;
    }

    .seo-table td {
        padding: 8px 6px;
        font-size: 9px;
        line-height: 1.4;
    }

    .seo-faq {
        margin-top: 32px;
        padding-top: 24px;
    }

    .seo-faq h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-question h3 {
        font-size: 15px;
        padding-right: 12px;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
    }

    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

/* Accessibility */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 2px;
}

/* Performance optimizations */
.strip-container,
.cats {
    will-change: scroll-position;
}

.game-card__image img {
    will-change: transform;
}

/* Loading states */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
