/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #FFD700;
  --gold-dark: #C8A400;
  --gold-glow: rgba(255, 215, 0, 0.7);
  --amber: #FF8C00;
  --purple-deep: #2e1060;
  --purple-mid: #4a1a8a;
  --purple-light: #6025b0;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.85);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: linear-gradient(160deg, #3a1278 0%, #2e1060 40%, #1e0845 100%);
  background-attachment: fixed;
  color: var(--white);
  min-height: 100vh;
  line-height: 1.7;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }

h1 { font-size: clamp(3rem, 8vw, 6rem); color: var(--gold); text-shadow: 0 0 30px var(--gold-glow), 0 0 60px var(--gold-glow); line-height: 1.1; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--gold); text-shadow: 0 0 20px var(--gold-glow); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--gold); margin-bottom: 1rem; }

p { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--white); margin-bottom: 1.25rem; line-height: 1.8; }

h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: var(--gold); margin-bottom: 0.75rem; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26, 10, 46, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  text-shadow: 0 0 20px var(--gold-glow);
  letter-spacing: 2px;
}

.navbar-links { display: flex; gap: 2rem; list-style: none; }
.navbar-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 28px; height: 3px; background: var(--gold); border-radius: 2px; display: block; transition: 0.3s; }

/* ===== ACCESSIBILITY ===== */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--purple-deep);
  box-shadow: 0 0 30px var(--gold-glow), 0 4px 20px rgba(255,107,0,0.5);
}
.btn-primary:hover { transform: scale(1.06); box-shadow: 0 0 50px var(--gold-glow), 0 8px 30px rgba(255,107,0,0.7); }

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}
.btn-secondary:hover { background: var(--gold); color: var(--purple-deep); transform: scale(1.06); }

.btn-danger {
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: #fff;
  box-shadow: 0 0 30px rgba(230,57,70,0.5);
}
.btn-danger:hover { transform: scale(1.06); box-shadow: 0 0 50px rgba(230,57,70,0.8); }

/* ===== SECTIONS ===== */
.section { padding: 100px 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-alt { background: rgba(255,255,255,0.07); }

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: linear-gradient(90deg, var(--purple-mid), var(--purple-light), var(--purple-mid));
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 1.5rem 2rem;
}
.trust-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; font-size: 1.1rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }
.trust-item svg { width: 32px; height: 32px; fill: var(--gold); flex-shrink: 0; }

/* ===== BONUS CARDS ===== */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.bonus-card {
  background: linear-gradient(145deg, var(--purple-mid), var(--purple-light));
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 0 30px rgba(255,215,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: 0 0 50px rgba(255,215,0,0.3); }
.bonus-card-icon { font-size: 3.5rem; margin-bottom: 1rem; display: block; }
.bonus-card h3 { font-size: 1.6rem; }
.bonus-card p { font-size: 1.05rem; color: var(--text-muted); }
.bonus-card .amount { font-size: 2.2rem; font-family: var(--font-heading); color: var(--gold); font-weight: 700; margin: 0.75rem 0; display: block; }
.bonus-card .btn { margin-top: 1.5rem; width: 100%; text-align: center; }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  padding: 160px 2rem 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(26,10,46,0.8) 0%, rgba(26,10,46,0.95) 100%);
}
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero p { font-size: 1.3rem; color: var(--text-muted); max-width: 700px; margin: 1rem auto 0; }

/* ===== CONTENT BLOCKS (terms / resp gaming) ===== */
.content-block { margin-bottom: 3rem; }
.content-block h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); border-bottom: 2px solid var(--gold); padding-bottom: 0.75rem; margin-bottom: 1.5rem; }
.content-block p, .content-block li { font-size: 1.1rem; }
.content-block ul, .content-block ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.content-block li { margin-bottom: 0.6rem; }

/* ===== HELP BOX (responsible gaming) ===== */
.help-box {
  background: linear-gradient(135deg, rgba(230,57,70,0.15), rgba(193,18,31,0.15));
  border: 2px solid #e63946;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.help-box h2 { color: #ff6b6b; text-shadow: 0 0 20px rgba(230,57,70,0.6); }
.help-box p { font-size: 1.2rem; }
.help-box .phone { font-size: 2rem; font-family: var(--font-heading); color: var(--gold); font-weight: 700; display: block; margin: 1rem 0; }

/* ===== FOOTER ===== */
footer {
  background: rgba(10, 4, 20, 0.98);
  border-top: 2px solid var(--gold);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; }
.footer-links a { color: var(--gold); text-decoration: none; font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a:hover { text-decoration: underline; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--purple-deep);
  font-weight: 900;
  font-size: 1.5rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.footer-disclaimer { font-size: 0.9rem; color: var(--text-muted); max-width: 800px; margin: 1.5rem auto 0; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: var(--purple-deep); border-bottom: 2px solid var(--gold); padding: 1rem 0; }
  .navbar-links.open { display: flex; }
  .navbar-links li { padding: 0.75rem 2rem; }
  .hamburger { display: flex; }
  .trust-item { font-size: 0.9rem; }
  .bonus-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 1.25rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}