/* =====================================================
   GRANSINO.BIZ — Main Stylesheet
   Casino Affiliate Site for France
   Official Gransino Color Palette: Black + Orange-Gold
   ===================================================== */

/* --- CSS Variables — Gransino Official Palette --- */
:root {
    /* Primary Colors — Pure Black Base (matching gransino.com) */
    --color-bg: #050505;
    --color-bg-alt: #0d0d0d;
    --color-bg-card: #141414;
    --color-bg-card-hover: #1c1c1c;
    --color-surface: #111111;

    /* Accent — Gransino Orange-Gold */
    --color-primary: #f08a1a;
    --color-primary-hover: #ffb24a;
    --color-primary-glow: rgba(240, 138, 26, 0.35);
    --color-secondary: #c58a3a;
    --color-secondary-glow: rgba(197, 138, 58, 0.2);

    /* Text */
    --color-text: #e8e8e8;
    --color-text-muted: #8a8a8a;
    --color-text-heading: #f2f2f2;

    /* Status */
    --color-success: #22c55e;
    --color-danger: #ef4444;
    --color-warning: #f59e0b;

    /* Borders — Subtle dark borders like official site */
    --color-border: rgba(255,255,255,0.06);
    --color-border-hover: rgba(240, 138, 26, 0.4);

    /* Gradients — Gransino style warm orange-gold */
    --gradient-primary: linear-gradient(135deg, #e07a10 0%, #ffb24a 45%, #f08a1a 100%);
    --gradient-hero: linear-gradient(160deg, #050505 0%, #0d0d0d 40%, #1a1008 100%);
    --gradient-card: linear-gradient(145deg, #141414 0%, #0f0f0f 100%);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Shadows — Deeper for pure black base */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 30px var(--color-primary-glow);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Fonts */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --header-height: 64px;
    --container-max: 1200px;
}

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

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

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

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

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

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

/* --- 18+ Age Banner --- */
.age-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #1a1008 0%, #050505 100%);
    border-top: 2px solid var(--color-primary);
    padding: 16px 20px;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.7);
    transform: translateY(0);
    transition: transform 0.5s ease;
}
.age-banner.hidden { transform: translateY(110%); }
.age-banner-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.age-badge {
    background: var(--color-danger);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.age-banner-content p {
    flex: 1;
    font-size: 13px;
    color: var(--color-text-muted);
    min-width: 200px;
}
.btn-age-accept {
    background: var(--gradient-primary);
    color: #0a0e17;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.btn-age-accept:hover { transform: scale(1.05); box-shadow: var(--shadow-glow); }

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(5, 5, 5, 0.92);

    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}
.site-header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}
.footer-logo .logo-img {
    height: 40px;
}
.logo-accent { color: var(--color-primary); }

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
    background: rgba(240, 138, 26, 0.08);
}
.nav-link i { font-size: 12px; }

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

/* CTA Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-full);
    padding: 10px 24px;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-cta-primary {
    background: var(--gradient-primary);
    color: #0a0e17;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}
.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--color-primary-glow);
    color: #0a0e17;
}
.btn-cta-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}
.btn-cta-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(245, 166, 35, 0.05);
}
.btn-cta-header {
    padding: 8px 20px;
    font-size: 13px;
}
.btn-full { width: 100%; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    overflow: hidden;
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 138, 26, 0.1);
    border: 1px solid rgba(240, 138, 26, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;

}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text-heading);
    margin-bottom: 20px;
}
.hero-highlight {
    background: linear-gradient(135deg, #e07a10 0%, #ffb24a 50%, #f08a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 17px;
    color: var(--color-text-muted);
    max-width: 540px;
    margin-bottom: 30px;
    line-height: 1.8;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
}
.hero-stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 2px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Card */
.hero-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-card-logo {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}
.hero-logo-img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;

}
.hero-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-text-heading);
    margin-bottom: 12px;
}
.hero-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}
.hero-card-rating i { color: var(--color-primary); font-size: 16px; }
.hero-card-rating span {
    margin-left: 8px;
    font-weight: 700;
    color: var(--color-text-heading);
}
.hero-card-bonus {
    background: rgba(240, 138, 26, 0.1);
    border: 1px solid rgba(240, 138, 26, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}
.bonus-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.bonus-value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
}
.bonus-extra {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-hover);
    margin-top: 2px;
    letter-spacing: 0.3px;
}
.btn-card-cta {
    background: var(--gradient-primary);
    color: #0a0e17;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: all var(--transition-base);
    text-decoration: none;
}
.btn-card-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); color: #0a0e17; }

