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

:root {
  --primary: #6c2bd9;
  --primary-dark: #4a1a9e;
  --accent: #f4d35e;
  --accent2: #ff6b35;
  --bg-dark: #0d0620;
  --bg-mid: #1a0533;
  --bg-card: #1e0a3c;
  --text-light: #f0e6ff;
  --text-muted: #a98fd4;
  --white: #ffffff;
  --success: #1a936f;
  --danger: #c3423f;
  --border: rgba(108,43,217,0.35);
  --radius: 12px;
  --shadow: 0 8px 32px rgba(108,43,217,0.25);
}

html { scroll-behavior: smooth; }

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

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

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

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

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(26,5,51,0.97);
  border-top: 2px solid var(--primary);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  backdrop-filter: blur(8px);
}
#cookie-banner p { font-size: 0.9rem; color: var(--text-muted); flex: 1; min-width: 220px; }
#cookie-banner p a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie-accept, .btn-cookie-decline {
  padding: 8px 20px; border-radius: 6px; border: none; cursor: pointer;
  font-size: 0.85rem; font-weight: 600; transition: all 0.2s;
}
.btn-cookie-accept { background: var(--primary); color: #fff; }
.btn-cookie-accept:hover { background: var(--primary-dark); }
.btn-cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-cookie-decline:hover { color: var(--white); border-color: var(--primary); }

/* ===== AGE GATE POPUP ===== */
#age-gate {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.age-gate-box {
  background: var(--bg-mid);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px; width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(108,43,217,0.5);
}
.age-gate-box .age-icon { font-size: 3.5rem; margin-bottom: 16px; }
.age-gate-box h2 { font-size: 2rem; color: var(--accent); margin-bottom: 10px; }
.age-gate-box p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.95rem; }
.age-gate-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes, .btn-age-no {
  padding: 14px 36px; border-radius: 50px; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 700; transition: all 0.25s;
}
.btn-age-yes { background: linear-gradient(135deg, var(--primary), var(--accent2)); color: #fff; }
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108,43,217,0.5); }
.btn-age-no { background: transparent; color: var(--text-muted); border: 2px solid var(--border); }
.btn-age-no:hover { border-color: var(--danger); color: var(--danger); }

/* ===== HEADER / NAV ===== */
header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(13,6,32,0.95);
  border-bottom: 1px solid var(--border);
  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.4rem; font-weight: 800; color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.logo-icon { width: 36px; height: 36px; }

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  padding: 8px 16px; border-radius: 8px; color: var(--text-muted);
  font-size: 0.9rem; font-weight: 500; transition: all 0.2s;
}
nav a:hover, nav a.active { background: rgba(108,43,217,0.2); color: var(--white); }

.nav-cta {
  background: var(--primary) !important; color: #fff !important;
  padding: 8px 20px !important; border-radius: 50px !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-light); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  min-height: 90vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero-banner.jpg') center/cover no-repeat;
  filter: brightness(0.35);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,6,32,0.8) 0%, rgba(108,43,217,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 60px 20px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(244,211,94,0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: #fff; padding: 15px 36px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: all 0.25s; text-decoration: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(108,43,217,0.5); color: #fff; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 34px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.3); cursor: pointer;
  transition: all 0.25s; text-decoration: none;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ===== SECTION TITLES ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(108,43,217,0.2); border: 1px solid var(--primary);
  color: var(--primary); padding: 4px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ===== GAMES SECTION ===== */
.games-section { padding: 100px 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: all 0.3s;
  cursor: pointer;
}
.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.game-card-img { position: relative; height: 200px; overflow: hidden; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.game-card:hover .game-card-img img { transform: scale(1.06); }
.game-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}
.game-card-body { padding: 22px; }
.game-card-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.game-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }
.btn-play {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer;
  transition: all 0.2s; text-decoration: none;
}
.btn-play:hover { background: var(--primary-dark); color: #fff; }

/* ===== FEATURES ===== */
.features-section { padding: 80px 0; background: var(--bg-mid); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
  transition: all 0.3s;
}
.feature-card:hover { border-color: var(--primary); background: rgba(108,43,217,0.1); }
.feature-icon { font-size: 2.5rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== VENUES ===== */
.venues-section { padding: 100px 0; }
.venues-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
}
.venue-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.venue-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.venue-card .venue-addr { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 10px; }
.venue-badge {
  display: inline-block;
  background: rgba(26,147,111,0.2); border: 1px solid var(--success);
  color: var(--success); padding: 3px 10px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
}

/* ===== ABOUT SECTION ===== */
.about-section { padding: 100px 0; background: var(--bg-mid); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 14px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 32px;
}
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--bg-dark));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-inner { text-align: center; max-width: 580px; margin: 0 auto; }
.newsletter-inner h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.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: 240px;
  padding: 14px 20px; border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border); color: var(--white);
  font-size: 0.95rem; outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--primary); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }
.newsletter-form button {
  padding: 14px 32px; border-radius: 50px;
  background: var(--accent); color: var(--bg-dark);
  font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  transition: all 0.2s;
}
.newsletter-form button:hover { background: var(--accent2); color: #fff; }
.newsletter-success { display: none; color: var(--success); font-weight: 600; margin-top: 12px; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.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.88rem; margin-top: 12px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.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.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.82rem; }
.footer-links a:hover { color: var(--accent); }
.responsible-gaming {
  background: rgba(195,66,63,0.1);
  border: 1px solid rgba(195,66,63,0.3);
  border-radius: 8px; padding: 12px 16px;
  font-size: 0.8rem; color: var(--text-muted);
  margin-top: 20px; text-align: center;
}

/* ===== GAME PAGES ===== */
.game-page { padding: 60px 0 100px; }
.game-page-header { text-align: center; margin-bottom: 48px; }
.game-page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); }
.game-page-header p { color: var(--text-muted); margin-top: 10px; }
.game-arena {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  max-width: 800px; margin: 0 auto;
  box-shadow: var(--shadow);
}

