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

:root {
    --bg: #0c0d10;
    --bg-elevated: #111318;
    --card: #15181f;
    --card-hover: #1a1e28;
    --text: #ffffff;
    --text-muted: #8a8f9e;
    --muted: #6b7080;
    --accent: #e8a33d;
    --accent-light: #f0b85c;
    --accent-dark: #c9862a;
    --gradient-accent: linear-gradient(135deg, #e8a33d 0%, #f0b85c 50%, #c9862a 100%);
    --gradient-hero-stroke: linear-gradient(90deg, #c0392b, #e8a33d, #f1c40f);
    --border: rgba(232, 163, 61, 0.2);
    --border-active: rgba(232, 163, 61, 0.5);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 24px rgba(232, 163, 61, 0.2);
}

@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);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 14px;
}

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

button, .btn, a.btn {
    font-family: inherit;
    cursor: pointer;
}

a.btn, a.hero__cta, a.deposit__cta, a.livefeed-more {
    text-decoration: none;
}

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

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

/* Sidebar (desktop) */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
    border-right: 1px solid var(--border);
    padding: 24px 16px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

@media (min-width: 901px) {
    .sidebar {
        display: block;
        padding-top: 80px;
    }
}

.sidebar__mode {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

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

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

.mode-btn.active {
    background: var(--gradient-accent);
    color: var(--bg);
    border-color: var(--accent);
}

.mode-btn__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

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

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

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

.nav-item.active {
    background: rgba(232, 163, 61, 0.15);
    color: var(--accent);
    border: 1px solid var(--border-active);
}

.nav-item svg:first-of-type,
.nav-item__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Content */
.content {
    flex: 1;
    margin-left: 0;
    min-height: 100vh;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (min-width: 901px) {
    .content {
        margin-left: 260px;
        max-width: calc(100vw - 260px);
    }
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: linear-gradient(180deg, rgba(12, 13, 16, 0.98) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1001;
    backdrop-filter: blur(12px);
    flex-shrink: 0;
}

@media (min-width: 901px) {
    .header {
        width: calc(100% + 260px);
        margin-left: -260px;
        padding-left: 24px;
    }
}

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

.header__logo {
    height: auto;
    object-fit: contain;
}

.header__logo--desktop {
    width: 100px;
    border-radius: 50%;
}

.header__logo--mobile {
    display: none;
    width: 68px;
}

@media (min-width: 901px) {
    .header__logo--desktop {
        width: 182px;
    }
}

@media (max-width: 900px) {
    .header__logo--desktop {
        display: none;
    }
    .header__logo--mobile {
        display: block;
        width: 52px;
    }
}

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

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

.header__search:hover {
    background: var(--card-hover);
    color: var(--accent);
    border-color: var(--border-active);
}

.header__right {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn--primary {
    background: var(--gradient-accent);
    color: var(--bg);
    border: 1px solid var(--accent);
}

.btn--primary:hover {
    filter: brightness(1.1);
    box-shadow: var(--shadow-glow);
}

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

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

/* Main + bottom nav spacing */
.main {
    padding: 20px 16px 100px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    flex: 1;
}

@media (min-width: 901px) {
    .main {
        padding: 28px 32px 48px;
        max-width: 1400px;
        padding-bottom: 48px;
    }
}

/* Hero */
.hero {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    min-height: 320px;
    background: var(--card);
}

@media (min-width: 901px) {
    .hero {
        min-height: 420px;
        margin-bottom: 28px;
    }
}

.hero__slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero__slide--active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero__inner {
    position: relative;
    z-index: 1;
    padding: 32px 24px 48px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

@media (min-width: 901px) {
    .hero__inner {
        padding: 48px 40px 56px;
        min-height: 420px;
    }
}

.hero__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    text-stroke: 2px var(--accent);
    margin-bottom: 12px;
    max-width: 14ch;
}

@supports (background: paint(something)) or (-webkit-background-clip: text) {
    .hero__title {
        -webkit-text-stroke: 0;
        background: var(--gradient-hero-stroke);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        paint-order: stroke fill;
        -webkit-text-stroke: 1.5px transparent;
    }
}

.hero__subtitle {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero__cta {
    margin-top: 8px;
}

.hero__dots {
    position: absolute;
    bottom: 20px;
    left: 24px;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero__dot:hover,
.hero__dot--active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Live wins strip */
.live-wins {
    margin-bottom: 20px;
    overflow: hidden;
}

.live-wins__scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: none;
}

.live-wins__scroll::-webkit-scrollbar {
    display: none;
}

.live-wins__item {
    flex: 0 0 auto;
    padding: 8px 16px;
    border-radius: var(--radius);
    background: rgba(34, 139, 34, 0.2);
    color: #7cfc7c;
    font-size: 13px;
    font-weight: 600;
}

/* Deposit — full-width section banner */
.deposit {
    margin-bottom: 32px;
}

.deposit__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.deposit__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(12, 13, 16, 0.88) 0%, rgba(12, 13, 16, 0.5) 55%, transparent 100%);
}

.deposit__content {
    position: relative;
    z-index: 1;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 420px;
}

.deposit__title {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    color: var(--text);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.deposit__methods {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.deposit__method-icon {
    height: 24px;
    width: auto;
    max-width: 56px;
    object-fit: contain;
    filter: brightness(1.05);
}

.deposit__cta {
    align-self: flex-start;
}

@media (min-width: 768px) {
    .deposit__card {
        min-height: 320px;
    }
    .deposit__content {
        padding: 36px 32px;
    }
}

/* Benefits */
.benefits {
    margin-bottom: 36px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .benefits__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.benefit-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
    position: relative;
    min-height: 280px;
    background-color: var(--card);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.benefit-card:hover {
    border-color: var(--border-active);
    box-shadow: var(--shadow-glow);
}

.benefit-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(12, 13, 16, 0.95) 0%, rgba(12, 13, 16, 0.6) 50%, transparent 100%);
}

.benefit-card__title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    color: var(--accent);
}

.benefit-card__text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .benefit-card {
        min-height: 320px;
    }
    .benefit-card__content {
        padding: 28px 24px;
    }
}

/* Strip (game carousels) */
.strip {
    margin-bottom: 32px;
}

.strip__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.strip__title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

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

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

.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(--accent) var(--card);
}

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

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

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

a.game-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

@media (min-width: 901px) {
    .game-card {
        flex: 0 0 200px;
    }
}

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

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

.game-card:hover .game-card__image {
    border-color: var(--border-active);
    box-shadow: var(--shadow-glow);
}

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

.game-card__info h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
}

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

