@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background-color: #08090c;
  color: #c8ccd6;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --accent-dark: #5b21b6;
  --accent2: #10b981;
  --gold: #f59e0b;
  --dark-bg: #08090c;
  --dark-card: #0f1117;
  --dark-card2: #13151e;
  --dark-border: rgba(255,255,255,0.07);
  --text-primary: #f1f1f5;
  --text-muted: #8b8fa8;
  --text-body: #c8ccd6;
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 18px;
  --section-pad: 96px;
}

/* ===== UTILITIES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--dark-card); }
.section--dark { background: #0b0c11; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { color: var(--text-primary); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.5px; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { color: var(--text-body); margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-heading { margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 660px; margin: 0 auto 48px; }
.accent-bar {
  display: block;
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 12px 0 28px;
}
.accent-bar--center { margin-left: auto; margin-right: auto; }
.text-accent { color: var(--accent-light); }
.text-gold { color: var(--gold); }
.text-green { color: var(--accent2); }

/* ===== GLOW EFFECTS ===== */
.glow-purple { text-shadow: 0 0 30px rgba(124,58,237,0.6), 0 0 60px rgba(124,58,237,0.3); }
.glow-box { box-shadow: 0 0 40px rgba(124,58,237,0.15), 0 8px 32px rgba(0,0,0,0.5); }

/* ===== NAV ===== */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,9,12,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.nav-logo {
  font-size: 1.3rem; font-weight: 900; letter-spacing: -0.5px;
  color: var(--text-primary);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--accent-light); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--text-muted); font-size: 0.88rem; font-weight: 500;
  padding: 6px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  border-radius: 8px; padding: 7px 16px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }
.nav-mobile-btn {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--text-primary); padding: 6px;
}
.nav-mobile-btn svg { width: 24px; height: 24px; }

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.14) 0%, transparent 70%),
              var(--dark-bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237c3aed' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25);
  border-radius: 50px; padding: 5px 14px 5px 10px;
  font-size: 0.78rem; font-weight: 600; color: var(--accent2);
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent2);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title { margin-bottom: 20px; }
.hero-title em { font-style: normal; color: var(--accent-light); }
.hero-desc { font-size: 1.08rem; color: var(--text-muted); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.95rem; border-radius: 10px;
  padding: 14px 26px; cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124,58,237,0.4);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(124,58,237,0.55); }
.btn-secondary {
  background: rgba(255,255,255,0.06); border: 1px solid var(--dark-border);
  color: var(--text-primary);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.btn-ghost { background: transparent; color: var(--text-muted); padding: 14px 6px; }
.btn-ghost:hover { color: var(--text-primary); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-green {
  background: linear-gradient(135deg, #059669, var(--accent2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,0.35);
}
.btn-green:hover { box-shadow: 0 8px 28px rgba(16,185,129,0.5); }
.btn-gold {
  background: linear-gradient(135deg, #d97706, var(--gold));
  color: #000; font-weight: 800;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-gold:hover { box-shadow: 0 8px 28px rgba(245,158,11,0.5); }
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.25);
  box-shadow: 0 0 60px rgba(124,58,237,0.2), 0 20px 60px rgba(0,0,0,0.6);
}
.hero-img-wrap img { width: 100%; }
.hero-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(8,9,12,0.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 10px; padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero-img-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent2); animation: pulse-dot 2s infinite; }
.hero-img-badge span { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--dark-card2);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 28px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center; padding: 8px 16px;
  border-right: 1px solid var(--dark-border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--accent-light); display: block; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== CASINO CARDS ===== */
.casino-section { padding: var(--section-pad) 0; }
.casino-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.casino-card {
  background: var(--dark-card2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.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 0.25s;
}
.casino-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(124,58,237,0.1); }
.casino-card:hover::before { opacity: 1; }
.casino-card--featured { border-color: rgba(124,58,237,0.35); }
.casino-card--featured::before { opacity: 1; }
.casino-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px;
}
.casino-badge--hot { background: linear-gradient(135deg, #dc2626, #ef4444); }
.casino-badge--new { background: linear-gradient(135deg, #059669, var(--accent2)); }
.casino-logo-wrap {
  width: 80px; height: 80px; border-radius: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 18px; flex-shrink: 0;
}
.casino-logo-wrap img { width: 70px; height: 70px; object-fit: contain; }
.casino-name { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.casino-offer {
  font-size: 0.95rem; font-weight: 700; color: var(--gold);
  margin-bottom: 10px;
}
.casino-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.casino-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.casino-tag {
  font-size: 0.72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
  background: rgba(124,58,237,0.1); color: var(--accent-light);
  border: 1px solid rgba(124,58,237,0.2);
}
.casino-tag--green { background: rgba(16,185,129,0.1); color: var(--accent2); border-color: rgba(16,185,129,0.2); }
.casino-cta { width: 100%; text-align: center; justify-content: center; margin-top: auto; }

/* ===== CONTENT SECTIONS ===== */
.content-block { max-width: 860px; margin: 0 auto; }
.content-block h2 { margin-bottom: 14px; }
.content-block p { font-size: 1.02rem; line-height: 1.8; }
.content-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.content-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--dark-border); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

/* ===== FEATURE BULLETS ===== */
.feature-list { margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }
.feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--text-body);
}
.feature-icon {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: rgba(124,58,237,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light); font-size: 0.7rem;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: rgba(16,185,129,0.04);
  border: 1px solid rgba(16,185,129,0.12);
  border-radius: var(--radius-lg); padding: 28px 32px;
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
  margin: 48px 0;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--text-primary); }
.trust-icon { font-size: 1.2rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--dark-card2); border: 1px solid var(--dark-border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer;
  font-weight: 600; font-size: 0.97rem; color: var(--text-primary);
  list-style: none; user-select: none;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255,255,255,0.03); }
.faq-item[open] summary { color: var(--accent-light); border-bottom: 1px solid var(--dark-border); }
.faq-chevron { width: 20px; height: 20px; transition: transform 0.25s; flex-shrink: 0; color: var(--text-muted); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--accent-light); }
.faq-body { padding: 16px 22px 20px; font-size: 0.94rem; color: var(--text-muted); line-height: 1.75; }

