/* Celsius Casino Hungary — Affiliate Review Site */
:root {
  --bg: #080a10;
  --bg-card: #121620;
  --bg-surf: #1a1f2e;
  --bg-surf2: #242b3d;
  --accent: #0090ff;
  --accent2: #33a6ff;
  --accent-red: #ff4d4d;
  --neon: #00d4ff;
  --success: #00e676;
  --text: #ffffff;
  --text2: #8a96ab;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 800px 600px at 10% -10%, rgba(0,144,255,0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(0,212,255,0.06), transparent 60%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent2); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* AGE GATE */
.age-gate { position: fixed; inset: 0; background: rgba(8,10,16,0.97); backdrop-filter: blur(8px); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.age-gate__inner { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; max-width: 460px; width: 100%; text-align: center; box-shadow: var(--shadow); }
.age-gate__badge { display: inline-block; background: var(--accent-red); color: #fff; font-weight: 800; padding: 8px 18px; border-radius: 999px; font-size: 22px; margin-bottom: 16px; letter-spacing: 1px; }
.age-gate h2 { font-size: 22px; margin-bottom: 12px; }
.age-gate p { color: var(--text2); margin-bottom: 22px; font-size: 14px; }
.age-gate__btns { display: flex; gap: 12px; }
.age-gate__btns button { flex: 1; padding: 14px; border-radius: var(--radius-sm); border: 0; font-weight: 700; cursor: pointer; font-size: 15px; transition: transform .15s, filter .2s; }
.age-gate__btns button:hover { transform: translateY(-2px); }
.age-gate__yes { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; }
.age-gate__no { background: var(--bg-surf2); color: var(--text); }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(10, 13, 22, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: 1200px; margin: 0 auto; gap: 16px; }
.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: var(--text); padding: 9px 14px; border-radius: var(--radius-sm); font-weight: 500; font-size: 14.5px; transition: background .2s, color .2s; }
.nav a:hover, .nav a.active { background: var(--bg-surf); color: var(--accent2); }

.header-cta { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff !important; padding: 11px 22px !important; border-radius: var(--radius-sm); font-weight: 700 !important; box-shadow: 0 4px 14px rgba(0,144,255,0.35); }
.header-cta:hover { transform: translateY(-1px); filter: brightness(1.08); background: linear-gradient(135deg, var(--accent2), var(--accent)) !important; }

.burger { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--text); margin: 5px 0; transition: .25s; border-radius: 2px; }

@media (max-width: 980px) {
  .burger { display: block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg-surf); padding: 14px; border-bottom: 1px solid var(--border); align-items: stretch; gap: 4px; }
  .nav.open { display: flex; }
  .nav a { width: 100%; }
  .header-cta { text-align: center; margin-top: 8px; }
}

/* HERO */
.hero { padding: 70px 0 60px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(28px, 4.2vw, 46px); line-height: 1.15; margin-bottom: 18px; font-weight: 800; letter-spacing: -0.5px; }
.hero h1 .accent { background: linear-gradient(135deg, var(--accent), var(--neon)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-lede { color: var(--text2); font-size: 17px; margin-bottom: 26px; }
.hero-bullets { list-style: none; margin-bottom: 28px; }
.hero-bullets li { padding: 6px 0 6px 30px; position: relative; color: var(--text); font-size: 15px; }
.hero-bullets li::before { content: "✓"; position: absolute; left: 0; top: 6px; color: var(--success); font-weight: 700; background: rgba(0,230,118,0.12); width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 12px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); position: relative; }
.hero-img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent, rgba(0,144,255,0.08)); pointer-events: none; }
.hero-img-wrap img { width: 100%; height: auto; }

