@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --max-ink: #080b10;
  --max-ink-rise: #10141c;
  --max-ink-card: #161c26;
  --max-ink-nav: #0c1016;
  --max-ink-footer: #070a0e;
  --max-gold: #c9a12e;
  --max-gold-soft: #dfb243;
  --max-gold-pale: #e9cd7a;
  --max-gold-bit: #a17f22;
  --max-cream: #f4efe3;
  --max-white: #ffffff;
  --max-text-soft: #cbd2d8;
  --max-text-mute: #aab2b9;
  --max-border: rgba(255, 255, 255, 0.08);
  --max-border-gold: rgba(201, 161, 46, 0.45);
  --max-gold-grad: linear-gradient(135deg, #c9a12e 0%, #e2bd58 45%, #eed38b 100%);
  --max-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --max-shadow-gold: 0 12px 32px rgba(201, 161, 46, 0.25);
  --max-font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --max-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --max-radius-s: 8px;
  --max-radius-m: 18px;
  --max-radius-l: 28px;
  --max-transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--max-font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--max-text-soft);
  background-color: var(--max-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
  font-family: var(--max-font-head);
  color: var(--max-white);
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1, .display-1 {
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  font-weight: 700;
}

h2, .display-2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
}

h3, .display-3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.3rem, 1.8vw, 1.5rem);
  font-weight: 600;
}

h5 {
  font-size: 1.15rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  font-weight: 300;
  color: var(--max-text-soft);
}

a {
  color: var(--max-gold-soft);
  text-decoration: none;
  transition: var(--max-transition);
}

a:hover {
  color: var(--max-gold-pale);
}

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

section {
  position: relative;
}

.section-padding {
  padding: 8rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--max-gold-soft);
}

.section-overline::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: var(--max-gold-grad);
  display: inline-block;
}

.section-title {
  margin-top: 0.75rem;
  max-width: 42rem;
}

.section-lead {
  font-size: 1.06rem;
  color: var(--max-text-mute);
  max-width: 36rem;
}

.text-gold {
  color: var(--max-gold-soft) !important;
}

.fw-semi {
  font-weight: 600;
}

.bg-ink {
  background-color: var(--max-ink) !important;
}

.bg-ink-rise {
  background-color: var(--max-ink-rise) !important;
}

.bg-ink-card {
  background-color: var(--max-ink-card) !important;
}

.text-body-custom {
  color: var(--max-text-soft) !important;
}

.btn {
  font-family: var(--max-font-body);
  font-weight: 500;
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
  transition: var(--max-transition);
  letter-spacing: 0.02em;
}

.btn-gold {
  background: var(--max-gold-grad);
  color: var(--max-ink);
  border: 0;
  box-shadow: var(--max-shadow-gold);
}

.btn-gold:hover,
.btn-gold:focus {
  background: linear-gradient(135deg, #dfb243 0%, #eed38b 50%, #f2de9f 100%);
  color: var(--max-ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(201, 161, 46, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--max-gold-soft);
  border: 1px solid var(--max-border-gold);
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
  background: var(--max-gold);
  color: var(--max-ink);
  border-color: var(--max-gold);
  box-shadow: var(--max-shadow-gold);
}

.btn-white-outline {
  background: transparent;
  color: var(--max-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-white-outline:hover,
.btn-white-outline:focus {
  background: var(--max-white);
  color: var(--max-ink);
  border-color: var(--max-white);
}

.btn-lg {
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
}

.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
  outline: 2px solid var(--max-gold);
  outline-offset: 3px;
  box-shadow: none;
}

/* Navbar */
.navbar {
  padding: 0.9rem 0;
  background: transparent;
  transition: var(--max-transition);
}

.navbar-scrolled {
  background: rgba(12, 16, 22, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 0;
}

.navbar .navbar-brand {
  font-family: var(--max-font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--max-white);
  letter-spacing: 0.03em;
}

.navbar .navbar-brand img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.navbar .nav-link {
  color: var(--max-text-soft);
  font-weight: 500;
  font-size: 0.94rem;
  margin: 0 0.5rem;
  position: relative;
}

.navbar .nav-link:hover {
  color: var(--max-gold-soft);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: -2px;
  height: 1px;
  background: var(--max-gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.navbar .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--max-radius-s);
  color: var(--max-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 1.3rem;
}

.navbar-toggler:hover {
  border-color: var(--max-gold);
  color: var(--max-gold-soft);
}

.navbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--max-white);
  font-weight: 600;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition: var(--max-transition);
}

.navbar-phone:hover {
  border-color: var(--max-gold);
  color: var(--max-gold-soft);
}

/* Hero slider */
.hero-slider {
  min-height: 92vh;
}

.hero-slider .carousel-indicators {
  bottom: 2.5rem;
}

.hero-slider .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  transition: var(--max-transition);
}

.hero-slider .carousel-indicators .active {
  background: var(--max-gold);
  width: 60px;
}

.hero-slide {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
/*   background: linear-gradient(100deg, rgba(6, 8, 14, 0.9) 0%, rgba(6, 8, 14, 0.55) 50%, rgba(6, 8, 14, 0.25) 70%, rgba(6, 8, 14, 0.5) 100%); */
  z-index: 0;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--max-gold);
  padding: 0.45rem 1.2rem;
  border-radius: 0 999px 999px 0;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--max-gold-pale);
  margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  color: var(--max-white);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  max-width: 34rem;
  color: var(--max-text-soft);
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Cards */
.card-basic {
  background: var(--max-ink-card);
  border: 1px solid var(--max-border);
  border-radius: var(--max-radius-m);
  overflow: hidden;
  transition: var(--max-transition);
  height: 100%;
}

.card-basic:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 161, 46, 0.35);
  box-shadow: var(--max-shadow);
}

