@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --ac-emerald: #0b2e2a;
  --ac-emerald-deep: #071c1a;
  --ac-emerald-mid: #14524b;
  --ac-gold: #c4a574;
  --ac-gold-soft: #e2d0b0;
  --ac-mist: #eef1f3;
  --ac-mist-dark: #d9dee3;
  --ac-charcoal: #1a1d21;
  --ac-slate: #4a5259;
  --ac-white: #ffffff;
  --ac-overlay: rgba(7, 28, 26, 0.72);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --shadow-soft: 0 18px 40px rgba(7, 28, 26, 0.12);
  --radius: 0;
  --transition: 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ac-charcoal);
  background: var(--ac-mist);
  line-height: 1.7;
  overflow-x: hidden;
}

body.modal-open-custom {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
.display-font {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.section-pad {
  padding: 5.5rem 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ac-gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: var(--ac-emerald);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--ac-slate);
  max-width: 36rem;
}

.btn-ac {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  background: var(--ac-gold);
  color: var(--ac-emerald-deep);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-ac:hover {
  background: var(--ac-gold-soft);
  color: var(--ac-emerald-deep);
  transform: translateY(-2px);
}

.btn-ac-outline {
  background: transparent;
  border-color: var(--ac-gold);
  color: var(--ac-gold);
}

.btn-ac-outline:hover {
  background: var(--ac-gold);
  color: var(--ac-emerald-deep);
}

.btn-ac-dark {
  background: var(--ac-emerald);
  color: var(--ac-white);
}

.btn-ac-dark:hover {
  background: var(--ac-emerald-mid);
  color: var(--ac-white);
}

.btn-ac-ghost {
  background: transparent;
  border-color: var(--ac-mist-dark);
  color: var(--ac-charcoal);
}

.btn-ac-ghost:hover {
  border-color: var(--ac-emerald);
  color: var(--ac-emerald);
}

.topbar {
  background: var(--ac-emerald-deep);
  color: var(--ac-gold-soft);
  font-size: 0.82rem;
  text-align: center;
  padding: 0.55rem 1rem;
  letter-spacing: 0.03em;
}

.topbar i {
  color: var(--ac-gold);
  margin-right: 0.4rem;
}

.site-navbar {
  background: var(--ac-white);
  border-bottom: 1px solid var(--ac-mist-dark);
  padding: 0.9rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ac-emerald);
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  border: 1.5px solid var(--ac-gold);
  display: grid;
  place-items: center;
  color: var(--ac-gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ac-slate);
  font-weight: 500;
}

.nav-toggle {
  border: 1px solid var(--ac-mist-dark);
  background: transparent;
  width: 2.6rem;
  height: 2.6rem;
  display: none;
  place-items: center;
  color: var(--ac-emerald);
  font-size: 1.15rem;
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--ac-gold);
  outline-offset: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ac-slate);
  position: relative;
  padding: 0.2rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 1px;
  background: var(--ac-gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ac-emerald);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--ac-white);
  background: var(--ac-emerald-deep) center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 28, 26, 0.88) 0%, rgba(7, 28, 26, 0.55) 48%, rgba(11, 46, 42, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  padding: 5rem 0;
  animation: fadeUp 1s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 700;
  color: var(--ac-white);
  margin-bottom: 0.75rem;
}

.hero-brand span {
  color: var(--ac-gold);
}

.hero-title {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 400;
  color: var(--ac-gold-soft);
  margin-bottom: 1.1rem;
  font-style: italic;
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ac-gold-soft);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: floatY 2.4s ease-in-out infinite;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 32rem;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.about-visual::after {
  content: '';
  position: absolute;
  width: 55%;
  height: 55%;
  border: 1px solid var(--ac-gold);
  right: -1rem;
  bottom: -1rem;
  z-index: -1;
}