@media (max-width: 880px) {
  .hero { padding: 40px 0 30px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-img-wrap { order: -1; }
}

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; cursor: pointer; border: 0; text-align: center; transition: transform .15s, box-shadow .2s, filter .2s; line-height: 1; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; box-shadow: 0 6px 18px rgba(0,144,255,0.35); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); color: #fff; box-shadow: 0 8px 24px rgba(0,144,255,0.45); }
.btn-ghost { background: var(--bg-surf); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-surf2); color: var(--accent2); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* SECTIONS */
section { padding: 56px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.section-head h2 { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 12px; letter-spacing: -0.3px; }
.section-head p { color: var(--text2); font-size: 16px; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.25; color: var(--text); }
h2 { font-size: clamp(22px, 2.8vw, 30px); margin: 0 0 16px; }
h3 { font-size: clamp(18px, 2.2vw, 22px); margin: 28px 0 12px; }
h4 { font-size: 17px; margin: 18px 0 10px; }

p { margin-bottom: 14px; color: var(--text); }
.lede { color: var(--text2); font-size: 17px; }

/* CARDS GRID */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform .25s, border-color .2s, box-shadow .25s; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-4px); border-color: rgba(0,144,255,0.35); box-shadow: 0 10px 30px rgba(0,144,255,0.12); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(0,144,255,0.18), rgba(0,212,255,0.08)); color: var(--neon); margin-bottom: 16px; font-size: 22px; }
.card h3 { font-size: 18px; margin: 0 0 10px; }
.card p { color: var(--text2); font-size: 14.5px; margin: 0; }

/* TABLES */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); margin: 22px 0; background: var(--bg-card); }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14.5px; }
th { background: var(--bg-surf); color: var(--accent2); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
tr:last-child td { border-bottom: 0; }
tr:hover td { background: rgba(255,255,255,0.02); }
.tag-good { color: var(--success); font-weight: 700; }
.tag-bad { color: var(--accent-red); font-weight: 700; }

/* LISTS */
ul.bullets, ol.bullets { margin: 14px 0 18px 22px; }
ul.bullets li, ol.bullets li { margin-bottom: 8px; color: var(--text); }
ul.checks { list-style: none; margin: 14px 0 18px; }
ul.checks li { padding: 6px 0 6px 32px; position: relative; }
ul.checks li::before { content: "✓"; position: absolute; left: 0; top: 6px; color: var(--success); font-weight: 700; background: rgba(0,230,118,0.12); width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 12px; }

/* CONTENT BLOCKS */
.content-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; margin-bottom: 24px; }
.content-block h2:first-child, .content-block h3:first-child { margin-top: 0; }
.content { max-width: 880px; margin: 0 auto; }
.content p, .content li { color: #cfd6e4; }
.content h2 { margin-top: 38px; }

.callout { background: linear-gradient(135deg, rgba(0,144,255,0.10), rgba(0,212,255,0.04)); border: 1px solid rgba(0,144,255,0.25); border-left: 4px solid var(--accent); border-radius: var(--radius-sm); padding: 18px 22px; margin: 22px 0; color: var(--text); }
.callout strong { color: var(--neon); }

.warn { background: rgba(255,77,77,0.08); border: 1px solid rgba(255,77,77,0.25); border-left: 4px solid var(--accent-red); border-radius: var(--radius-sm); padding: 16px 22px; margin: 22px 0; color: #ffd9d9; font-size: 14.5px; }

/* STATS BAR */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; margin: 30px 0; }
.stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: center; }
.stat-val { font-size: 28px; font-weight: 800; color: var(--neon); display: block; line-height: 1.1; }
.stat-lbl { color: var(--text2); font-size: 13px; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px; }