.card-basic .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background-color: var(--max-ink-rise);
}

.card-basic .card-img-top {
  height: 220px;
  width: 100%;
  display: block;
  object-fit: cover;
}

.card-basic .card-body {
  padding: 1.8rem;
}

.card-basic .card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--max-white);
}

.card-basic .card-text {
  color: var(--max-text-mute);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--max-gold-soft);
  border: 1px solid var(--max-border-gold);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.8rem;
  background: rgba(201, 161, 46, 0.08);
}

.feature-card {
  background: var(--max-ink-card);
  border: 1px solid var(--max-border);
  border-radius: var(--max-radius-m);
  padding: 2.2rem 1.8rem;
  transition: var(--max-transition);
  height: 100%;
}

.feature-card:hover {
  border-color: rgba(201, 161, 46, 0.4);
  box-shadow: var(--max-shadow-gold);
  transform: translateY(-6px);
}

.feature-card .feature-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 161, 46, 0.12);
  border: 1px solid rgba(201, 161, 46, 0.25);
  font-size: 1.5rem;
  color: var(--max-gold-soft);
  margin-bottom: 1.5rem;
}

/* Section-ish background image blocks */
.overlay-section {
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
}

.overlay-section .container {
  position: relative;
  z-index: 2;
}

.overlay-content-dark {
  background: rgba(6, 8, 14, 0.55);
  border-radius: var(--max-radius-l);
  padding: 3rem;
  backdrop-filter: blur(4px);
}

/* Gallery / photos */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--max-radius-m);
  overflow: hidden;
  min-height: 220px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  min-height: 220px;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 8, 14, 0.82) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-caption {
  color: var(--max-white);
  font-size: 0.95rem;
  font-weight: 500;
  transform: translateY(10px);
  transition: transform 0.4s;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Testimonials */
.testimonial-card {
  background: var(--max-ink-card);
  border-radius: var(--max-radius-m);
  padding: 2rem 1.8rem;
  height: 100%;
  border: 1px solid var(--max-border);
  position: relative;
}

.testimonial-card::before {
  content: "\201D";
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--max-gold);
  opacity: 0.4;
  line-height: 1;
}

.testimonial-card .rating i {
  color: var(--max-gold-soft);
  font-size: 0.9rem;
}

.testimonial-card .review {
  font-size: 1rem;
  color: var(--max-text-soft);
  margin-bottom: 1.4rem;
  padding-left: 0.8rem;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-card .testimonial-author .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--max-gold-grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--max-ink);
  font-size: 1rem;
}

/* Form */
.max-form,
.form-custom {
  background: var(--max-ink-card);
  border: 1px solid var(--max-border);
  border-radius: var(--max-radius-l);
  padding: 2.5rem;
}

.form-custom .form-control,
.form-custom textarea,
.form-custom select {
  background: var(--max-ink-rise);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--max-white);
  padding: 0.8rem 1rem;
  border-radius: var(--max-radius-s);
  font-size: 0.95rem;
}

.form-custom .form-control:focus {
  background: var(--max-ink-rise);
  border-color: var(--max-gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 161, 46, 0.15);
  color: var(--max-white);
}