/* Wheel of Fortune */
#wheel-canvas-wrap { position: relative; display: flex; justify-content: center; margin-bottom: 30px; }
#wheel-canvas { border-radius: 50%; box-shadow: 0 0 40px rgba(108,43,217,0.6); }
#wheel-pointer {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 30px solid var(--accent);
  filter: drop-shadow(0 2px 6px rgba(244,211,94,0.8));
  z-index: 10;
}
#wheel-result {
  text-align: center; font-size: 1.3rem; font-weight: 700;
  color: var(--accent); min-height: 36px; margin-bottom: 20px;
}
#btn-spin {
  display: block; margin: 0 auto;
  padding: 16px 48px; border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: #fff; font-size: 1.1rem; font-weight: 800;
  border: none; cursor: pointer; transition: all 0.25s;
  letter-spacing: 1px;
}
#btn-spin:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 8px 24px rgba(108,43,217,0.5); }
#btn-spin:disabled { opacity: 0.5; cursor: not-allowed; }

/* Slot Machine */
.slot-machine { text-align: center; }
.slot-reels {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 28px;
}
.reel {
  width: 100px; height: 120px;
  background: var(--bg-dark);
  border: 3px solid var(--primary);
  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-inner { transition: transform 0.1s; }
#slot-result { font-size: 1.2rem; font-weight: 700; color: var(--accent); min-height: 32px; margin-bottom: 20px; }
#btn-slot {
  padding: 16px 48px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent2), #ff9f43);
  color: #fff; font-size: 1.1rem; font-weight: 800;
  border: none; cursor: pointer; transition: all 0.25s;
}
#btn-slot:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 8px 24px rgba(255,107,53,0.5); }
#btn-slot:disabled { opacity: 0.5; cursor: not-allowed; }
.slot-tokens { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 16px; }
.slot-tokens span { color: var(--accent); font-weight: 700; }

/* Coin Flip */
.coin-game { text-align: center; }
.coin-wrap { display: flex; justify-content: center; margin-bottom: 30px; }
.coin {
  width: 140px; height: 140px; position: relative;
  transform-style: preserve-3d; transition: transform 0.1s;
}
.coin-face, .coin-back {
  position: absolute; inset: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; backface-visibility: hidden;
}
.coin-face { background: radial-gradient(circle, #f4d35e, #e0a800); box-shadow: 0 0 30px rgba(244,211,94,0.6); }
.coin-back { background: radial-gradient(circle, #c0c0c0, #888); transform: rotateY(180deg); }
.coin-choices { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.btn-coin-choice {
  padding: 12px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: all 0.2s; border: 2px solid;
}
.btn-coin-heads { background: rgba(244,211,94,0.15); border-color: var(--accent); color: var(--accent); }
.btn-coin-heads:hover, .btn-coin-heads.active { background: var(--accent); color: var(--bg-dark); }
.btn-coin-tails { background: rgba(192,192,192,0.1); border-color: #aaa; color: #ccc; }
.btn-coin-tails:hover, .btn-coin-tails.active { background: #aaa; color: var(--bg-dark); }
#coin-result { font-size: 1.2rem; font-weight: 700; color: var(--accent); min-height: 32px; margin-bottom: 20px; }
.coin-score { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.coin-score span { color: var(--accent); font-weight: 700; }
#btn-flip {
  padding: 16px 48px; border-radius: 50px;
  background: linear-gradient(135deg, var(--success), #2dc99a);
  color: #fff; font-size: 1.1rem; font-weight: 800;
  border: none; cursor: pointer; transition: all 0.25s;
}
#btn-flip:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 8px 24px rgba(26,147,111,0.5); }
#btn-flip:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; }
.contact-details { list-style: none; }
.contact-details li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.contact-details .ci-icon { font-size: 1.3rem; }
.contact-details .ci-text strong { display: block; color: var(--white); font-size: 0.9rem; }
.contact-details .ci-text span { color: var(--text-muted); font-size: 0.85rem; }

.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
}
.contact-form-box h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 7px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--white); font-size: 0.95rem; outline: none;
  transition: border-color 0.2s; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-card); }
.form-submit {
  width: 100%; padding: 14px; border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: #fff; font-size: 1rem; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.25s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,43,217,0.4); }
#form-success {
  display: none; background: rgba(26,147,111,0.15);
  border: 1px solid var(--success); border-radius: 8px;
  padding: 14px 18px; color: var(--success);
  font-weight: 600; margin-top: 16px; text-align: center;
}

/* ===== POLICY PAGES ===== */
.policy-page { padding: 80px 0; max-width: 860px; margin: 0 auto; }
.policy-page h1 { font-size: 2.2rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.policy-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 40px; }
.policy-page h2 { font-size: 1.3rem; font-weight: 700; color: var(--accent); margin: 32px 0 12px; }
.policy-page p, .policy-page li { color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.policy-page ul, .policy-page ol { padding-left: 22px; margin-bottom: 16px; }
.policy-page a { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  nav { display: none; flex-direction: column; position: absolute; top: 65px; left: 0; right: 0; background: var(--bg-dark); padding: 16px; border-bottom: 1px solid var(--border); }
  nav.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
  .game-arena { padding: 24px 16px; }
  .reel { width: 80px; height: 100px; font-size: 2.8rem; }
}
@media (max-width: 480px) {
  .reel { width: 68px; height: 88px; font-size: 2.2rem; }
  .slot-reels { gap: 8px; }
}