/* CTA BLOCK */
.cta-block { background: linear-gradient(135deg, rgba(0,144,255,0.12), rgba(0,212,255,0.04)); border: 1px solid rgba(0,144,255,0.30); border-radius: var(--radius); padding: 40px 30px; text-align: center; margin: 40px 0; }
.cta-block h2 { margin-bottom: 12px; }
.cta-block p { color: var(--text2); margin-bottom: 22px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* FAQ */
.faq { margin: 30px 0; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: rgba(0,144,255,0.30); }
.faq-q { width: 100%; background: transparent; border: 0; color: var(--text); padding: 18px 22px; font-size: 16px; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
.faq-q::after { content: "+"; color: var(--accent); font-size: 24px; font-weight: 700; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; color: var(--text2); font-size: 15px; }
.faq-item.open .faq-a { max-height: 500px; padding: 0 22px 20px; }

/* BREADCRUMBS */
.crumbs { padding: 18px 0 0; font-size: 13.5px; color: var(--text2); }
.crumbs a { color: var(--text2); }
.crumbs a:hover { color: var(--accent2); }
.crumbs span.sep { margin: 0 8px; opacity: 0.5; }
.crumbs .current { color: var(--text); }

/* PAGE HERO (smaller for inner pages) */
.page-hero { padding: 36px 0 24px; }
.page-hero h1 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 12px; }
.page-hero p.lede { max-width: 780px; }
.page-hero-img { margin: 24px auto 0; max-width: 1000px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }

/* FOOTER */
.site-footer { background: #05070c; border-top: 1px solid var(--border); padding: 50px 0 24px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent2); margin-bottom: 16px; }
.footer-col a { color: var(--text2); display: block; padding: 5px 0; font-size: 14px; }
.footer-col a:hover { color: var(--accent2); }
.footer-about p { color: var(--text2); font-size: 14px; margin-top: 16px; }
.footer-logos { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 14px; }
.footer-logos span { background: var(--bg-card); border: 1px solid var(--border); padding: 6px 12px; border-radius: 6px; color: var(--text2); font-size: 12px; font-weight: 600; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; text-align: center; color: var(--text2); font-size: 13px; }
.footer-bottom .age18 { display: inline-block; background: var(--accent-red); color: #fff; font-weight: 700; padding: 3px 10px; border-radius: 999px; margin-right: 10px; font-size: 12px; }

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 40px 0; }
  .content-block { padding: 22px; }
  .cta-block { padding: 30px 20px; }
  th, td { padding: 11px 12px; font-size: 13.5px; }
}

/* CONTACT FORM */
.form { display: grid; gap: 14px; max-width: 600px; }
.form label { font-size: 14px; color: var(--text2); display: block; margin-bottom: 6px; }
.form input, .form textarea, .form select { width: 100%; padding: 12px 14px; background: var(--bg-surf); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-family: inherit; font-size: 15px; transition: border-color .2s; }
.form input:focus, .form textarea:focus, .form select:focus { outline: 0; border-color: var(--accent); }
.form textarea { min-height: 130px; resize: vertical; }

/* TWO-COLUMN GENERIC */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }

/* OFFER STRIP */
.offer-strip { background: linear-gradient(90deg, rgba(0,144,255,0.15), rgba(0,212,255,0.08)); border-top: 1px solid rgba(0,144,255,0.2); border-bottom: 1px solid rgba(0,144,255,0.2); padding: 14px 0; text-align: center; font-size: 14.5px; color: var(--text); }
.offer-strip strong { color: var(--neon); }

/* RATING STARS */
.rating { display: inline-flex; gap: 2px; color: #ffc107; }

/* INLINE-PROSE COMPONENTS */
.pill { display: inline-block; background: rgba(0,144,255,0.12); color: var(--accent2); padding: 3px 10px; border-radius: 999px; font-size: 12.5px; font-weight: 600; margin-right: 4px; }

.intro-img { margin: 28px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* CRYPTO LIST */
.coin-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; margin: 20px 0; }
.coin { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 10px; text-align: center; font-weight: 700; color: var(--text); font-size: 14px; transition: border-color .2s, transform .2s; }
.coin:hover { border-color: var(--accent); transform: translateY(-2px); }
.coin small { display: block; color: var(--text2); font-size: 11px; font-weight: 500; margin-top: 3px; }