.form-custom .form-control::placeholder {
  color: var(--max-text-mute);
  opacity: 0.8;
}

.form-custom label {
  color: var(--max-white);
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-custom .invalid-feedback {
  color: #f0928a;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-note {
  font-size: 0.82rem;
  color: var(--max-text-mute);
}

/* Accordion */
.max-accordion .accordion-item {
  background: var(--max-ink-card);
  border: 1px solid var(--max-border);
  border-radius: var(--max-radius-m) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.max-accordion .accordion-button {
  background: var(--max-ink-card);
  color: var(--max-white);
  font-weight: 600;
  padding: 1.2rem 1.4rem;
  box-shadow: none;
  border-radius: var(--max-radius-m) !important;
}

.max-accordion .accordion-button:not(.collapsed) {
  color: var(--max-gold-soft);
  background: var(--max-ink-card);
  box-shadow: none;
}

.max-accordion .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(201, 161, 46, 0.2);
}

.max-accordion .accordion-button::after {
  background-image: none;
  content: "\f078";
  font-size: 0.75rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--max-gold-soft);
  height: auto;
  width: auto;
}

.max-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.max-accordion .accordion-body {
  color: var(--max-text-mute);
  padding: 0.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
}

/* Pricing */
.price-card {
  background: var(--max-ink-card);
  border: 1px solid var(--max-border);
  border-radius: var(--max-radius-m);
  padding: 2.4rem 1.8rem;
  text-align: center;
  height: 100%;
  transition: var(--max-transition);
}

.price-card:hover {
  border-color: rgba(201, 161, 46, 0.45);
  box-shadow: var(--max-shadow-gold);
  transform: translateY(-8px);
}

.price-card .price-value {
  font-family: var(--max-font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--max-white);
  margin: 1rem 0 0.8rem;
}

.price-card .price-value .currency {
  font-size: 1.5rem;
  vertical-align: top;
  color: var(--max-gold-pale);
  margin-right: 0.2rem;
}

.price-feature {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.8rem;
  text-align: left;
}

.price-feature li {
  padding: 0.5rem 0;
  color: var(--max-text-soft);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price-feature li i {
  color: var(--max-gold-soft);
  font-size: 0.8rem;
}

/* Stats */
.stat-block {
  text-align: center;
  padding: 1.6rem;
}

.stat-block .stat-value {
  font-family: var(--max-font-head);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--max-gold-pale);
  line-height: 1.1;
}

.stat-block .stat-label {
  color: var(--max-text-mute);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
  font-weight: 600;
}

/* Map */
.map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(30%);
}

/* Footer */
.footer {
  background: var(--max-ink-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-block {
  padding: 3.5rem 0 0;
}

.footer .footer-brand {
  font-family: var(--max-font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--max-white);
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer p {
  color: var(--max-text-mute);
  font-size: 0.92rem;
}

.footer .footer-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--max-white);
  margin-bottom: 1.3rem;
  position: relative;
  display: inline-block;
}

.footer .footer-title:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--max-gold);
  margin-top: 0.4rem;
  border-radius: 2px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul a {
  color: var(--max-text-mute);
  font-size: 0.92rem;
}

.footer ul a:hover {
  color: var(--max-gold-soft);
  padding-left: 2px;
}

.footer .footer-contact-list li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  color: var(--max-text-mute);
  font-size: 0.92rem;
}

.footer .footer-contact-list i {
  color: var(--max-gold-soft);
  font-size: 0.85rem;
  width: 14px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--max-text-soft);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--max-gold);
  color: var(--max-ink);
  border-color: var(--max-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 0;
  margin-top: 2.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--max-text-mute);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.2rem;
  justify-content: center;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: var(--max-text-mute);
}

.footer-legal-links a:hover {
  color: var(--max-gold-soft);
}

/* Badge 18+ */
.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--max-gold);
  border-radius: var(--max-radius-s);
  font-weight: 800;
  color: var(--max-gold-pale);
  font-family: var(--max-font-head);
  padding: 0.15rem 0.6rem;
  font-size: 1rem;
  line-height: 1.15;
  height: 36px;
}

/* Toast notifications */
.notif-wrap {
  position: fixed;
  z-index: 10001;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: min(380px, 90vw);
}

.notif-toast {
  background: var(--max-ink-card);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--max-gold);
  border-radius: var(--max-radius-m);
  padding: 1rem 1.3rem;
  color: var(--max-white);
  font-size: 0.95rem;
  box-shadow: var(--max-shadow);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  animation: toastIn 0.3s ease both;
}

