:root {
  --bg: #07101f;
  --bg-soft: #0c1a2e;
  --surface: #12243a;
  --surface-2: #183049;
  --line: rgba(201, 164, 92, 0.22);
  --text: #f3efe6;
  --muted: #9eb0c4;
  --gold: #c9a45c;
  --gold-soft: #e0c585;
  --teal: #1fb5a3;
  --teal-deep: #0f7d71;
  --danger: #c45c5c;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", sans-serif;
  --nav-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% -10%, rgba(31, 181, 163, 0.18), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(201, 164, 92, 0.16), transparent 36%),
    linear-gradient(180deg, #07101f 0%, #0a1526 48%, #07101f 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

body.age-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--teal);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(18, 36, 58, 0.55), rgba(12, 26, 46, 0.35));
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0 0 16px;
  color: var(--text);
}

.section-lead {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 42px;
  font-size: 1.05rem;
}

.text-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.btn-gold,
.btn-outline-gold,
.btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0.85rem 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a8843a);
  color: #1a1408;
  box-shadow: 0 10px 30px rgba(201, 164, 92, 0.28);
}

.btn-gold:hover {
  color: #1a1408;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  border-color: rgba(201, 164, 92, 0.55);
  color: var(--gold-soft);
}

.btn-outline-gold:hover {
  background: rgba(201, 164, 92, 0.12);
  color: var(--text);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #041512;
}

.btn-teal:hover {
  color: #041512;
  transform: translateY(-2px);
}

.topbar {
  background: #050c16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.84rem;
  padding: 10px 0;
  text-align: center;
}

.topbar i {
  color: var(--gold);
  margin-right: 8px;
}

.site-nav {
  position: relative;
  z-index: 1200;
  background: rgba(7, 16, 31, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.55rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand:hover {
  color: var(--text);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(31, 181, 163, 0.25), rgba(201, 164, 92, 0.2));
  border: 1px solid rgba(201, 164, 92, 0.35);
  color: var(--gold);
  font-size: 1.15rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-copy span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(201, 164, 92, 0.35);
  background: rgba(18, 36, 58, 0.8);
  color: var(--gold-soft);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 2;
  -webkit-appearance: none;
  appearance: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.35rem 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(7, 16, 31, 0.88) 12%, rgba(7, 16, 31, 0.55) 48%, rgba(7, 16, 31, 0.72) 100%),
    url("../images/hero.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 181, 163, 0.22), transparent 68%);
  pointer-events: none;
  animation: drift 10s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 110px 0 90px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  margin: 0 0 18px;
  color: var(--text);
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.hero-brand span {
  color: var(--gold);
}

.hero p {
  color: #d7e0ea;
  font-size: 1.12rem;
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.8s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.04);
}

.about-panel,
.feature-card,
.menu-card,
.game-card,
.event-card,
.contact-panel {
  background: linear-gradient(180deg, rgba(24, 48, 73, 0.72), rgba(12, 26, 46, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-panel {
  padding: 32px;
  height: 100%;
}

.feature-grid,
.menu-grid,
.games-grid,
.events-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 181, 163, 0.35);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(31, 181, 163, 0.12);
  color: var(--teal);
  border: 1px solid rgba(31, 181, 163, 0.25);
  font-size: 1.2rem;
}

.menu-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.menu-card {
  overflow: hidden;
}

.menu-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.menu-card-body {
  padding: 24px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item h4 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-item .price {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.casino-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.games-grid {
  grid-template-columns: repeat(3, 1fr);
}

.game-card {
  padding: 26px;
  text-align: left;
}

.game-card i {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.events-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.event-card {
  padding: 30px;
}

.event-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.event-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.event-list li:last-child {
  border-bottom: 0;
}

.event-date {
  min-width: 68px;
  height: 68px;
  border-radius: 14px;
  background: rgba(201, 164, 92, 0.12);
  border: 1px solid rgba(201, 164, 92, 0.28);
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.15;
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.78rem;
}

.event-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text);
}

.contact-panel {
  padding: 36px;
  text-align: center;
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.contact-point {
  padding: 22px;
  border-radius: 16px;
  background: rgba(7, 16, 31, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-point i {
  color: var(--teal);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.site-footer {
  background: #050c16;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-disclaimer {
  color: var(--muted);
  font-size: 0.9rem;
  background: rgba(18, 36, 58, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 22px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 8, 16, 0.82);
  backdrop-filter: blur(10px);
}

.overlay.active {
  display: flex;
}

.modal-card {
  width: min(460px, 100%);
  background: linear-gradient(180deg, #15283d, #0d1a2b);
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  animation: rise 0.45s var(--ease);
}

.modal-card i.lead-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.modal-card h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.modal-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-restricted {
  position: fixed;
  inset: 0;
  z-index: 1900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(196, 92, 92, 0.18), transparent 50%),
    #050c16;
  text-align: center;
}

.age-restricted.active {
  display: flex;
}

.age-restricted-inner {
  max-width: 520px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1800;
  display: none;
  width: auto;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(12, 26, 46, 0.96);
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.cookie-banner.active {
  display: block;
  animation: rise 0.4s var(--ease);
}

.cookie-banner p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-hero {
  padding: 90px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(18, 36, 58, 0.5), transparent);
}

.policy-content {
  padding: 50px 0 90px;
}

.policy-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content ul {
  padding-left: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-40px, -30px);
  }
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: inline-flex !important;
  }

  .site-nav .container {
    position: relative;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    z-index: 1300;
    width: 100%;
    margin: 0;
    background: rgba(7, 16, 31, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 18px;
    gap: 0;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .feature-grid,
  .games-grid,
  .contact-points,
  .footer-grid,
  .menu-grid,
  .casino-split,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 80px 0 70px;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 72px 0;
  }

  .about-panel,
  .event-card,
  .contact-panel {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