.about-points {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

.about-point {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.about-point i {
  color: var(--ac-gold);
  font-size: 1.15rem;
  margin-top: 0.2rem;
}

.about-point strong {
  display: block;
  color: var(--ac-emerald);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.about-point p {
  margin: 0;
  color: var(--ac-slate);
  font-size: 0.95rem;
}

.menu-section {
  background: var(--ac-white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.menu-card {
  background: var(--ac-mist);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.menu-card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.menu-card-body {
  padding: 1.4rem 1.35rem 1.6rem;
}

.menu-card h3 {
  font-size: 1.45rem;
  color: var(--ac-emerald);
  margin-bottom: 0.5rem;
}

.menu-card p {
  color: var(--ac-slate);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.menu-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ac-gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.casino-section {
  background: linear-gradient(160deg, var(--ac-emerald-deep) 0%, var(--ac-emerald) 55%, #0f3f39 100%);
  color: var(--ac-white);
  position: relative;
  overflow: hidden;
}

.casino-section::before {
  content: '';
  position: absolute;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(196, 165, 116, 0.18);
  border-radius: 50%;
  top: -8rem;
  right: -6rem;
}

.casino-section .section-title {
  color: var(--ac-white);
}

.casino-section .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.casino-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
}

.casino-layout img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.feature-list {
  display: grid;
  gap: 1.15rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(196, 165, 116, 0.22);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--ac-gold);
  display: grid;
  place-items: center;
  color: var(--ac-gold);
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.25rem;
  color: var(--ac-gold-soft);
  margin-bottom: 0.25rem;
}

.feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.game-tile {
  background: var(--ac-white);
  padding: 1.7rem 1.3rem;
  border-top: 2px solid var(--ac-gold);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
  min-height: 100%;
}

.game-tile:hover {
  transform: translateY(-5px);
}

.game-tile i {
  font-size: 1.6rem;
  color: var(--ac-emerald-mid);
  margin-bottom: 1rem;
}

.game-tile h3 {
  font-size: 1.3rem;
  color: var(--ac-emerald);
  margin-bottom: 0.5rem;
}

.game-tile p {
  margin: 0;
  color: var(--ac-slate);
  font-size: 0.92rem;
}

.games-visual {
  margin-top: 2.5rem;
}

.games-visual img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.events-section {
  background: var(--ac-white);
}

.events-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.event-main img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
}

.event-main-body {
  padding: 1.5rem 0 0;
}

.event-main-body h3 {
  font-size: 1.8rem;
  color: var(--ac-emerald);
  margin-bottom: 0.6rem;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event-item {
  background: var(--ac-mist);
  padding: 1.35rem 1.4rem;
  border-left: 3px solid var(--ac-gold);
  transition: background var(--transition);
}

.event-item:hover {
  background: #e6eaee;
}

.event-item h4 {
  font-size: 1.25rem;
  color: var(--ac-emerald);
  margin-bottom: 0.35rem;
}

.event-item p {
  margin: 0;
  color: var(--ac-slate);
  font-size: 0.92rem;
}

.event-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac-gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact-section {
  background: linear-gradient(135deg, var(--ac-mist) 0%, #e4e9ec 100%);
}

.contact-panel {
  background: var(--ac-white);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.contact-panel h2 {
  color: var(--ac-emerald);
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.contact-panel p {
  color: var(--ac-slate);
  margin-bottom: 1.2rem;
}

.contact-highlights {
  display: grid;
  gap: 1rem;
}

.contact-highlight {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-highlight i {
  color: var(--ac-gold);
  margin-top: 0.25rem;
}

.contact-highlight strong {
  display: block;
  color: var(--ac-emerald);
}

.contact-highlight span {
  color: var(--ac-slate);
  font-size: 0.95rem;
}

.disclaimer-strip {
  background: var(--ac-emerald-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 2.2rem 0;
  font-size: 0.92rem;
}

.disclaimer-strip h3 {
  color: var(--ac-gold);
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.site-footer {
  background: var(--ac-charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-lockup {
  color: var(--ac-white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 22rem;
}

.footer-col h4 {
  color: var(--ac-gold);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a:hover {
  color: var(--ac-gold-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.overlay-layer {
  position: fixed;
  inset: 0;
  background: rgba(7, 28, 26, 0.78);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.overlay-layer.active {
  display: flex;
}

.modal-card {
  background: var(--ac-white);
  width: min(100%, 28rem);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-soft);
  animation: fadeUp 0.4s ease both;
}

.modal-card h2 {
  font-size: 1.8rem;
  color: var(--ac-emerald);
  margin-bottom: 0.7rem;
}

.modal-card p {
  color: var(--ac-slate);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.age-restricted {
  display: none;
  text-align: center;
}

.age-restricted.active {
  display: block;
}

.age-gate.active .age-prompt {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1900;
  background: var(--ac-charcoal);
  color: rgba(255, 255, 255, 0.88);
  padding: 1.2rem 1.4rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
  max-width: 56rem;
  margin: 0 auto;
}

.cookie-banner.active {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: var(--ac-gold);
  text-decoration: underline;
}

.policy-hero {
  background: linear-gradient(135deg, var(--ac-emerald-deep), var(--ac-emerald-mid));
  color: var(--ac-white);
  padding: 4rem 0 3rem;
}

.policy-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.policy-hero p {
  color: var(--ac-gold-soft);
  margin: 0;
}

.policy-content {
  background: var(--ac-white);
  padding: 3.5rem 0 4.5rem;
}

.policy-content h2 {
  font-size: 1.55rem;
  color: var(--ac-emerald);
  margin: 2rem 0 0.7rem;
}

.policy-content p,
.policy-content li {
  color: var(--ac-slate);
  margin-bottom: 0.85rem;
}

.policy-content ul {
  padding-left: 1.1rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -8px);
  }
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ac-white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    border-bottom: 1px solid var(--ac-mist-dark);
    box-shadow: var(--shadow-soft);
    z-index: 100;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--ac-mist);
  }

  .nav-links a::after {
    display: none;
  }

  .site-navbar .container {
    position: relative;
  }

  .about-grid,
  .casino-layout,
  .events-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-visual img,
  .casino-layout img,
  .event-main img {
    height: 22rem;
  }

  .about-visual::after {
    display: none;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 3.8rem 0;
  }

  .menu-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 3.5rem 0;
  }

  .contact-panel {
    padding: 1.6rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn-ac {
    width: 100%;
    justify-content: center;
  }
}