.notif-toast.toast-error {
  border-left-color: #f0928a;
}

.notif-toast .notif-icon {
  color: var(--max-gold-soft);
  font-size: 1rem;
}

.notif-toast.toast-error .notif-icon {
  color: #f0928a;
}

.notif-toast .notif-body {
  flex: 1;
}

.notif-toast .notif-close {
  background: transparent;
  border: 0;
  color: var(--max-text-mute);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
}

.notif-toast .notif-close:hover {
  color: var(--max-white);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Back-to-top button */
.to-top {
  position: fixed;
  z-index: 9990;
  bottom: 1.4rem;
  left: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--max-gold-grad);
  color: var(--max-ink);
  font-size: 1rem;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(201, 161, 46, 0.35);
  transition: var(--max-transition);
  margin: 0;
}

.to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201, 161, 46, 0.45);
}

.to-top-visible {
  display: inline-flex;
}

/* Ornaments and misc */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--max-gold), transparent);
  margin: 1.2rem auto;
  border-radius: 2px;
}

.bg-gold-soft {
  background: rgba(201, 161, 46, 0.06);
}

.list-check li {
  font-size: 1rem;
  color: var(--max-text-soft);
}

.contact-icon-block {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 161, 46, 0.12);
  border: 1px solid rgba(201, 161, 46, 0.3);
  color: var(--max-gold-soft);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.contact-tile {
  background: var(--max-ink-card);
  border: 1px solid var(--max-border);
  border-radius: var(--max-radius-l);
  padding: 2rem;
  height: 100%;
  transition: var(--max-transition);
}

.contact-tile:hover {
  border-color: rgba(201, 161, 46, 0.4);
  box-shadow: var(--max-shadow);
  transform: translateY(-4px);
}

.contact-tile p {
  color: var(--max-text-soft);
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
}

.contact-tile h6 {
  color: var(--max-white);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.min-h-100vh {
  min-height: 100vh;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .notif-toast {
    animation: none;
  }
}

@media (max-width: 1199.98px) {
  .section-padding {
    padding: 4.5rem 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--max-ink-nav);
    border-radius: var(--max-radius-m);
    margin-top: 0.8rem;
    padding: 1rem;
    box-shadow: var(--max-shadow);
  }

  .navbar-collapse .navbar-nav .nav-link {
    padding: 0.6rem 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar-phone {
    margin-top: 0.5rem;
    display: inline-flex;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .overlay-content-dark {
    padding: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 8rem 0 3rem;
  }

  .form-custom {
    padding: 1.5rem;
  }

  .hero-slider,
  .hero-slide {
    min-height: 100vh;
  }

  .overlay-content-dark {
    padding: 1.2rem;
  }
}
/* QA: reserve space for the fixed header on small screens so hero content is never hidden */
@media (max-width: 991.98px) {
  main {
    padding-top: 84px;
  }
}
@media (max-width: 575.98px) {
  main {
    padding-top: 92px;
  }
}

/* QA: provide solid fallback colours beneath gradient backgrounds so text contrast
   can be evaluated reliably and remains readable regardless of gradient support. */
.btn-gold,
.btn-gold:hover,
.btn-gold:focus {
  background-color: #c9a12e;
}

/* ===== QA accessibility fixes ===== */
/* Give .btn-gold buttons a solid gold background-color (gradient uses background-image,
   so an explicit background-color is needed for contrast detection). */
.btn-gold {
  background-color: #c9a12e !important;
}
.btn-gold:hover,
.btn-gold:focus {
  background-color: #dfb243 !important;
}

/* Make the hero kicker sit on an opaque dark background for readable contrast. */
.hero-kicker {
  background-color: #0c1016 !important;
  color: #e9cd7a !important;
}

/* Mobile: keep the fixed header from overlapping the hero content. */
@media (max-width: 575.98px) {
  main,
  .hero-slide {
    padding-top: 96px;
  }
  .hero-slide {
    padding-bottom: 24px;
  }
}

/* ===== QA contrast & layout overrides ===== */
/* Fixed header should not cover page content on smaller screens */
@media (max-width: 991.98px) {
  #page-root { padding-top: 96px; }
}
@media (max-width: 575.98px) {
  #page-root { padding-top: 150px; }
}

/* Hero kicker readable against imagery */
.hero-kicker {
  color: #ffffff !important;
  background: rgba(6, 8, 14, 0.88) !important;
  border-left-color: #c9a12e !important;
}

/* Category chips: solid gold background with dark text for contrast */
.card-tag {
  background: #c9a12e !important;
  color: #0a0c12 !important;
  border-color: transparent !important;
}

/* Gold buttons: solid fill + dark text (text invisible bug fix) */
.btn-gold {
  background: #c9a12e !important;
  color: #080b10 !important;
  background-image: none !important;
}
.btn-gold:hover,
.btn-gold:focus {
  background: #dfb243 !important;
  color: #080b10 !important;
  background-image: none !important;
}

/* 18+ badge: light gold fill with dark text */
.age-gate-badge {
  color: #080b10 !important;
  background: #eed38b !important;
  border-color: #c9a12e !important;
}

/* Responsible gaming feature card sits on a solid dark surface */
.rg-feature {
  background: #10141c !important;
}
.rg-feature h3,
.rg-feature h3.text-white {
  color: #ffffff !important;
}
.rg-feature p {
  color: #e8ebee !important;
}

/* Static, always-present cookie consent banner */
#siteCookieBanner.site-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 12px;
  background: #171717;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  font-size: 0.92rem;
  line-height: 1.5;
}
#siteCookieBanner.site-cookie-banner p {
  margin: 0;
  color: #ffffff;
}
#siteCookieBanner.site-cookie-banner .site-cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#siteCookieBanner.site-cookie-banner button {
  border: 0;
  border-radius: 6px;
  padding: 9px 16px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
}
#siteCookieBanner.site-cookie-banner .site-cookie-accept {
  background: #ffffff;
  color: #080b10;
}
#siteCookieBanner.site-cookie-banner .site-cookie-decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 640px) {
  #siteCookieBanner.site-cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
  #siteCookieBanner.site-cookie-banner .site-cookie-btns {
    width: 100%;
  }
  #siteCookieBanner.site-cookie-banner button {
    flex: 1;
  }
}

