/* Site 12 — generated 2026-04-09 — variant standard/minimal */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Noto+Sans:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --accent: #BEF264;
  --accent-dark: #4D7C0F;
  --accent-light: #D9F99D;
  --bg: #050A02;
  --surface: #0A1503;
  --surface2: #0F2004;
  --border: #162E06;
  --text: #F7FEE7;
  --sub: #A3E635;
  --radius: 16px;
  --btn-radius: 50px;
  --shadow: 0 6px 28px rgba(0,0,0,0.55);
  --heading: 'Manrope', sans-serif;
  --body: 'Noto Sans', sans-serif;
  --transition: .2s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--body); background: var(--bg); color: var(--text); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }
img { max-width: 100%; height: auto; display: block; }

/* SKIP LINK */
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--accent); color: #000; padding: .5rem 1rem; border-radius: 0 0 var(--radius) var(--radius); font-weight: 700; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 0; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 clamp(1rem,4vw,2.5rem);
  height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.logo { font-family: var(--heading); font-size: 1.3rem; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.logo em { font-style: normal; color: var(--accent); }
nav { display: flex; gap: 1.5rem; align-items: center; }
nav a { color: var(--sub); font-size: .875rem; font-weight: 500; transition: color var(--transition); }
nav a:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: #000 !important; padding: .4rem 1.1rem; border-radius: var(--btn-radius); font-weight: 700 !important; font-size: .8rem !important; }
.nav-cta:hover { background: var(--accent-light); color: #000 !important; }

/* BREADCRUMB */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); padding: .5rem clamp(1rem,4vw,2.5rem); }
.breadcrumb ol { max-width: 1240px; margin: 0 auto; list-style: none; display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; }
.breadcrumb li { font-size: .75rem; color: var(--sub); }
.breadcrumb li + li::before { content: '›'; margin-right: .4rem; color: var(--border); }
.breadcrumb a { color: var(--sub); }
.breadcrumb a:hover { color: var(--accent); }

/* HERO */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(2.5rem,7vw,5.5rem) clamp(1rem,4vw,3rem);
  text-align: center;
  min-height: 520px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #050A02 0%, #0A1503 100%);
}
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .18; mix-blend-mode: luminosity;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #BEF26418, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  border-radius: 50px; padding: .3rem 1.1rem;
  font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 700; color: var(--accent); margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--heading); font-size: 3.5rem;
  font-weight: 800; line-height: 1.12; letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
@media(min-width: 768px) { .hero h1 { font-size: 5.2rem; } }
.hero h1 .hl { color: var(--accent); }
.hero-sub { font-size: 1.05rem; color: var(--sub); max-width: 700px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2rem; justify-content: flex-start; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num { font-family: var(--heading); font-size: 1.75rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: .75rem; color: var(--sub); margin-top: .25rem; text-transform: uppercase; letter-spacing: .05em; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .8rem 2rem; border-radius: var(--btn-radius);
  font-family: var(--heading); font-weight: 700; font-size: .95rem;
  cursor: pointer; border: none; transition: all var(--transition);
  white-space: nowrap; text-decoration: none !important;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); color: #000; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* SECTION */
.section { padding: clamp(2.5rem,7vw,5.5rem) clamp(1rem,4vw,3rem); }
.section-alt { background: var(--surface); }
.section-dark { background: rgba(0,0,0,.25); }
.wrap { max-width: 1240px; margin: 0 auto; }
.section-label {
  display: inline-block; color: var(--accent); font-size: .72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem;
}
.section-title {
  font-family: var(--heading); font-size: clamp(1.75rem,4vw,2.75rem);
  font-weight: 800; line-height: 1.18; letter-spacing: -.025em; margin-bottom: 1rem;
}
.section-intro { color: var(--sub); max-width: 700px; font-size: 1rem; line-height: 1.8; margin-bottom: 2.5rem; }

/* CASINO GRID */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.casino-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.casino-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0; transition: opacity var(--transition);
}
.casino-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.55); border-color: var(--accent); }
.casino-card:hover::before { opacity: 1; }


.casino-logo-wrap {
  height: 80px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border-radius: calc(var(--radius) - 2px);
  padding: 1rem; transition: background var(--transition);
}
.casino-card:hover .casino-logo-wrap { background: rgba(255,255,255,.07); }
.casino-logo-wrap img { max-height: 56px; max-width: 170px; object-fit: contain; }

.casino-meta { display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; }
.casino-bonus { font-family: var(--heading); font-size: 1.05rem; font-weight: 700; color: var(--accent); flex: 1; }
.casino-bonus small { display: block; font-size: .7rem; color: var(--sub); font-weight: 400; font-family: var(--body); margin-top: .15rem; }
.casino-rating { display: flex; align-items: center; gap: .25rem; flex-shrink: 0; }
.stars { color: var(--accent); font-size: .9rem; letter-spacing: -.05em; }
.rating-num { font-size: .78rem; color: var(--sub); font-weight: 600; }

