/* style.css — trueluck-fr.org */

:root {
    --primary: #00E785;
    --primary-dark: #00C470;
    --primary-light: #33FF99;
    --primary-glow: rgba(0, 231, 133, 0.3);
    --bg-dark: #0B0E17;
    --bg-darker: #070A12;
    --bg-card: #111827;
    --bg-card-hover: #1A2332;
    --bg-card-alt: #0F1520;
    --text-primary: #FFFFFF;
    --text-secondary: #A0AEC0;
    --text-muted: #6B7280;
    --border: #1E293B;
    --border-light: #2D3748;
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --red: #EF4444;
    --green: #10B981;
    --blue: #3B82F6;
    --purple: #8B5CF6;
    --orange: #F59E0B;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px var(--primary-glow);
    --transition: all 0.3s ease;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Montserrat', 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--primary-light);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 14, 23, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(7, 10, 18, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar {
    height: 72px;
}

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: rgba(0, 231, 133, 0.08);
}

/* CTA inside mobile menu */
.nav-menu-cta {
    display: none;
}

.nav-menu-cta .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

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

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 231, 133, 0.05);
}

.btn-xl {
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
}

.btn-xxl {
    font-size: 18px;
    padding: 18px 40px;
    border-radius: var(--radius-lg);
    font-weight: 700;
}

.btn-glow {
    box-shadow: 0 0 20px var(--primary-glow);
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 60px rgba(0,231,133,0.15); }
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #0B0E17 0%, #0D1520 30%, #0A1628 60%, #0B0E17 100%);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-effects::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,231,133,0.08) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-bg-effects::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 231, 133, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 231, 133, 0.2);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}

.stat-plus, .stat-euro, .stat-unit {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    margin-top: 4px;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--bg-dark);
}

.section-darker {
    background: var(--bg-darker);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 48px;
}

/* ===== SECTION BADGES ===== */
.section-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, rgba(0,231,133,0.15), rgba(0,231,133,0.05));
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(0,231,133,0.25);
    letter-spacing: 0.5px;
    text-align: center;
}

/* ===== TABLE CAPTIONS ===== */
.info-table caption {
    caption-side: top;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: left;
    letter-spacing: 0.3px;
    background: rgba(0,231,133,0.04);
    border-bottom: 1px solid var(--border);
}

/* ===== INFO TABLES ===== */
.info-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.info-table thead {
    background: linear-gradient(135deg, rgba(0,231,133,0.1), rgba(0,231,133,0.05));
}

.info-table th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary);
}

.info-table td {
    padding: 12px 20px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.info-table tbody tr:hover {
    background: rgba(0, 231, 133, 0.03);
}

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

.highlight-col {
    background: rgba(0, 231, 133, 0.06) !important;
    color: var(--primary) !important;
    font-weight: 600;
}

/* ===== OVERVIEW CARDS ===== */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.overview-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.overview-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.overview-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.overview-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== SCREENSHOT ===== */
.screenshot-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-frame {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.screenshot-frame:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 60px rgba(0,0,0,0.5);
}

.screenshot-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #1A1A2E;
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.screenshot-url {
    color: var(--text-muted);
    font-size: 13px;
    margin-left: 12px;
    background: rgba(255,255,255,0.05);
    padding: 4px 12px;
    border-radius: 6px;
}

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

/* ===== GAMES GRID ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

.game-category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.game-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--blue));
    opacity: 0;
    transition: var(--transition);
}

.game-category-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.game-category-card:hover::before {
    opacity: 1;
}

.game-cat-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.game-category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.game-count {
    display: inline-block;
    background: rgba(0, 231, 133, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.game-category-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.game-features {
    list-style: none;
}

.game-features li {
    color: var(--text-secondary);
    font-size: 13px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-features li i {
    color: var(--primary);
    font-size: 11px;
}

/* ===== PROVIDERS ===== */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.provider-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.provider-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.provider-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.provider-games {
    color: var(--text-muted);
    font-size: 12px;
}

/* ===== BONUS SECTION ===== */
.promo-banner {
    background: linear-gradient(135deg, #0F2027, #203A43, #2C5364);
    border: 1px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 231, 133, 0.15);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,231,133,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.banner-badge {
    display: inline-block;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-banner h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.promo-banner p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.banner-visual {
    position: relative;
    z-index: 1;
}

.bonus-amount {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
    white-space: nowrap;
}

.bonus-amount span {
    display: block;
    font-size: 24px;
    color: var(--gold);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.bonus-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.bonus-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-value {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}

.bonus-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.bonus-details {
    list-style: none;
}

.bonus-details li {
    color: var(--text-secondary);
    font-size: 13px;
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
}

.bonus-details li:last-child {
    border-bottom: none;
}

/* ===== PAYMENT CARDS ===== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.payment-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.payment-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.payment-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.payment-time {
    display: block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    background: rgba(0,231,133,0.08);
    padding: 8px;
    border-radius: 8px;
}

/* ===== FRANCE SECTION ===== */
.france-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.france-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.france-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: 0 0 30px rgba(59,130,246,0.2);
}

.france-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.france-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.france-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== SECURITY ===== */
.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.security-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.security-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple);
    box-shadow: 0 0 30px rgba(139,92,246,0.2);
}

.security-icon {
    font-size: 36px;
    color: var(--purple);
    margin-bottom: 12px;
}

.security-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.security-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== STEPS ===== */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 240px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.step-arrow {
    color: var(--primary);
    font-size: 24px;
    opacity: 0.5;
}

/* ===== MOBILE FEATURES ===== */
.mobile-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.mobile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.mobile-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.mobile-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.mobile-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mobile-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== STATS DASHBOARD ===== */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stats-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.stats-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.stats-card-big {
    grid-column: span 1;
}

.stats-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 8px;
}