/* Categories */
.categories {
    margin-bottom: 32px;
}

.categories__title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.categories__carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 12px;
    scrollbar-width: none;
}

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

a.category-card {
    text-decoration: none;
    color: inherit;
}

.category-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    height: 160px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    transition: all 0.2s ease;
}

.category-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.category-card__label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text);
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.categories__arrows {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.categories__arrow {
    padding: 8px 20px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.categories__arrow:hover {
    color: var(--accent);
    border-color: var(--border-active);
}

/* SEO block */
.seo-block {
    margin-bottom: 32px;
}

.seo-block__card {
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--border);
    padding: 28px 24px;
}

.seo-block__title {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    color: var(--text);
}

.seo-block__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.seo-block__link {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
}

.seo-block__link:hover {
    text-decoration: underline;
}

/* Missions */
.missions {
    margin-bottom: 32px;
}

.missions__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .missions__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.mission-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(232, 163, 61, 0.05) 100%);
    pointer-events: none;
}

.mission-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.mission-card__badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.mission-card__badge--started {
    color: var(--accent);
}

.mission-card__timer {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.mission-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.mission-card__desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Livefeed */
.livefeed {
    margin-bottom: 32px;
}

.livefeed__head {
    margin-bottom: 16px;
}

.livefeed__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

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

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

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

.livefeed-tab.active {
    background: rgba(232, 163, 61, 0.15);
    color: var(--accent);
    border-color: var(--border-active);
}

.livefeed__content {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 16px;
    border: 1px solid var(--border);
}

.livefeed-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

a.livefeed-row {
    text-decoration: none;
    color: inherit;
}

.livefeed-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

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

.livefeed-row--header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}

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

.livefeed-cell {
    font-size: 14px;
}

.livefeed-cell__game {
    display: block;
    font-weight: 600;
    color: var(--text);
}

.livefeed-cell__provider {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.livefeed-cell--right {
    text-align: right;
}

.livefeed-cell--payout {
    font-weight: 600;
    text-align: right;
}

.livefeed-cell--win {
    color: #7cfc7c;
}

.livefeed-cell--chevron {
    width: 24px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.livefeed-more {
    margin-top: 16px;
    width: 100%;
    padding: 14px;
}

/* SEO Section */
.seo-section {
    margin-top: 24px;
    padding: 28px 20px;
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

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

.seo-section h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.seo-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text);
}

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

.seo-section p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.seo-section ul {
    margin: 12px 0 16px 1.2em;
    padding-left: 0.5em;
}

.seo-section li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 6px;
}

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

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

.seo-table th,
.seo-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.seo-table thead th {
    background: rgba(232, 163, 61, 0.15);
    color: var(--accent);
    font-weight: 600;
}

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

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

.seo-table td {
    color: var(--text-muted);
}

/* Bottom Nav (mobile) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    z-index: 1000;
    padding: 8px 0;
    padding-bottom: env(safe-area-inset-bottom, 8px);
}

@media (max-width: 900px) {
    .bottom-nav {
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
}

.bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.bottom-nav__item:hover {
    color: var(--text);
}

.bottom-nav__item[aria-current="page"],
.bottom-nav__item.active {
    color: var(--accent);
}

.bottom-nav__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
}

/* Support float */
a.support-float {
    text-decoration: none;
    color: inherit;
}

.support-float {
    position: fixed;
    bottom: 88px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.support-float:hover {
    background: rgba(232, 163, 61, 0.15);
    transform: scale(1.05);
}

@media (min-width: 901px) {
    .support-float {
        bottom: 24px;
        right: 24px;
    }
}

/* Footer */
.footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 32px 20px 24px;
    margin-top: auto;
}

@media (max-width: 900px) {
    .footer {
        padding-bottom: calc(24px + 64px + env(safe-area-inset-bottom, 0));
    }
}

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

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

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

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

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

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

.social-icon:hover {
    color: var(--accent);
    border-color: var(--border-active);
}

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

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

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

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

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

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

/* Mobile livefeed rows — same 3 columns as header: Jeu/Fournisseur | Paiement | arrow */
@media (max-width: 600px) {
    .livefeed-row {
        grid-template-columns: 1fr minmax(70px, auto) 28px;
        gap: 12px;
        padding: 12px 10px;
    }

    .livefeed-row--header .livefeed-cell:nth-child(1) {
        text-align: left;
    }

    .livefeed-row--header .livefeed-cell:nth-child(2) {
        text-align: right;
    }

    .livefeed-cell--payout {
        text-align: right;
    }

    .livefeed-cell__game {
        font-size: 13px;
    }

    .livefeed-cell__provider {
        font-size: 11px;
    }

    .livefeed-cell--chevron {
        width: 20px;
    }
}

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

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

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