:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --accent2: #f5a623;
  --light: #f8f9fa;
  --text: #333;
  --muted: #666;
  --border: #e0e0e0;
  --card-bg: #fff;
  --max-w: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav {
  background: var(--primary);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent2); text-decoration: none; }

/* PLAY MONEY BANNER */
.play-money-bar {
  background: var(--accent2);
  color: #1a1a2e;
  text-align: center;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  color: #fff;
  padding: 90px 24px 80px;
  text-align: center;
}
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(233,69,96,0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 99px;
  padding: 4px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 em { color: var(--accent2); font-style: normal; }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero-disclaimer {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
}
.hero-disclaimer strong { color: var(--accent2); }

/* SECTION */
section { padding: 70px 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary);
}
.section-sub {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* DISCLAIMER BLOCK */
.disclaimer-section { background: #fff3cd; border-top: 4px solid var(--accent2); }
.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.disclaimer-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  border: 1px solid #ffd980;
  text-align: center;
}
.disclaimer-icon { font-size: 2rem; margin-bottom: 10px; }
.disclaimer-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.disclaimer-card p { font-size: 0.875rem; color: var(--muted); }

/* FEATURES */
.features-section { background: var(--light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.feature-icon { font-size: 1.8rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--primary); }
.feature-card p { font-size: 0.9rem; color: var(--muted); }

/* ADVERTISING COMPLIANCE */
.compliance-section { background: var(--primary); color: #fff; }
.compliance-section .section-title { color: #fff; }
.compliance-section .section-sub { color: rgba(255,255,255,0.7); }
.compliance-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.compliance-list li {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.compliance-list li::before {
  content: '✓';
  color: var(--accent2);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CONTACT */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.contact-card {
  background: var(--light);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--border);
}
.contact-card h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 8px; }
.contact-card a { font-size: 1rem; font-weight: 600; color: var(--accent); }
.contact-card p { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }

/* FOOTER */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.6);
  padding: 40px 24px 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-brand h2 { color: #fff; font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.footer-brand h2 span { color: var(--accent); }
.footer-brand p { font-size: 0.85rem; max-width: 300px; }
.footer-links h4 { color: #fff; font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-links a:hover { color: var(--accent2); text-decoration: none; }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  line-height: 1.7;
}
.footer-disclaimer p + p { margin-top: 8px; }

/* PAGE HEADER (inner pages) */
.page-header {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  color: #fff;
  padding: 60px 24px 50px;
}
.page-header-inner { max-width: var(--max-w); margin: 0 auto; }
.page-header h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* CONTENT PAGE */
.content-page { background: #fff; padding: 60px 24px; }
.content-page .content-inner { max-width: 820px; margin: 0 auto; }
.content-page h2 { font-size: 1.35rem; font-weight: 800; color: var(--primary); margin: 36px 0 10px; }
.content-page h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin: 24px 0 8px; }
.content-page p { font-size: 0.95rem; color: var(--text); margin-bottom: 14px; }
.content-page ul { margin: 0 0 14px 20px; }
.content-page ul li { font-size: 0.95rem; color: var(--text); margin-bottom: 6px; }
.content-page .updated { font-size: 0.85rem; color: var(--muted); margin-bottom: 32px; }

/* DATA DELETION FORM */
.deletion-form {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin-top: 24px;
  max-width: 560px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.btn:hover { background: #c73652; text-decoration: none; }

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 1.8rem; }
  .footer-top { flex-direction: column; }
}
