/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #0e0b1a;
  color: #e8e0f5;
  line-height: 1.6;
  min-height: 100vh;
}
a { color: #c084fc; text-decoration: none; transition: color .2s; }
a:hover { color: #f0abfc; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --dark: #0e0b1a;
  --dark2: #1a1530;
  --dark3: #251e3e;
  --text: #e8e0f5;
  --text-muted: #9d8ec4;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(124,58,237,.35);
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: #1a1530ee;
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--purple);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .9rem;
}
#cookie-banner p { flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--gold); }
.cookie-btn {
  background: var(--purple); color: #fff;
  border: none; border-radius: 8px;
  padding: 8px 20px; cursor: pointer; font-size: .9rem;
  transition: background .2s;
}
.cookie-btn:hover { background: var(--purple-light); }
.cookie-btn.secondary { background: transparent; border: 1px solid var(--purple-light); }
.cookie-btn.secondary:hover { background: var(--dark3); }

/* ===== AGE GATE ===== */
#age-gate {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(14,11,26,.97);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; padding: 24px;
}
#age-gate .age-box {
  background: var(--dark2);
  border: 2px solid var(--purple);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
}
#age-gate h2 { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
#age-gate p { color: var(--text-muted); margin-bottom: 28px; font-size: 1rem; }
.age-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; border: none; border-radius: 10px;
  padding: 14px 36px; font-size: 1.1rem; cursor: pointer;
  font-weight: 700; transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(124,58,237,.5);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,.7); }
.btn-age-no {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--text-muted); border-radius: 10px;
  padding: 14px 36px; font-size: 1.1rem; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-age-no:hover { border-color: #ef4444; color: #ef4444; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(14,11,26,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,58,237,.3);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800; color: #fff;
  text-decoration: none;
}
.logo span { color: var(--gold); }
.logo-icon { font-size: 1.8rem; }
nav ul {
  display: flex; gap: 4px; align-items: center;
}
nav ul li a {
  color: var(--text-muted); font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: background .2s, color .2s;
  font-size: .95rem;
}
nav ul li a:hover, nav ul li a.active {
  background: var(--dark3); color: #fff;
}
.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--purple-light)) !important;
  color: #fff !important; padding: 8px 20px !important;
}
.nav-cta:hover { opacity: .9; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--text); border-radius: 2px; transition: .3s;
}
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--dark2); border-top: 1px solid var(--dark3);
  padding: 12px 24px 20px;
}
.mobile-nav a {
  display: block; padding: 10px 0;
  border-bottom: 1px solid var(--dark3);
  color: var(--text-muted); font-weight: 500;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: #fff; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  min-height: 580px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0e0b1a 0%, #1a0a3a 50%, #0e0b1a 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover; background-position: center;
  opacity: .25;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  max-width: 640px;
}
.hero-badge {
  display: inline-block;
  background: rgba(124,58,237,.25);
  border: 1px solid var(--purple);
  color: var(--purple-light); border-radius: 20px;
  padding: 4px 14px; font-size: .82rem; font-weight: 600;
  margin-bottom: 16px; letter-spacing: .05em;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.15;
  color: #fff; margin-bottom: 16px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 32px; max-width: 520px;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; border: none; border-radius: 12px;
  padding: 14px 32px; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(124,58,237,.5);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,.7); color: #fff; }
.btn-secondary {
  display: inline-block;
  background: transparent; color: var(--text);
  border: 2px solid var(--purple); border-radius: 12px;
  padding: 12px 28px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background .2s, color .2s;
  text-decoration: none; margin-left: 12px;
}
.btn-secondary:hover { background: var(--dark3); color: #fff; }

/* ===== SECTIONS ===== */
section { padding: 72px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; color: #fff; margin-bottom: 8px;
}
.section-title span { color: var(--gold); }
.section-sub {
  color: var(--text-muted); font-size: 1rem;
  margin-bottom: 48px; max-width: 560px;
}
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 2px; margin: 12px 0 20px;
}

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.game-card {
  background: var(--dark2);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124,58,237,.4);
  border-color: var(--purple);
}
.game-card img {
  width: 100%; height: 200px; object-fit: cover;
}
.game-card-body { padding: 20px; }
.game-card-body h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.game-card-body p { font-size: .88rem; color: var(--text-muted); margin-bottom: 16px; }
.tag {
  display: inline-block;
  background: rgba(124,58,237,.2); color: var(--purple-light);
  border-radius: 6px; padding: 2px 10px; font-size: .78rem; font-weight: 600;
  margin-right: 6px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--dark2);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color .2s;
}
.feature-card:hover { border-color: var(--purple); }
.feature-icon { font-size: 2.4rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-card p { font-size: .88rem; color: var(--text-muted); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-top: 1px solid rgba(124,58,237,.2);
  border-bottom: 1px solid rgba(124,58,237,.2);
}
.newsletter-inner {
  max-width: 600px; margin: 0 auto; text-align: center;
}
.newsletter-inner h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.newsletter-inner p { color: var(--text-muted); margin-bottom: 28px; }
.newsletter-form {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1; min-width: 220px;
  background: var(--dark); border: 1px solid rgba(124,58,237,.4);
  color: var(--text); border-radius: 10px;
  padding: 12px 16px; font-size: 1rem;
  outline: none; transition: border-color .2s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--purple); }