.stats-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stats-label {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 8px;
}

.stats-trend {
    font-size: 12px;
    font-weight: 600;
}

.stats-trend.up { color: var(--green); }
.stats-trend.down { color: var(--red); }

.chart-section {
    margin-top: 20px;
}

.chart-section h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
}

/* ===== CALCULATOR ===== */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.calculator-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.calc-section {
    margin-bottom: 20px;
}

.calc-section label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.calc-section select,
.calc-section input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 15px;
    font-family: var(--font-main);
    transition: var(--transition);
}

.calc-section select:focus,
.calc-section input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.result-card.highlight {
    border-color: var(--primary);
    background: rgba(0, 231, 133, 0.05);
}

.result-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.result-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.calc-disclaimer {
    color: var(--text-muted);
    font-size: 12px;
    font-style: italic;
    line-height: 1.6;
    padding: 12px;
    background: rgba(245,158,11,0.05);
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
}

/* ===== REVIEWS ===== */
.reviews-summary {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.review-score {
    text-align: center;
}

.score-big {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.score-stars {
    font-size: 24px;
    color: var(--gold);
    margin: 8px 0;
}

.score-count {
    color: var(--text-muted);
    font-size: 13px;
}

.review-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.bar-item span:first-child {
    width: 80px;
    text-align: right;
}

.bar-item span:last-child {
    width: 40px;
}

.bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    border-radius: 4px;
    transition: width 1s ease;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-weight: 700;
    font-size: 15px;
}

.review-date {
    color: var(--text-muted);
    font-size: 12px;
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 8px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.reviews-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-nav button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== RESPONSIBLE ===== */
.responsible-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.responsible-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.responsible-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
}

.resp-icon {
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 12px;
}

.responsible-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.responsible-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== PROS & CONS ===== */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.pros-card, .cons-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.pros-card {
    border-top: 3px solid var(--green);
}

.cons-card {
    border-top: 3px solid var(--red);
}

.pros-card h3, .cons-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-card h3 i { color: var(--green); }
.cons-card h3 i { color: var(--red); }

.pros-card ul, .cons-card ul {
    list-style: none;
}

.pros-card li, .cons-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.pros-card li:last-child, .cons-card li:last-child {
    border-bottom: none;
}

.pros-card li i { color: var(--green); margin-top: 3px; }
.cons-card li i { color: var(--red); margin-top: 3px; }

/* ===== TOP GAMES ===== */
.top-games-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.top-game-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    transition: var(--transition);
}

.top-game-item:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.top-rank {
    font-size: 28px;
    min-width: 50px;
    text-align: center;
    font-weight: 900;
    color: var(--text-muted);
}

.top-game-info {
    flex: 1;
}

.top-game-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.top-game-info p {
    color: var(--text-muted);
    font-size: 13px;
}

.top-game-plays {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 900px;
    margin: 0 auto 40px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

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

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* ===== TERMS ===== */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.term-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.term-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

.term-card ul {
    list-style: none;
}

.term-card li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.term-card li:last-child {
    border-bottom: none;
}

/* ===== CTA FINAL ===== */
.section-cta-final {
    padding: 80px 0;
    background: linear-gradient(165deg, #0B0E17, #0A1628, #0F2027);
    position: relative;
    overflow: hidden;
}

.section-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,231,133,0.05) 0%, transparent 60%);
}

.cta-final-content {
    position: relative;
    z-index: 1;
}

.banner-final {
    text-align: center;
    display: block;
    padding: 48px;
    margin-bottom: 40px;
}

.banner-final .banner-content {
    max-width: 700px;
    margin: 0 auto;
}

.banner-register {
    text-align: center;
    display: block;
}

.banner-register .banner-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.final-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}

.final-feat i {
    color: var(--primary);
}

