
:root {
  --bg: #070b14;
  --bg-2: #0b1222;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-strong: rgba(255, 255, 255, 0.105);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(214, 168, 79, 0.25);
  --text: #f6f8ff;
  --muted: #aeb8cc;
  --gold: #d6a84f;
  --gold-2: #f5d991;
  --blue: #4c8dff;
  --danger: #ff6b6b;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(76, 141, 255, 0.16), transparent 32rem),
    radial-gradient(circle at top right, rgba(214, 168, 79, 0.13), transparent 34rem),
    linear-gradient(180deg, #070b14 0%, #090e1a 45%, #05070d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 85%);
}

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

a:hover {
  color: #ffffff;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.035em;
}

h1 {
  line-height: 1.04;
}

h2 {
  font-weight: 800;
}

h3 {
  font-size: 1.18rem;
  font-weight: 750;
}

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

.page-shell {
  padding-top: 74px;
}

.site-navbar {
  background: rgba(7, 11, 20, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  color: #07101f;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(214, 168, 79, 0.2);
}

.nav-link {
  color: rgba(246, 248, 255, 0.72) !important;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 0.82rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.075);
}

.hero-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0 3rem;
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-glow-one {
  background: rgba(76, 141, 255, 0.28);
  left: -8rem;
  top: 10rem;
}

.hero-glow-two {
  background: rgba(214, 168, 79, 0.22);
  right: -5rem;
  top: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-2);
  border: 1px solid rgba(214, 168, 79, 0.26);
  background: rgba(214, 168, 79, 0.08);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.glass-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.095), rgba(255,255,255,0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-card {
  transform: translateY(0);
  animation: floatCard 7s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.badge-soft,
.age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 750;
  font-size: 0.82rem;
}

.age-pill {
  color: var(--gold-2);
  border-color: rgba(214, 168, 79, 0.28);
}

.hero-mini span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-mini i {
  color: var(--gold);
}

.btn {
  border-radius: 999px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gradient {
  color: #07101f;
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-2) 45%, var(--blue));
  box-shadow: 0 14px 36px rgba(214, 168, 79, 0.25);
}

.btn-gradient:hover,
.btn-gradient:focus {
  color: #07101f;
  box-shadow: 0 18px 46px rgba(76, 141, 255, 0.22);
}

.btn-outline-premium {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.17);
  background: rgba(255,255,255,0.045);
}

.btn-outline-premium:hover,
.btn-outline-premium:focus {
  color: #fff;
  border-color: rgba(214, 168, 79, 0.5);
  background: rgba(214, 168, 79, 0.08);
}

.btn-outline-danger-premium {
  color: #ffd6d6;
  border: 1px solid rgba(255, 107, 107, 0.42);
  background: rgba(255, 107, 107, 0.08);
}

.btn-outline-danger-premium:hover {
  color: #fff;
  background: rgba(255, 107, 107, 0.16);
}

.btn-ghost {
  color: var(--muted);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.notice-strip {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(214, 168, 79, 0.22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(214,168,79,0.12), rgba(76,141,255,0.08));
  color: #fff;
}

.link-gold {
  color: var(--gold-2);
  font-weight: 750;
}

.section-padding {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-heading p {
  max-width: 650px;
}

.product-card,
.feature-card {
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 168, 79, 0.24);
  box-shadow: 0 32px 90px rgba(0,0,0,0.42);
}

.product-card img {
  width: 100%; 
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.icon-chip {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--gold-2);
  background: rgba(214, 168, 79, 0.12);
  border: 1px solid rgba(214, 168, 79, 0.23);
  margin-bottom: 1rem;
}

.feature-card {
  padding: 1.5rem;
}

.feature-card > i {
  font-size: 1.45rem;
  color: var(--gold-2);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
  background: radial-gradient(circle at 15% 0%, rgba(76, 141, 255, 0.18), transparent 28rem);
}

.page-hero.compact h1 {
  font-weight: 850;
  max-width: 900px;
  margin-top: 1rem;
}

.page-hero.compact p {
  max-width: 760px;
}

.info-table {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.info-table div,
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.info-table div:last-child,
.summary-row:last-child {
  border-bottom: 0;
}

.info-table span,
.summary-row span {
  color: var(--muted);
}

.address-box,
.small-disclaimer,
.empty-state {
  padding: 1rem;
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line);
}

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

.contact-list li,
.footer-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.95rem;
  color: var(--muted);
}

.contact-list i,
.footer-list i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.form-control,
.form-select {
 
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 15px;
  padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
  color: #fff;
  background-color: rgba(255,255,255,0.085);
  border-color: rgba(214, 168, 79, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(214, 168, 79, 0.1);
}

.form-select option {
  background: #0b1222;
  color: #fff;
}

.form-label,
.form-check-label {
  color: #eef3ff;
  font-weight: 650;
}

.form-check-input {
  background-color: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.22);
}