/* ===== QA: guarantee fixed header never overlaps hero content on small screens ===== */
@media (max-width: 575.98px) {
  main,
  #page-root {
    padding-top: 152px !important;
  }
  .hero-slide {
    padding-top: 0 !important;
  }
}

/* ===== Final QA overrides ===== */

/* Partner strip labels: solid dark tile + light text for clear contrast */
.partner-strip > span {
  background-color: #161c26 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* Testimonial avatar: opaque light-gold fill with dark initial for contrast */
.testimonial-author .avatar {
  background-color: #e9cd7a !important;
  color: #080b10 !important;
}

/* Price cards: enforce an opaque dark surface so light pricing text stays readable */
.price-card {
  background-color: #161c26 !important;
}
.price-card .price-value {
  color: #ffffff !important;
}
.price-card .price-value .currency {
  color: #e9cd7a !important;
}

/* Ensure responsible-gaming card body text sits on a solid dark background */
.rg-feature p {
  color: #e8ebee !important;
}

/* Mobile: take the fixed header out of the overlay so it never covers the hero.
   Removing ancestor top-padding keeps the hero anchored directly below the header. */
@media (max-width: 575.98px) {
  #max-header {
    position: relative !important;
    top: auto !important;
  }
  #page-root,
  main {
    padding-top: 0 !important;
  }
}

/* ===== QA: contrast for the "Popular" ribbon on pricing cards =====
   The inline background uses a gradient, so give the badge an opaque
   gold background-color so the dark text passes contrast checks. */
.price-card .badge {
  background-color: #c9a12e !important;
  background-image: none !important;
  color: #080b10 !important;
}

/* ===== QA: guarantee the fixed header never overlaps the hero on mobile =====
   Re-assert the header as fixed and reserve matching top space for content. */
@media (max-width: 991.98px) {
  #max-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
/*   #page-root,
  main {
    padding-top: 118px !important;
  } */
}
@media (max-width: 575.98px) {
/*   #page-root,
  main {
    padding-top: 168px !important;
  } */
  .hero-slide {
    padding-top: 0 !important;
  }
}

/* ===== Thank-you page: keep fixed header clear of the hero on small screens ===== */
.page-thankyou #max-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
}
@media (max-width: 575.98px) {
  .page-thankyou #page-root,
  .page-thankyou main {
    padding-top: 0 !important;
  }
  .page-thankyou main .hero-slide {
    margin-top: 150px !important;
    padding-top: 0 !important;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .page-thankyou main .hero-slide {
    margin-top: 120px !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 575.98px) { 
  body, main {
    padding-top: 0 !important;
  }
}