.newsletter-form button {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; border: none; border-radius: 10px;
  padding: 12px 28px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: transform .15s;
}
.newsletter-form button:hover { transform: translateY(-1px); }
.form-msg { margin-top: 12px; font-size: .9rem; min-height: 20px; }
.form-msg.success { color: #4ade80; }
.form-msg.error { color: #f87171; }

/* ===== FOOTER ===== */
footer {
  background: #080612;
  border-top: 1px solid rgba(124,58,237,.2);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 40px;
}
.footer-brand p { color: var(--text-muted); font-size: .88rem; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: .88rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(124,58,237,.15);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .82rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: #ef4444; color: #fff;
  border-radius: 50%; font-size: .75rem; font-weight: 800;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-bottom: 1px solid rgba(124,58,237,.2);
  padding: 60px 24px 40px;
  text-align: center;
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; }
.page-header h1 span { color: var(--gold); }
.page-header p { color: var(--text-muted); margin-top: 10px; font-size: 1rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-form-wrap {
  background: var(--dark2);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: var(--radius); padding: 36px;
}
.contact-form-wrap h2 { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .88rem; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--dark); border: 1px solid rgba(124,58,237,.35);
  color: var(--text); border-radius: 8px;
  padding: 11px 14px; font-size: .95rem; font-family: inherit;
  outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--purple);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark2); }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; border: none; border-radius: 10px;
  padding: 13px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,58,237,.5); }