/* --- Trust Section --- */
.trust-section {
    background: var(--color-bg-alt);
    padding: 50px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}
.trust-item:hover { background: rgba(240, 138, 26, 0.04); }
.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(240, 138, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--color-primary);
}
.trust-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 6px;
}
.trust-item p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- Section Common --- */
.section-review,
.section-games,
.section-bonus,
.section-payments,
.section-howto,
.section-faq,
.section-responsible {
    padding: 80px 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}
.section-games { background: var(--color-bg-alt); }
.section-bonus { background: var(--color-bg); }
.section-payments { background: var(--color-bg-alt); }
.section-howto { background: var(--color-bg); }
.section-faq { background: var(--color-bg-alt); }
.section-responsible {
    background: linear-gradient(135deg, #1a0a0a 0%, #050505 100%);
    border-top: 1px solid rgba(239, 68, 68, 0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 12px;
}
.title-year, .title-accent { color: var(--color-primary); }
.section-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Review Section --- */
.review-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    align-items: start;
}

/* Score Card */
.review-score-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}
.score-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    position: relative;
}
.score-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring-bg { fill: none; stroke: var(--color-border); stroke-width: 8; }
.score-ring-fill {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1.5s ease;
}
.score-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
}
.score-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-heading);
}
.score-max {
    font-size: 16px;
    color: var(--color-text-muted);
    font-weight: 400;
}
.score-label { font-size: 14px; color: var(--color-text-muted); margin-bottom: 4px; }
.score-verdict {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-success);
    margin-bottom: 24px;
}
.score-breakdown { margin-bottom: 24px; }
.score-item {
    display: grid;
    grid-template-columns: 80px 1fr 36px;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.score-item-label {
    font-size: 13px;
    color: var(--color-text-muted);
    text-align: left;
}
.score-bar {
    height: 6px;
    background: var(--color-border);
    border-radius: 3px;
    overflow: hidden;
}
.score-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0;
    transition: width 1.2s ease;
}
.score-item-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Review Details */
.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}
.pros-card, .cons-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
}
.pros-card h3, .cons-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pros-card h3 { color: var(--color-success); }
.cons-card h3 { color: var(--color-danger); }
.pros-card li, .cons-card li {
    font-size: 14px;
    color: var(--color-text);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}
.pros-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}
.cons-card li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--color-danger);
    font-weight: 700;
}

/* Quick Info Table */
.quick-info-table {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
}
.quick-info-table h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.quick-info-table td {
    padding: 10px 12px;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border);
}
.quick-info-table tr:last-child td { border-bottom: none; }
.quick-info-table td:first-child {
    color: var(--color-text-muted);
    font-weight: 500;
    width: 45%;
}
.quick-info-table td:last-child {
    color: var(--color-text-heading);
    font-weight: 600;
}

/* --- Games Section --- */



.games-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.game-category-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition-base);
    cursor: default;
}
.game-category-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.game-cat-icon { font-size: 42px; margin-bottom: 14px; }
.game-category-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 8px;
}
.game-category-card p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}
.game-count {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(240, 138, 26, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* Providers */
.providers-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}
.providers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.provider-badge {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}
.provider-badge:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* --- Bonus Section --- */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bonus-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}
.bonus-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.bonus-welcome { border-color: rgba(240, 138, 26, 0.3); }
.bonus-card-ribbon {
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--color-primary);
    color: #0a0e17;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 36px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bonus-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.bonus-card-header i {
    font-size: 24px;
    color: var(--color-primary);
}
.bonus-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-heading);
}
.bonus-card-value {
    margin-bottom: 14px;
}
.bonus-highlight {
    font-size: 26px;
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-heading);
}
.bonus-card-value span {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-heading);
}
.bonus-card-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}
.bonus-features {
    margin-bottom: 20px;
    flex-grow: 1;
}
.bonus-features li {
    font-size: 13px;
    color: var(--color-text);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bonus-features i { color: var(--color-success); font-size: 12px; }

/* --- Payments Section --- */
.payments-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.payment-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    transition: all var(--transition-base);
}
.payment-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-3px);
}
.payment-icon {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-icon svg {
    width: 60px;
    height: 38px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.payment-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* --- How To Section --- */
.howto-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}
.howto-step {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    position: relative;
    transition: all var(--transition-base);
}
.howto-step:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}
.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #0a0e17;
}
.step-icon {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 14px;
}
.howto-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 8px;
}
.howto-step p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.howto-connector {
    color: var(--color-primary);
    font-size: 20px;
    opacity: 0.5;
}
.howto-cta { text-align: center; }

