/* GladiatorsBet.nl — Shared Stylesheet */
:root {
    --bg-dark: #121519;
    --bg-darker: #0d0f12;
    --bg-card: #1f2329;
    --text-main: #e1e8ed;
    --text-muted: #abb8c3;
    --accent-gold: #f2c94c;
    --accent-gold-hover: #d4af37;
    --accent-red: #cf2e2e;
    --border-color: #3A4F66;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a { color: var(--accent-gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: #fff; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.main-container { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.text-center { text-align: center; }

/* ── Header ── */
.header {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo a { display: flex; align-items: center; }
.logo-img { max-height: 40px; width: auto; }

.header-link {
    position: absolute; left: 50%; transform: translateX(-50%);
    color: var(--text-main); font-weight: 600; text-transform: uppercase;
    font-size: 16px; letter-spacing: 0.5px; transition: color 0.3s;
}
.header-link:hover { color: var(--accent-gold); }
.header-actions { display: flex; align-items: center; }

.burger-menu { display: none; background: none; border: none; cursor: pointer; padding: 5px; z-index: 101; }
.burger-menu span { display: block; width: 25px; height: 3px; background-color: var(--accent-gold); margin: 5px 0; transition: all 0.3s ease; border-radius: 2px; }

/* ── Buttons ── */
.btn { display: inline-block; padding: 10px 20px; border-radius: 5px; font-weight: bold; text-align: center; cursor: pointer; transition: all 0.3s ease; border: none; text-transform: uppercase; }
.btn-primary { background-color: var(--accent-gold); color: #000; }
.btn-primary:hover { background-color: var(--accent-gold-hover); color: #000; transform: translateY(-2px); }
.btn-secondary { background-color: transparent; color: #fff; border: 1px solid var(--border-color); margin-left: 10px; }
.btn-secondary:hover { background-color: var(--border-color); }
.btn-large { padding: 15px 35px; font-size: 18px; margin-top: 20px; }
.btn-block { display: block; width: 100%; }

/* ── Content ── */
.content-section { margin-bottom: 60px; }
.content-section h2 { font-size: 30px; color: #fff; margin-bottom: 20px; border-left: 4px solid var(--accent-gold); padding-left: 15px; }
.content-section h3 { font-size: 22px; color: #fff; margin: 30px 0 15px 0; }
.content-section p { margin-bottom: 18px; font-size: 16px; }
.content-section ul, .content-section ol { margin-bottom: 20px; padding-left: 20px; }
.content-section li { margin-bottom: 10px; font-size: 16px; }
.highlight-text { color: var(--accent-gold); font-weight: bold; }

/* ── Hero (index only) ── */
.hero { position: relative; width: 100%; min-height: 450px; height: 70vh; max-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid var(--border-color); padding: 40px 20px; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; background-color: #0d0f12; }
.hero::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(13,15,18,0.4) 0%, rgba(13,15,18,0.95) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 850px; text-shadow: 0px 4px 10px rgba(0,0,0,0.8); }
.hero h1 { font-size: 46px; font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 19px; color: #f2f5f7; margin-bottom: 30px; }

/* ── Quick nav ── */
.quick-nav { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin: 30px 0 50px 0; }
.quick-nav a { background: var(--bg-card); padding: 10px 20px; border-radius: 5px; border: 1px solid var(--border-color); color: #fff; font-weight: 600; }
.quick-nav a:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

/* ── Features table ── */
.features-table { width: 100%; border-collapse: collapse; margin-top: 25px; margin-bottom: 25px; background-color: var(--bg-card); border-radius: 8px; overflow: hidden; }
.features-table th, .features-table td { padding: 18px; border: 1px solid var(--border-color); text-align: left; }
.features-table th { background-color: var(--bg-dark); color: var(--accent-gold); font-size: 18px; }
.features-table tr:nth-child(even) { background-color: rgba(255,255,255,0.02); }

/* ── Promo / info boxes ── */
.promo-box { background-color: var(--bg-card); padding: 30px; border-radius: 8px; border: 1px solid var(--border-color); margin-top: 20px; }
.info-box { background: var(--bg-card); border: 1px solid var(--border-color); border-left: 4px solid var(--accent-gold); border-radius: 8px; padding: 20px 25px; margin-bottom: 25px; }
.info-box.warning { border-left-color: var(--accent-red); }
.info-box p { margin-bottom: 0; }

/* ── Page title hero (bonussen / subpages) ── */
.page-title { text-align: center; margin-bottom: 50px; background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-darker) 100%); padding: 40px 30px; border-radius: 12px; border: 1px solid var(--border-color); border-top: 4px solid var(--accent-gold); box-shadow: 0 15px 35px rgba(0,0,0,0.4); }
.page-title h1 { font-size: 38px; color: #fff; margin-bottom: 15px; line-height: 1.2; }
.page-title p { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

/* ── Bonus cards ── */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; margin-bottom: 50px; }
.bonus-card { background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: 8px; padding: 25px 20px; display: flex; flex-direction: column; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.bonus-card:hover { transform: translateY(-5px); border-color: var(--accent-gold); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.bonus-card h3 { color: #fff; font-size: 18px; margin: 0 0 15px 0; }
.bonus-code-wrapper { background: var(--bg-dark); padding: 15px; border-radius: 5px; margin-bottom: 20px; border: 1px dashed var(--border-color); }
.bonus-code-label { font-size: 12px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; display: block; }
.bonus-code { color: var(--accent-gold); font-size: 24px; font-weight: bold; letter-spacing: 2px; }
.bonus-terms { font-size: 14px; color: var(--text-main); flex-grow: 1; margin-bottom: 25px; line-height: 1.5; }
.trust-signals { font-size: 11px; color: var(--text-muted); margin-top: 15px; line-height: 1.4; }
.trust-signals a { text-decoration: underline; color: var(--text-muted); }
.trust-signals a:hover { color: var(--accent-gold); }
.sticky-cta-container { display: none; }

/* ── Review / rating ── */
.rating-table { width: 100%; background: var(--bg-card); border-radius: 8px; border: 1px solid var(--border-color); overflow: hidden; margin-bottom: 30px; }
.rating-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--border-color); }
.rating-row:last-child { border-bottom: none; }
.rating-label { font-weight: 600; }
.rating-stars { color: var(--accent-gold); letter-spacing: 2px; }
.rating-score { font-weight: bold; color: var(--accent-gold); }

/* ── FAQ ── */
.faq-item { margin-bottom: 20px; background: var(--bg-card); padding: 20px; border-radius: 8px; border: 1px solid var(--border-color); }
.faq-item h3 { color: var(--accent-gold); margin-top: 0; margin-bottom: 10px; font-size: 20px; }
.faq-item p { margin-bottom: 0; }

/* ── Footer ── */
.footer { background-color: var(--bg-dark); border-top: 1px solid var(--border-color); padding: 40px 0; text-align: center; color: var(--text-muted); }
.footer-links { margin-bottom: 20px; }
.footer-links a { margin: 0 15px; color: var(--text-muted); font-weight: 600; }
.footer-links a:hover { color: var(--accent-gold); }
.social-icons { margin-top: 20px; display: flex; justify-content: center; gap: 15px; }
.social-icons span { display: inline-block; width: 40px; height: 40px; line-height: 40px; background: var(--bg-card); border-radius: 50%; border: 1px solid var(--border-color); cursor: pointer; transition: 0.3s; text-align: center; }
.social-icons span:hover { background: var(--accent-gold); color: #000; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero { height: auto; min-height: 500px; padding: 60px 20px; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .header-inner { flex-direction: row; }
    .burger-menu { display: block; }
    .header-actions {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background-color: var(--bg-dark); padding: 20px;
        border-bottom: 1px solid var(--border-color); flex-direction: column;
        gap: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .header-actions.active { display: flex; }
    .header-link { position: relative; left: auto; transform: none; text-align: center; padding: 10px 0; width: 100%; }
    .btn-secondary { margin-left: 0; }
    .burger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-menu.active span:nth-child(2) { opacity: 0; }
    .burger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .quick-nav { flex-direction: column; align-items: stretch; }
    .quick-nav a { text-align: center; }
    .features-table th, .features-table td { padding: 10px; font-size: 14px; }
    .bonus-grid { grid-template-columns: 1fr; }
    .page-title { padding: 30px 15px; }
    .page-title h1 { font-size: 28px; }
    body { padding-bottom: 80px; }
    .sticky-cta-container {
        display: block; position: fixed; bottom: 0; left: 0; width: 100%;
        background-color: var(--bg-dark); padding: 15px 20px;
        border-top: 1px solid var(--accent-gold); box-shadow: 0 -5px 15px rgba(0,0,0,0.8);
        z-index: 999; text-align: center;
    }
    .sticky-cta-container .btn { width: 100%; font-size: 18px; padding: 12px; }
    .rating-row { flex-direction: column; align-items: flex-start; gap: 6px; }
    .footer-links a { margin: 0 8px; }
}
