:root {
    --gold: #f0a500;
    --gold-light: #ffd166;
    --red: #e63946;
    --dark: #0d0d0d;
    --dark-2: #161616;
    --dark-3: #1e1e1e;
    --dark-4: #252525;
    --card-bg: #1a1a1a;
    --border: rgba(255,255,255,0.08);
    --text: #e8e8e8;
    --text-muted: #888;
    --green: #2dc653;
    --radius: 12px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }


.overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(6px);
    z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.overlay.hidden { display: none; }

.popup-box {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border: 1px solid rgba(240,165,0,0.3);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.popup-crown { font-size: 3rem; margin-bottom: 16px; }
.popup-box h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.popup-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.popup-box p a { color: var(--gold); text-decoration: underline; }

.age-btn-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.age-btn { padding: 14px 20px; border-radius: 10px; font-weight: 700; cursor: pointer; border: none; transition: all 0.2s; }
.age-btn-yes { background: linear-gradient(135deg, var(--gold), #e09300); color: #000; }
.age-btn-no { background: var(--dark-4); color: var(--text-muted); border: 1px solid var(--border); }


.cookie-banner {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 40px); max-width: 820px; background: var(--dark-3);
    border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px;
    display: flex; align-items: center; gap: 20px; z-index: 8000;
}
.cookie-banner.hidden { display: none; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: linear-gradient(135deg, var(--gold), #e09300); color: #000; border: none; padding: 10px 20px; border-radius: 8px; font-weight: 700; cursor: pointer; }
.cookie-reject { background: transparent; color: var(--text-muted); border: 1px solid var(--border); padding: 10px 16px; border-radius: 8px; cursor: pointer; }


.disclaimer-bar {
    background: #000; border-bottom: 1px solid rgba(240,165,0,0.15);
    padding: 9px 20px; text-align: center; font-size: 0.78rem; color: var(--text-muted);
}
.disclaimer-bar a { color: var(--gold); text-decoration: underline; margin: 0 4px; }

.site-header {
    background: rgba(13,13,13,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 500;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.logo { font-size: 1.35rem; font-weight: 800; background: linear-gradient(90deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.logo span { -webkit-text-fill-color: #fff; font-weight: 400; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background: var(--gold); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; }

.mobile-nav { display: none; flex-direction: column; background: var(--dark-2); padding: 16px 24px; gap: 12px; }
.mobile-nav.open { display: flex; }


.page-hero { padding: 10px 24px; text-align: center; background: linear-gradient(160deg, #0d0d0d, #1a1200, #0d0d0d); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.page-hero h1 span { background: linear-gradient(90deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.content-section { max-width: 900px; margin: 60px auto; padding: 0 24px; }
.content-section h2 { font-size: 1.8rem; margin-bottom: 20px; color: #fff; }
.content-section p { margin-bottom: 20px; color: #aaa; font-size: 1.05rem; }
.content-section ul { margin-bottom: 20px; padding-left: 20px; color: #aaa; }
.content-section li { margin-bottom: 10px; }


.offers-section { padding: 60px 24px; max-width: 1100px; margin: 0 auto; }
.offers-list { display: flex; flex-direction: column; gap: 18px; }
.offer-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; transition: transform 0.2s; }
.offer-card:hover { transform: translateY(-3px); border-color: rgba(240,165,0,0.2); }
.offer-card-inner { display: grid; grid-template-columns: 180px 1fr 170px 80px 180px; align-items: center; gap: 20px; padding: 22px 24px; }
.offer-logo { display: flex; align-items: center; justify-content: center; background: #e0920075; padding: 12px; border-radius: 10px; height: 70px; }
.offer-logo img { max-height: 44px; }
.offer-bonus { font-size: 1.25rem; font-weight: 800; color: var(--gold); }
.offer-feature { font-size: 0.85rem; color: #aaa; list-style: none; display: flex; align-items: center; gap: 6px; }
.offer-feature::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232dc653' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.offer-score { text-align: center; }
.offer-score-num { font-size: 2.2rem; font-weight: 800; color: #fff; }
.btn-primary { display: block; background: linear-gradient(135deg, var(--gold), #e09300); color: #000; font-weight: 800; text-align: center; padding: 14px; border-radius: 10px; text-transform: uppercase; }
.offer-disclaimer { padding: 12px 24px; font-size: 0.72rem; color: #555; border-top: 1px solid var(--border); }


.site-footer { background: #000; border-top: 1px solid var(--border); padding: 60px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.footer-responsible h3 { font-size: 0.85rem; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.footer-responsible p { font-size: 0.8rem; color: #555; margin-bottom: 20px; }
.footer-logos { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-logos img { height: 36px;  opacity: 1; }
.footer-links-col h4 { font-size: 0.85rem; color: #fff; margin-bottom: 12px; }
.footer-links-col ul { list-style: none; }
.footer-links-col a { font-size: 0.8rem; color: #555; display: block; margin-bottom: 8px; }
.footer-bottom { text-align: center; border-top: 1px solid var(--border); padding-top: 30px; margin-top: 30px; }
.footer-bar-text { font-size: 0.78rem; color: #333; }
.footer-bar-text a { text-decoration: underline; }


@media (max-width: 900px) {
    .offer-card-inner { grid-template-columns: 1fr; text-align: center; }
    .offer-logo { max-width: 160px; margin: 0 auto; }
    .footer-top { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: block; }
}