/* ===== STREAM EMBED ===== */
.stream-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: var(--radius-lg); border: 1px solid rgba(124,58,237,0.3);
  box-shadow: 0 0 50px rgba(124,58,237,0.15), 0 20px 60px rgba(0,0,0,0.6);
}
.stream-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ===== SLOTS GRID ===== */
.slots-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.slot-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--dark-border);
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--dark-card2);
}
.slot-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.slot-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.slot-card-name { padding: 12px 14px; font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }

/* ===== RESPONSIBLE GAMING ===== */
.responsible-box {
  background: rgba(220,38,38,0.05); border: 1px solid rgba(220,38,38,0.2);
  border-radius: var(--radius-lg); padding: 36px 40px;
  max-width: 820px; margin: 0 auto;
}
.responsible-box h2 { color: #fca5a5; margin-bottom: 16px; }
.responsible-box p { font-size: 0.94rem; color: #fcd5d5; opacity: 0.8; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: var(--section-pad) 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(124,58,237,0.12) 0%, transparent 70%),
              var(--dark-card);
  text-align: center;
}
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { max-width: 600px; margin: 0 auto 36px; font-size: 1.05rem; }
.final-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SOCIALS ===== */
.socials-bar { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--dark-border);
  border-radius: 10px; padding: 10px 18px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-muted);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.social-btn:hover { color: var(--text-primary); background: rgba(255,255,255,0.09); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #050508;
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 30px;
}
.footer-responsible {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(220,38,38,0.04);
  border: 1px solid rgba(220,38,38,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.footer-18-badge {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  border: 2.5px solid #ef4444;
  color: #ef4444;
  font-size: 1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.footer-responsible-text p { margin-bottom: 4px; font-size: 0.9rem; color: var(--text-muted); }
.footer-responsible-text p strong { color: var(--text-primary); }
.footer-hotline {
  font-size: 1.15rem; font-weight: 800;
  color: var(--accent-light);
  text-shadow: 0 0 16px rgba(124,58,237,0.4);
  margin-top: 4px;
}
.footer-hotline span { font-size: 0.78rem; font-weight: 400; color: var(--text-muted); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-heading {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-primary); margin-bottom: 6px;
}
.footer-col a {
  font-size: 0.86rem; color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-disclaimer {
  max-width: 800px; margin: 0 auto 32px;
  text-align: center;
}
.footer-disclaimer p {
  font-size: 0.78rem; color: #555; line-height: 1.7;
}
.footer-disclaimer strong { color: var(--text-muted); }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: #444; margin: 0; }

/* ===== MOBILE MENU ===== */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,9,12,0.97);
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; cursor: pointer; color: var(--text-muted); }

/* ===== DIVIDER ===== */
.section-divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
  margin: 0;
}

/* ===== ANCHOR NAV OFFSET ===== */
[id] { scroll-margin-top: 80px; }

/* ===== PROFILE TABLE ===== */
.profile-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.profile-table th,
.profile-table td {
  text-align: left; padding: 12px 16px; font-size: 0.92rem;
  border-bottom: 1px solid var(--dark-border);
}
.profile-table th { color: var(--text-muted); font-weight: 600; width: 38%; white-space: nowrap; }
.profile-table td { color: var(--text-primary); font-weight: 500; }
.profile-table tr:last-child th,
.profile-table tr:last-child td { border-bottom: none; }
.profile-card {
  background: var(--dark-card2); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.profile-card-header {
  padding: 20px 24px; display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--dark-border);
  background: rgba(124,58,237,0.06);
}
.profile-card-avatar { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--accent); }
.profile-card-name { font-size: 1.15rem; font-weight: 800; color: var(--text-primary); }
.profile-card-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.profile-card-body { padding: 8px 24px; }

/* ===== CONTENT TEXT BLOCK ===== */
.content-text { max-width: 860px; margin: 0 auto; }
.content-text h3 { margin: 32px 0 12px; }
.content-text p { font-size: 1.02rem; line-height: 1.8; }

/* ===== SOCIAL LINKS GRID ===== */
.social-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px; margin-top: 28px; max-width: 660px; margin-left: auto; margin-right: auto;
}
.social-link-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--dark-card2); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 14px 18px;
  font-size: 0.9rem; font-weight: 600; color: var(--text-primary);
  transition: transform 0.2s, border-color 0.2s;
}
.social-link-card:hover { transform: translateY(-2px); border-color: rgba(124,58,237,0.3); }
.social-link-card svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent-light); }