.contact-info h2 { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 24px; }
.contact-item {
  display: flex; gap: 14px; margin-bottom: 20px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(124,58,237,.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-item-text h4 { font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.contact-item-text p { font-size: .88rem; color: var(--text-muted); }
.venue-card {
  background: var(--dark2);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: var(--radius); padding: 20px; margin-top: 24px;
}
.venue-card h3 { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.venue-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

/* ===== ABOUT PAGE ===== */
.about-hero-img {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 40px;
}
.about-text h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; margin-top: 40px;
}
.team-card {
  background: var(--dark2);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 14px;
}
.team-card h3 { font-size: 1rem; font-weight: 700; color: #fff; }
.team-card p { font-size: .82rem; color: var(--text-muted); margin-top: 4px; }

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 820px; margin: 0 auto;
  background: var(--dark2);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: var(--radius); padding: 48px;
}
.policy-content h2 { font-size: 1.3rem; font-weight: 700; color: var(--gold); margin: 28px 0 10px; }
.policy-content h3 { font-size: 1.05rem; font-weight: 600; color: #fff; margin: 20px 0 8px; }
.policy-content p { color: var(--text-muted); margin-bottom: 12px; font-size: .93rem; line-height: 1.7; }
.policy-content ul { padding-left: 20px; margin-bottom: 12px; }
.policy-content ul li { color: var(--text-muted); font-size: .93rem; margin-bottom: 6px; list-style: disc; }
.policy-content a { color: var(--gold); }
.policy-date { font-size: .82rem; color: var(--text-muted); margin-bottom: 28px; }

/* ===== GAMES PAGE ===== */
.game-section {
  background: var(--dark2);
  border: 1px solid rgba(124,58,237,.25);
  border-radius: 16px; padding: 36px;
  margin-bottom: 40px;
}
.game-section h2 {
  font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 6px;
}
.game-section p.game-desc { color: var(--text-muted); margin-bottom: 28px; }

/* ===== SLOT MACHINE ===== */
.slot-machine {
  background: #120d24;
  border: 3px solid var(--gold);
  border-radius: 20px; padding: 28px;
  max-width: 480px; margin: 0 auto;
  box-shadow: 0 0 40px rgba(245,158,11,.25);
}
.slot-title {
  text-align: center; font-size: 1.3rem; font-weight: 800;
  color: var(--gold); margin-bottom: 20px; letter-spacing: .05em;
}
.reels-container {
  display: flex; gap: 10px; justify-content: center;
  margin-bottom: 20px;
}
.reel {
  width: 90px; height: 90px;
  background: #0a0718;
  border: 2px solid rgba(245,158,11,.4);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; overflow: hidden; position: relative;
  transition: all .1s;
}
.reel.spinning { animation: reelSpin .1s linear infinite; }
@keyframes reelSpin {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.slot-info {
  text-align: center; margin-bottom: 16px;
  font-size: .9rem; color: var(--text-muted);
}
.slot-result {
  text-align: center; min-height: 28px;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 16px;
  color: var(--gold);
}
.slot-controls { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-spin {
  background: linear-gradient(135deg, #f59e0b, #fcd34d);
  color: #0e0b1a; border: none; border-radius: 10px;
  padding: 12px 32px; font-size: 1rem; font-weight: 800;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(245,158,11,.4);
}
.btn-spin:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.6); }
.btn-spin:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-max {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold); border-radius: 10px;
  padding: 12px 20px; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: background .2s;
}
.btn-max:hover { background: rgba(245,158,11,.1); }
.coins-display {
  text-align: center; margin-top: 14px;
  font-size: .95rem; color: var(--text-muted);
}
.coins-display strong { color: var(--gold); font-size: 1.1rem; }

/* ===== FORTUNE WHEEL ===== */
.wheel-wrapper {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.wheel-container {
  position: relative; width: 320px; height: 320px;
}
.wheel-pointer {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--gold);
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
#wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(124,58,237,.5), 0 0 0 6px var(--gold);
}
.wheel-result {
  text-align: center; font-size: 1.2rem; font-weight: 700;
  color: var(--gold); min-height: 32px;
}
.btn-spin-wheel {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; border: none; border-radius: 12px;
  padding: 14px 40px; font-size: 1.05rem; font-weight: 800;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(124,58,237,.5);
}
.btn-spin-wheel:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,.7); }
.btn-spin-wheel:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.wheel-coins {
  font-size: .9rem; color: var(--text-muted);
}
.wheel-coins strong { color: var(--gold); }

/* ===== COIN FLIP ===== */
.coin-flip-game {
  max-width: 400px; margin: 0 auto; text-align: center;
}
.coin-display {
  width: 120px; height: 120px; margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b45309);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  box-shadow: 0 0 30px rgba(245,158,11,.4);
  transition: transform .3s;
}
.coin-display.flipping { animation: coinFlip .6s ease-in-out; }
@keyframes coinFlip {
  0% { transform: rotateY(0); }
  50% { transform: rotateY(90deg) scale(.8); }
  100% { transform: rotateY(0); }
}
.coin-choices { display: flex; gap: 12px; justify-content: center; margin-bottom: 16px; }
.coin-choice-btn {
  background: var(--dark3); color: var(--text);
  border: 2px solid rgba(124,58,237,.3); border-radius: 10px;
  padding: 10px 24px; font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: border-color .2s, background .2s;
}
.coin-choice-btn:hover, .coin-choice-btn.selected {
  border-color: var(--purple); background: rgba(124,58,237,.2);
}
.btn-flip {
  background: linear-gradient(135deg, var(--gold), #d97706);
  color: #0e0b1a; border: none; border-radius: 10px;
  padding: 12px 32px; font-size: 1rem; font-weight: 800;
  cursor: pointer; transition: transform .15s;
}
.btn-flip:hover { transform: translateY(-2px); }
.btn-flip:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.coin-result {
  margin-top: 14px; font-size: 1.1rem; font-weight: 700;
  color: var(--gold); min-height: 28px;
}
.coin-score { font-size: .9rem; color: var(--text-muted); margin-top: 8px; }
.coin-score strong { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .policy-content { padding: 24px; }
  .game-section { padding: 20px; }
  .slot-machine { padding: 20px; }
  .reel { width: 76px; height: 76px; font-size: 2.2rem; }
  .wheel-container { width: 260px; height: 260px; }
  #wheel-canvas { width: 260px !important; height: 260px !important; }
}
@media (max-width: 480px) {
  .hero-content { padding: 48px 0; }
  .btn-secondary { margin-left: 0; margin-top: 10px; }
}