.form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.alert {
  border-radius: 16px;
  border: 1px solid transparent;
}

.alert-success {
  color: #d9ffe9;
  background: rgba(66, 211, 146, 0.12);
  border-color: rgba(66, 211, 146, 0.25);
}

.alert-danger {
  color: #ffd9d9;
  background: rgba(255, 107, 107, 0.12);
  border-color: rgba(255, 107, 107, 0.25);
}

.ticket-preview {
  display: grid;
  gap: 0.75rem;
}

.ticket-line,
.cart-item {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
}

.ticket-line strong,
.cart-item strong {
  color: #fff;
}

.number-balls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.number-ball {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #07101f;
  background: linear-gradient(135deg, #ffffff, var(--gold-2));
  font-weight: 850;
  font-size: 0.86rem;
}

.number-ball.bonus {
  background: linear-gradient(135deg, var(--blue), #b9d2ff);
}

.cart-list {
  display: grid;
  gap: 1rem;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.summary-card {
  position: sticky;
  top: 100px;
}

.legal-content section + section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(140%);
  width: min(980px, calc(100% - 2rem));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(7, 11, 20, 0.94);
  border: 1px solid rgba(214,168,79,0.24);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  z-index: 1050;
  transition: transform 0.28s ease;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner p {
  color: var(--muted);
  margin: 0.25rem 0 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.site-footer {
  background: rgba(2, 5, 11, 0.78);
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: #fff;
  font-weight: 850;
  font-size: 1.15rem;
}

.footer-title {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-line {
  border-color: rgba(255,255,255,0.11);
  margin: 2rem 0 1rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }

  .nav-link {
    padding-left: 1rem !important;
  }

  .summary-card {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .page-shell {
    padding-top: 68px;
  }

  .hero-section {
    padding-top: 3rem;
  }

  .display-4 {
    font-size: 2.45rem;
  }

  .info-table div,
  .summary-row,
  .cart-item-header {
    flex-direction: column;
  }

  .product-card img {
    height: 200px;
  }

  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }
}


/* Age verification overlay */
body.age-modal-open {
  overflow: hidden;
}

.age-verification-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(214,168,79,0.18), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(76,141,255,0.18), transparent 30rem),
    rgba(2, 5, 11, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.age-verification-overlay.show {
  display: flex;
}

.age-verification-card {
  width: min(620px, 100%);
  border: 1px solid rgba(214,168,79,0.28);
  border-radius: 28px;
  padding: clamp(1.5rem, 5vw, 2.4rem);
  background: linear-gradient(145deg, rgba(14, 21, 37, 0.96), rgba(7, 11, 20, 0.96));
  box-shadow: 0 34px 110px rgba(0,0,0,0.62);
  color: var(--text);
}

.age-verification-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 1.1rem;
  color: #07101f;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 16px 46px rgba(214,168,79,0.26);
  font-size: 1.45rem;
}

.age-verification-card h2 {
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  margin-bottom: 0.75rem;
}

.age-verification-card p {
  color: var(--muted);
}

.age-verification-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.age-verification-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  font-size: 0.92rem;
}

.legal-content h2 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  margin-bottom: 1rem;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.78;
}

.legal-content strong {
  color: #fff;
}

.responsible-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.responsible-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  color: var(--muted);
}

.responsible-list i {
  color: var(--gold-2);
  margin-top: 0.2rem;
}

@media (max-width: 575.98px) {
  .age-verification-actions .btn {
    width: 100%;
  }
}


/* Imported compliance footer layout */
.site-footer-compliance {
  background: linear-gradient(180deg, #03101f 0%, #071934 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 40px 0 24px;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-logo-link:hover,
.footer-logo-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-logo-link img {
  width: 100%;
  max-width: 245px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-compliance-text {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.footer-compliance-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.footer-compliance-text a,
.footer-operator-box a,
.footer-bottom-links a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(214,168,79,0.45);
  text-underline-offset: 4px;
}

.footer-compliance-text a:hover,
.footer-operator-box a:hover,
.footer-bottom-links a:hover {
  color: var(--gold);
}

.footer-alert {
  color: #ff6b6b !important;
  font-weight: 800;
  font-size: 1.18rem !important;
}

.footer-operator-box {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-operator-box p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-bottom-centered {
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
}

@media (max-width: 1100px) {
  .footer-logo-row {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

@media (max-width: 760px) {
  .footer-bottom-centered {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .footer-logo-row {
    grid-template-columns: 1fr;
  }

  .footer-compliance-text p,
  .footer-operator-box {
    font-size: 0.92rem;
  }
}
