/* BravoraSocialStudio.games — Clubillion Vegas Casino Slots promo */
:root {
  --bg-deep: #0a0e1a;
  --bg-panel: #12182a;
  --bg-elevated: #1a2238;
  --accent: #ff2d6a;
  --accent-soft: rgba(255, 45, 106, 0.15);
  --cyan: #00e5d4;
  --cyan-dim: rgba(0, 229, 212, 0.12);
  --text: #e8ecf4;
  --text-muted: #8b95b0;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% -20%, rgba(255, 45, 106, 0.18), transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0, 229, 212, 0.1), transparent 45%),
    linear-gradient(180deg, #0a0e1a 0%, #0d1322 100%);
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #7ff5eb;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Contain-only media blocks */
.media-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.media-frame--tall {
  aspect-ratio: 4 / 3;
  min-height: 140px;
}

.media-frame--wide {
  aspect-ratio: 16 / 9;
  min-height: 120px;
}

.media-frame--square {
  aspect-ratio: 1;
  min-height: 100px;
}

.media-frame--banner {
  aspect-ratio: 21 / 9;
  min-height: 80px;
}

.site-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10, 14, 26, 0.85);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  justify-content: flex-end;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.35rem 0;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--text);
}

/* Buttons */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #c41e5c 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(255, 45, 106, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 45, 106, 0.45);
  color: #fff;
}

.btn-play__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-play__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-ghost {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* Hero & sections */
.hero {
  padding: 2.5rem 0 2rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 52ch;
}

.section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 60ch;
}

/* Game intro blocks */
.intro-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.intro-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--accent-soft);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.intro-card h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.intro-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.intro-card p + p {
  margin-top: 0.75rem;
}

/* Video */
.video-shell {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16 / 9;
  max-width: 100%;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Screenshot grid */
.shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .shots {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shots .media-frame {
  border-radius: var(--radius-sm);
}

/* Feature strip with alternating images */
.feature-strip {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .feature-strip {
    grid-template-columns: 140px 1fr;
    align-items: center;
  }

  .feature-strip:nth-child(even) {
    grid-template-columns: 1fr 140px;
  }

  .feature-strip:nth-child(even) .feature-strip__img {
    order: 2;
  }
}

.feature-strip__img .media-frame {
  min-height: 120px;
}

.feature-strip__text h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.feature-strip__text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA row */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-panel) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 2rem;
}

.cta-row p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-brand .brand-logo {
  width: 48px;
  height: 48px;
}

.footer-brand strong {
  font-family: var(--font-display);
  display: block;
  margin-bottom: 0.35rem;
}

.footer-brand span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Inner pages */
.page-hero {
  padding: 2rem 0 1rem;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.legal-block {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
}

.legal-block h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 1.25rem 0 0.5rem;
}

.legal-block h2:first-child {
  margin-top: 0;
}

.legal-block p,
.legal-block li {
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.legal-block ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}

.page-cta {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Age gate */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(5, 8, 18, 0.92);
  backdrop-filter: blur(8px);
}

.age-overlay[hidden] {
  display: none !important;
}

.age-card {
  max-width: 420px;
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.age-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.age-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.age-actions .btn-play {
  justify-content: center;
  width: 100%;
}

.age-actions .btn-ghost {
  text-align: center;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
}

body.age-locked {
  overflow: hidden;
}