.casino-details { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.detail-item { background: rgba(255,255,255,.025); border-radius: 6px; padding: .4rem .6rem; }
.detail-label { font-size: .65rem; color: var(--sub); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .15rem; }
.detail-val { font-size: .82rem; font-weight: 600; color: var(--text); }

.casino-features { list-style: none; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.casino-features li { font-size: .82rem; color: var(--sub); display: flex; align-items: flex-start; gap: .5rem; }
.casino-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

.btn-play {
  background: var(--accent); color: #000; width: 100%; justify-content: center;
  padding: .75rem 1rem; font-size: .9rem; border-radius: var(--btn-radius);
  margin-top: auto;
}
.btn-play:hover { background: var(--accent-light); transform: translateY(-2px); color: #000; box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.tc-note { font-size: .68rem; color: var(--sub); text-align: center; }

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.why-card {
  background: rgba(255,255,255,.025); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.why-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.why-card h3 { font-family: var(--heading); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.why-card p { font-size: .875rem; color: var(--sub); line-height: 1.7; }

/* STEPS */
.steps-list { display: flex; flex-direction: column; gap: 1.25rem; }
.step-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem;
  align-items: flex-start; background: rgba(255,255,255,.025);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1.35rem;
  transition: border-color var(--transition);
}
.step-item:hover { border-color: var(--accent); }
.step-num {
  width: 48px; height: 48px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-weight: 800; font-size: 1.1rem; color: #000; flex-shrink: 0;
}
.step-body h3 { font-family: var(--heading); font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.step-body p { font-size: .875rem; color: var(--sub); line-height: 1.75; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--text); cursor: pointer; padding: 1.2rem 0;
  font-family: var(--heading); font-size: .95rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-q .arr { transition: transform .3s; flex-shrink: 0; color: var(--sub); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-item.open .arr { transform: rotate(180deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { font-size: .9rem; color: var(--sub); line-height: 1.8; padding-bottom: 1.25rem; }
.faq-item.open .faq-a { max-height: 500px; }

/* TRUST */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.trust-card {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem; text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.trust-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.trust-icon { font-size: 2rem; margin-bottom: .6rem; }
.trust-card h4 { font-family: var(--heading); font-size: .9rem; font-weight: 700; margin-bottom: .35rem; }
.trust-card p { font-size: .8rem; color: var(--sub); line-height: 1.6; }

/* RESPONSIBLE */
.rg-box {
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--accent); border-radius: var(--radius); padding: 2.25rem;
  max-width: 880px;
}
.rg-box h3 { font-family: var(--heading); font-size: 1.2rem; font-weight: 700; margin-bottom: .75rem; color: var(--accent); }
.rg-box p { font-size: .9rem; color: var(--sub); line-height: 1.85; }
.rg-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem; }
.rg-link {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: var(--btn-radius); padding: .35rem .9rem;
  font-size: .8rem; color: var(--text) !important; transition: border-color var(--transition);
  text-decoration: none !important;
}
.rg-link:hover { border-color: var(--accent); color: var(--accent) !important; }

/* TABLE */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.compare-table th { background: var(--surface2); color: var(--sub); font-family: var(--heading); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .9rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table td { padding: .9rem 1.25rem; font-size: .875rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,.015); }
.compare-table tr:hover td { background: rgba(255,255,255,.04); }
.compare-table .logo-cell img { max-height: 36px; max-width: 120px; object-fit: contain; }
.compare-table .rating-cell { color: var(--accent); font-weight: 700; font-family: var(--heading); }
.compare-table .bonus-cell { color: var(--accent); font-weight: 600; }

/* FOOTER */
.site-footer {
  background: rgba(0,0,0,.5); border-top: 1px solid var(--border);
  padding: clamp(2.5rem,6vw,4.5rem) clamp(1rem,4vw,3rem);
}
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 2rem;
}
@media(min-width: 640px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: .85rem; color: var(--sub); line-height: 1.75; margin-top: .75rem; }
.footer-col h4 { font-family: var(--heading); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sub); margin-bottom: .8rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul li a { font-size: .85rem; color: var(--sub); }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1240px; margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: .75rem; color: var(--sub); }
.age-badge { background: var(--accent); color: #000; font-family: var(--heading); font-weight: 800; padding: .25rem .8rem; border-radius: 4px; font-size: .85rem; }
.disclaimer {
  background: rgba(0,0,0,.3); border-top: 1px solid var(--border);
  padding: 1rem clamp(1rem,4vw,3rem); text-align: center;
  font-size: .72rem; color: var(--sub); line-height: 1.75;
}
/* PAGE CONTENT */
.page-wrap { max-width: 840px; margin: 0 auto; padding: clamp(2rem,5vw,4rem) clamp(1rem,4vw,3rem); }
.page-wrap h1 { font-family: var(--heading); font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -.025em; }
.page-wrap h2 { font-family: var(--heading); font-size: 1.3rem; font-weight: 700; margin: 2rem 0 .75rem; color: var(--accent); }
.page-wrap p { font-size: .95rem; color: var(--sub); line-height: 1.9; margin-bottom: 1rem; }
.page-wrap ul { padding-left: 1.5rem; color: var(--sub); font-size: .9rem; line-height: 1.85; margin-bottom: 1rem; }
/* RESPONSIVE */
@media(max-width: 600px) {
  nav { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .casino-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .casino-details { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .step-item { grid-template-columns: 40px 1fr; gap: .75rem; }
}