/* ===== FOOTER ===== */
.footer {
    background: #050810;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
    height: 36px;
    width: auto;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-col ul a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary);
}

.responsible-logos {
    display: flex;
    gap: 10px;
    margin: 12px 0;
}

.resp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
}

.help-line {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.footer-disclaimer {
    margin-top: 8px;
    font-size: 11px !important;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px var(--primary-glow);
}

/* ===== ANIMATIONS ===== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(7, 10, 18, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
}

.mobile-sticky-cta .btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
}

/* ===== TOUCH-FRIENDLY OVERRIDES ===== */
@media (hover: none) and (pointer: coarse) {
    /* Kill hover transforms on touch — they stick */
    .overview-card:hover,
    .game-category-card:hover,
    .bonus-card:hover,
    .payment-card:hover,
    .france-card:hover,
    .security-card:hover,
    .step-card:hover,
    .mobile-card:hover,
    .stats-card:hover,
    .responsible-card:hover,
    .provider-card:hover,
    .review-card:hover,
    .top-game-item:hover,
    .term-card:hover {
        transform: none;
        box-shadow: none;
    }

    /* Active state instead of hover for touch feedback */
    .overview-card:active,
    .game-category-card:active,
    .bonus-card:active,
    .payment-card:active,
    .france-card:active,
    .security-card:active,
    .stats-card:active,
    .provider-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Bigger tap targets */
    .faq-question {
        min-height: 56px;
    }

    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .reviews-nav button {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .back-to-top {
        width: 52px;
        height: 52px;
        bottom: 80px;
        right: 16px;
    }

    .back-to-top:hover {
        transform: none;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .btn-glow {
        animation: none;
        box-shadow: 0 0 12px var(--primary-glow);
    }

    .hero-bg-effects::before,
    .hero-bg-effects::after {
        animation: none;
    }
}

/* ===== RESPONSIVE — TABLET (1024px) ===== */
@media (max-width: 1024px) {
    .overview-grid,
    .security-grid,
    .mobile-features,
    .responsible-grid,
    .terms-grid,
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-banner {
        gap: 24px;
        padding: 36px;
    }

    .bonus-amount {
        font-size: 52px;
    }
}

/* ===== RESPONSIVE — MOBILE (768px) ===== */
@media (max-width: 768px) {
    /* Nav */
    .nav-menu {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 16px;
        gap: 2px;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: var(--radius);
        min-height: 52px;
        display: flex;
        align-items: center;
    }
    
    .burger {
        display: flex;
    }
    
    .nav-actions .btn-primary {
        display: none;
    }

    .nav-menu-cta {
        display: block;
    }

    /* Mobile sticky CTA visible */
    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 68px;
    }

    /* Hero */
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .hero-content h1 {
        font-size: 26px;
        line-height: 1.25;
    }
    
    .hero-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }

    .stat-item {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-plus, .stat-euro, .stat-unit {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Sections */
    .section {
        padding: 48px 0;
    }
    
    .section-title {
        font-size: 22px;
        line-height: 1.3;
        padding: 0 4px;
    }
    
    .section-intro {
        font-size: 14px;
        margin-bottom: 28px;
        padding: 0 4px;
        line-height: 1.7;
    }

    /* All grids to 1 column */
    .overview-grid,
    .security-grid,
    .mobile-features,
    .responsible-grid,
    .terms-grid,
    .bonus-grid,
    .payment-grid,
    .france-grid,
    .games-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .score-big {
        font-size: 56px;
    }
    
    .reviews-slider {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stats-dashboard {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stats-value {
        font-size: 26px;
    }

    /* Cards — reduce padding on mobile */
    .overview-card,
    .game-category-card,
    .bonus-card,
    .payment-card,
    .france-card,
    .security-card,
    .responsible-card,
    .mobile-card,
    .step-card,
    .term-card {
        padding: 20px 16px;
    }

    .calculator-card {
        padding: 20px 16px;
    }

    .review-card {
        padding: 18px 16px;
    }

    /* Promo banners */
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
        gap: 20px;
        border-radius: var(--radius-lg);
    }
    
    .promo-banner h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .promo-banner p {
        font-size: 14px;
    }
    
    .bonus-amount {
        font-size: 44px;
    }

    .bonus-amount span {
        font-size: 18px;
    }

    .banner-final {
        padding: 28px 20px;
    }

    .banner-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    /* Steps */
    .steps-grid {
        flex-direction: column;
        gap: 8px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        font-size: 18px;
    }

    .step-number {
        font-size: 36px;
    }

    /* Tables */
    .info-table-wrapper {
        margin-top: 24px;
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .info-table th {
        padding: 10px 12px;
        font-size: 11px;
        white-space: nowrap;
    }

    .info-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    /* Calculator results */
    .result-card {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
        padding: 14px 16px;
    }

    .result-value {
        font-size: 22px;
    }

    .result-label {
        font-size: 12px;
    }

    /* Top games */
    .top-game-item {
        padding: 12px 14px;
        gap: 10px;
    }

    .top-rank {
        font-size: 22px;
        min-width: 36px;
    }

    .top-game-info h3 {
        font-size: 14px;
    }

    .top-game-info p {
        font-size: 11px;
        line-height: 1.5;
    }

    .top-game-plays {
        font-size: 12px;
    }

    /* FAQ */
    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
        gap: 8px;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 13px;
        line-height: 1.7;
    }

    /* Comparison table */
    .comparison-table {
        font-size: 11px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 8px;
    }

    /* Chart */
    .chart-container {
        height: 280px !important;
        padding: 12px 8px;
    }

    .chart-section h3 {
        font-size: 16px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer {
        padding: 40px 0 90px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    /* Final features */
    .final-features {
        gap: 8px;
    }

    .final-feat {
        font-size: 12px;
        padding: 8px 14px;
    }

    /* Screenshot */
    .screenshot-frame {
        border-radius: var(--radius);
    }

    .screenshot-topbar {
        padding: 8px 12px;
    }

    .screenshot-url {
        font-size: 11px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* Back to top — above sticky CTA */
    .back-to-top {
        bottom: 78px;
        right: 16px;
    }

    /* Pros/Cons */
    .pros-card h3, .cons-card h3 {
        font-size: 17px;
    }

    .pros-card li, .cons-card li {
        font-size: 13px;
    }

    /* Provider cards */
    .provider-card {
        padding: 14px 10px;
    }

    .provider-name {
        font-size: 12px;
    }

    .provider-games {
        font-size: 10px;
    }

    /* Bonus details */
    .bonus-details li {
        font-size: 12px;
    }

    /* Game category */
    .game-count {
        font-size: 11px;
    }
}

/* ===== RESPONSIVE — SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .stat-item {
        padding: 12px 8px;
    }

    .stat-label {
        font-size: 10px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 20px;
    }

    .section-intro {
        font-size: 13px;
        margin-bottom: 24px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .promo-banner {
        padding: 20px 14px;
    }

    .promo-banner h3 {
        font-size: 18px;
    }

    .bonus-amount {
        font-size: 36px;
    }

    .bonus-amount span {
        font-size: 16px;
    }

    .btn-xl {
        font-size: 14px;
        padding: 12px 24px;
    }

    .btn-xxl {
        font-size: 15px;
        padding: 14px 28px;
    }

    /* Table edge-to-edge */
    .info-table-wrapper {
        margin-left: -12px;
        margin-right: -12px;
    }

    .info-table th {
        padding: 8px 10px;
        font-size: 10px;
    }

    .info-table td {
        padding: 8px 10px;
        font-size: 12px;
    }

    .score-big {
        font-size: 48px;
    }

    .bar-item span:first-child {
        width: 64px;
        font-size: 11px;
    }

    .bar-item span:last-child {
        width: 32px;
        font-size: 11px;
    }

    .chart-container {
        height: 240px !important;
    }

    /* Calc inputs */
    .calc-section select,
    .calc-section input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .calc-section label {
        font-size: 12px;
    }

    .result-value {
        font-size: 20px;
    }

    /* Top game compact */
    .top-game-plays {
        font-size: 11px;
    }

    .top-rank {
        font-size: 20px;
        min-width: 30px;
    }

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

    .top-game-info p {
        font-size: 10px;
    }

    .footer {
        padding: 32px 0 86px;
    }
}

/* ===== RESPONSIVE — VERY SMALL (360px) ===== */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .section-title {
        font-size: 18px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-plus, .stat-euro, .stat-unit {
        font-size: 16px;
    }

    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .provider-card {
        padding: 10px 6px;
    }

    .provider-name {
        font-size: 11px;
    }

    .bonus-amount {
        font-size: 30px;
    }

    .promo-banner h3 {
        font-size: 16px;
    }

    .faq-question {
        font-size: 13px;
        padding: 12px 14px;
    }

    .info-table-wrapper {
        margin-left: -10px;
        margin-right: -10px;
    }

    .result-value {
        font-size: 18px;
    }
}

/* ===== LANDSCAPE PHONE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .mobile-sticky-cta {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--primary);
    color: #000;
}

/* ===== AUTHOR E-E-A-T BLOCK ===== */
.author-block {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.author-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-role {
    font-size: 13px;
    color: var(--text-muted);
}

.author-updated {
    font-size: 13px;
    color: var(--text-secondary);
}

.author-updated i {
    color: var(--primary);
    margin-right: 6px;
}

@media (max-width: 600px) {
    .author-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== SAFE AREA (notch devices) ===== */
@supports (padding: env(safe-area-inset-bottom)) {
    .mobile-sticky-cta {
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }

    .footer {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
}
