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

:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --accent: #f0c040;
  --accent2: #e74c3c;
  --bg-dark: #0d0720;
  --bg-card: #1a0f35;
  --bg-card2: #221545;
  --text: #f0eaff;
  --text-muted: #a89bc8;
  --border: #3d2a6e;
  --radius: 12px;
  --shadow: 0 4px 32px rgba(124,58,237,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: #fff; }

img { max-width: 100%; display: block; }

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

/* ===== HEADER / NAV ===== */
header {
  background: rgba(13,7,32,0.97);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.logo span { color: var(--primary); }

nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
}

nav ul li a {
  color: var(--text);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  font-size: 0.95rem;
}

nav ul li a:hover,
nav ul li a.active {
  background: var(--primary);
  color: #fff;
}

.nav-cta {
  background: var(--accent) !important;
  color: #1a0a2e !important;
  font-weight: 800 !important;
}

.nav-cta:hover { background: #e0b030 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px 20px;
  margin: 0 auto 0 0;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff;
}

.hero-content h1 .highlight { color: var(--accent); }

.hero-content p {
  font-size: 1.15rem;
  color: #d4c8f0;
  margin-bottom: 32px;
  max-width: 560px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover { background: var(--primary-dark); color: #fff; }

.btn-accent {
  background: var(--accent);
  color: #1a0a2e;
}

.btn-accent:hover { background: #e0b030; color: #1a0a2e; }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover { background: var(--accent); color: #1a0a2e; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-title .line {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ===== GAMES SECTION ===== */
.games-section { padding: 80px 0; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}

.game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(124,58,237,0.35); }

.game-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card-body { padding: 20px; }

.game-card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.game-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 80px 0;
  background: var(--bg-card);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.feature-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}

.feature-item:hover { transform: translateY(-3px); }

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.feature-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.feature-item p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1060 100%);
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.newsletter-box p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input:focus { border-color: var(--primary); }

.newsletter-form input::placeholder { color: var(--text-muted); }

/* ===== FOOTER ===== */
footer {
  background: #070412;
  border-top: 2px solid var(--border);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== 18+ POPUP ===== */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,4,18,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.age-popup {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(240,192,64,0.25);
}

.age-popup .age-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a0a2e;
  font-size: 2.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(240,192,64,0.4);
}

.age-popup h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.age-popup p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.age-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.age-btns .btn { min-width: 140px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 2px solid var(--border);
  padding: 18px 24px;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}

.cookie-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
  min-width: 200px;
}

.cookie-banner p a { color: var(--accent); }

.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== GAME PAGES ===== */
.game-page { padding: 60px 0 80px; }

.game-page-header {
  text-align: center;
  margin-bottom: 48px;
}

.game-page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 10px;
}

.game-page-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== WHEEL GAME ===== */
.wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.wheel-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  max-width: 90vw;
  max-height: 90vw;
}

#wheelCanvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(124,58,237,0.5);
}

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 36px solid var(--accent);
  filter: drop-shadow(0 2px 6px rgba(240,192,64,0.6));
  z-index: 10;
}

.wheel-result {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  text-align: center;
  min-width: 280px;
}

.wheel-result h3 {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.wheel-result .result-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  min-height: 40px;
}

/* ===== SLOTS GAME ===== */
.slots-container {
  max-width: 560px;
  margin: 0 auto;
}

.slots-machine {
  background: linear-gradient(145deg, #1a0a2e, #2d1060);
  border: 3px solid var(--accent);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 0 50px rgba(240,192,64,0.2), inset 0 0 30px rgba(0,0,0,0.4);
}

.slots-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.reel {
  width: 110px;
  height: 110px;
  background: #0d0720;
  border: 3px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.reel.spinning {
  animation: reelSpin 0.1s linear infinite;
}

@keyframes reelSpin {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.slots-status {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  min-height: 36px;
  margin-bottom: 20px;
}

.slots-controls { text-align: center; }

.slots-score {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.score-item { text-align: center; }
.score-item .label { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.score-item .value { color: var(--accent); font-size: 1.3rem; font-weight: 800; }

/* ===== TOKEN FLIP GAME ===== */
.token-container {
  max-width: 500px;
  margin: 0 auto;
}

.token-machine {
  background: linear-gradient(145deg, #1a0a2e, #2d1060);
  border: 3px solid var(--primary);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 0 50px rgba(124,58,237,0.2);
}

.token-coin {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0c040, #e0a020);
  border: 6px solid #c8900a;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 6px 24px rgba(240,192,64,0.4), inset 0 -4px 12px rgba(0,0,0,0.2);
  transition: transform 0.1s;
  cursor: pointer;
  user-select: none;
}

.token-coin.flipping {
  animation: coinFlip 0.6s ease-in-out;
}

@keyframes coinFlip {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(90deg) scale(0.8); }
  100% { transform: rotateY(0deg); }
}

.token-choice {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.choice-btn {
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--bg-card2);
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.choice-btn:hover { border-color: var(--primary); background: var(--primary); color: #fff; }
.choice-btn.selected { border-color: var(--accent); background: var(--accent); color: #1a0a2e; }

.token-status {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  min-height: 36px;
  margin-bottom: 20px;
}

.token-score {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.token-score .score-item .value { color: var(--accent); font-size: 1.3rem; font-weight: 800; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/about-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.about-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.about-hero-content p { color: #d4c8f0; font-size: 1.1rem; }

.about-section { padding: 80px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ===== VENUES ===== */
.venues-section { padding: 80px 0; background: var(--bg-card); }

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.venue-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s;
}

.venue-card:hover { transform: translateY(-3px); }

.venue-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.venue-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

.venue-card .venue-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.venue-card .venue-address span { color: var(--text-muted); font-size: 0.88rem; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card2);
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--bg-card2); }

.form-success {
  display: none;
  background: rgba(46,204,113,0.15);
  border: 2px solid #2ecc71;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #2ecc71;
  font-weight: 700;
  margin-top: 16px;
}

/* ===== POLICY PAGES ===== */
.policy-page { padding: 60px 0 80px; }

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}

.policy-content h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}

.policy-content .last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.policy-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
}

.policy-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-content ul {
  color: var(--text-muted);
  padding-left: 24px;
  margin-bottom: 14px;
  line-height: 1.8;
}

.policy-content ul li { margin-bottom: 6px; }

.policy-content a { color: var(--accent); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  background: var(--bg-card);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-inner a { color: var(--text-muted); }
.breadcrumb-inner a:hover { color: var(--accent); }
.breadcrumb-inner .sep { color: var(--border); }
.breadcrumb-inner .current { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13,7,32,0.99);
    flex-direction: column;
    padding: 20px;
    border-bottom: 2px solid var(--border);
    gap: 4px;
  }
  nav ul.open { display: flex; }
  nav ul li a { display: block; padding: 12px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .policy-content { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 40px 16px; }
  .wheel-wrap { width: 300px; height: 300px; }
  .reel { width: 85px; height: 85px; font-size: 2.8rem; }
}

/* ===== MISC ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.hidden { display: none !important; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-new { background: var(--accent); color: #1a0a2e; }
.badge-hot { background: var(--accent2); color: #fff; }

.disclaimer {
  background: rgba(124,58,237,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 32px;
}

.page-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, #1a0a2e 0%, var(--bg-dark) 100%);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 10px;
}

.page-hero p { color: var(--text-muted); font-size: 1.05rem; }