/* --- FAQ Section --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--gradient-card);
    transition: all var(--transition-base);
}
.faq-item:hover { border-color: var(--color-border-hover); }
.faq-question {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-heading);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    transition: all var(--transition-fast);
}
.faq-question:hover { color: var(--color-primary); }
.faq-question i {
    color: var(--color-primary);
    font-size: 14px;
    transition: transform var(--transition-base);
    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 var(--transition-base), padding var(--transition-base);
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 18px;
}
.faq-answer p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.8;
}
.faq-answer a { color: var(--color-primary); text-decoration: underline; }

/* --- Responsible Gaming --- */
.responsible-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.responsible-icon {
    font-size: 48px;
    color: var(--color-danger);
    margin-bottom: 16px;
}
.responsible-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-text-heading);
    margin-bottom: 14px;
}
.responsible-content p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
.responsible-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.badge-18 {
    background: var(--color-danger);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}
.responsible-link {
    font-size: 14px;
    color: var(--color-text-muted);
}
.responsible-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.responsible-links a {
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: underline;
}

/* --- Footer --- */
.site-footer {
    background: #020202;
    border-top: 1px solid var(--color-border);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 14px 0;
    line-height: 1.7;
}
.footer-logo { margin-bottom: 8px; }
.footer-badges {
    display: flex;
    gap: 10px;
}
.badge-ssl {
    background: var(--color-success);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 4px;
}
.footer-links-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 16px;
}
.footer-links-col li { margin-bottom: 8px; }
.footer-links-col a {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}
.footer-links-col a:hover { color: var(--color-primary); }

.footer-disclaimer {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    margin-bottom: 20px;
}
.footer-disclaimer p {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.8;
    opacity: 0.7;
}
.footer-bottom {
    text-align: center;
}
.footer-bottom p {
    font-size: 12px;
    color: var(--color-text-muted);
    opacity: 0.5;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: #0a0e17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-3px); }

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: flex; justify-content: center; }
    .hero-card { max-width: 380px; }
    .review-grid { grid-template-columns: 1fr; }
    .review-score-card { position: static; }
    .games-categories { grid-template-columns: repeat(2, 1fr); }
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);

        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        z-index: 999;
    }
    .nav-links.active { opacity: 1; visibility: visible; }
    .nav-link { font-size: 18px; padding: 14px 24px; }
    .btn-cta-header { display: none; }

    .hero { min-height: auto; padding-top: calc(var(--header-height) + 30px); padding-bottom: 50px; }
    .hero-visual { display: flex; justify-content: center; }
    .hero-stats { gap: 20px; }
    .hero-stat-value { font-size: 22px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-cta { width: 100%; justify-content: center; }

    .trust-grid { grid-template-columns: 1fr 1fr; }
    .review-pros-cons { grid-template-columns: 1fr; }
    .games-categories { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr; }
    .payments-grid { grid-template-columns: repeat(3, 1fr); }
    .howto-steps { flex-direction: column; }
    .howto-connector { transform: rotate(90deg); }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 30px; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .section-review, .section-games, .section-bonus, .section-payments, .section-howto, .section-faq, .section-responsible {
        padding: 50px 0;
    }
    .trust-grid { grid-template-columns: 1fr; }
    .payments-grid { grid-template-columns: repeat(2, 1fr); }
    .age-banner-content { flex-direction: column; text-align: center; }
}

/* --- Lightweight Promo Banner (replaces heavy image banners) --- */
.promo-banner-lite {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin: 24px 0;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
    text-decoration: none;
}
.promo-banner-lite:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}
.promo-banner-icon { font-size: 28px; flex-shrink: 0; }
.promo-banner-text {
    flex: 1;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}
.promo-banner-text strong { color: var(--color-text-heading); }
.promo-banner-arrow {
    font-size: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    font-weight: 700;
}

/* End of file */
