:root {
  --p-clr-dark: #0b0d12;
  --p-clr-dark2: #141820;
  --p-clr-dark3: #1c2130;
  --p-clr-gold: #c9a961;
  --p-clr-gold-light: #e2c98b;
  --p-clr-gold-dark: #96783e;
  --p-clr-text: #f0ece6;
  --p-clr-text-dim: #b8b3ab;
  --p-clr-border: rgba(201, 169, 97, 0.18);
  --p-shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.5);
  --p-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --p-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --p-font-body: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  --p-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --p-gutter-x: 2rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--p-font-body);
  color: var(--p-clr-text);
  background-color: var(--p-clr-dark);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--p-font-heading);
  font-weight: 700;
  color: var(--p-clr-text);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

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

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

p {
  color: var(--p-clr-text-dim);
  font-size: 1.05rem;
  font-weight: 400;
}

a {
  color: var(--p-clr-gold);
  text-decoration: none;
  transition: var(--p-transition);
}

a:hover {
  color: var(--p-clr-gold-light);
}

.text-gold {
  color: var(--p-clr-gold) !important;
}

.text-light-custom {
  color: var(--p-clr-text) !important;
}

.text-dim-custom {
  color: var(--p-clr-text-dim) !important;
}

.bg-dark-custom {
  background-color: var(--p-clr-dark) !important;
}

.bg-dark2-custom {
  background-color: var(--p-clr-dark2) !important;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, var(--p-clr-gold-dark), var(--p-clr-gold) 50%, var(--p-clr-gold-light));
}

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

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

.section-title-wrap {
  margin-bottom: 3.5rem;
}

.section-title-wrap .section-tag {
  display: inline-block;
  font-family: var(--p-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--p-clr-gold);
  margin-bottom: 0.75rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--p-clr-border);
  border-radius: 50px;
  background: rgba(201, 169, 97, 0.06);
}

.section-title-wrap .section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title-wrap .section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--p-clr-text-dim);
}

.btn {
  font-family: var(--p-font-body);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.7rem 1.8rem;
  border-radius: 4px;
  transition: var(--p-transition);
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--p-clr-gold-dark), var(--p-clr-gold));
  color: var(--p-clr-dark);
  border: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--p-clr-gold), var(--p-clr-gold-light));
  color: var(--p-clr-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

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

.btn-outline-gold:hover {
  background: var(--p-clr-gold);
  color: var(--p-clr-dark);
  transform: translateY(-2px);
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--p-clr-text);
  border: 1px solid rgba(240, 236, 230, 0.4);
}

.btn-outline-light-custom:hover {
  background: rgba(240, 236, 230, 0.1);
  color: var(--p-clr-text);
  border-color: var(--p-clr-text);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(rgba(11, 13, 18, 0.92), rgba(11, 13, 18, 0.85));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--p-transition);
}

.site-header.scrolled {
  background: rgba(11, 13, 18, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.35rem 0;
  font-size: 0.85rem;
}

.top-bar a,
.top-bar span {
  color: var(--p-clr-text-dim);
  font-size: 0.82rem;
}

.top-bar i {
  color: var(--p-clr-gold);
  margin-right: 0.3rem;
}

.site-header .navbar-brand {
  font-family: var(--p-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--p-clr-text);
  letter-spacing: 0.05em;
}

.site-header .navbar-brand span {
  color: var(--p-clr-gold);
}

.site-header .navbar-nav .nav-link {
  color: var(--p-clr-text);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.6rem 1rem;
  position: relative;
  transition: var(--p-transition);
}

.site-header .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--p-clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--p-transition);
}

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

.site-header .navbar-toggler {
  border: 1px solid var(--p-clr-border);
  padding: 0.4rem 0.7rem;
}

.site-header .navbar-toggler .navbar-toggler-icon {
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-clr-gold);
  font-size: 1.3rem;
  width: auto;
  height: auto;
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--p-clr-dark);
  overflow: hidden;
}

.hero-slider .carousel-item {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slider .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-slider .carousel-caption {
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  bottom: auto;
  max-width: 850px;
  width: 90%;
  padding: 2rem;
}

.hero-slider .carousel-caption h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-slider .carousel-caption p {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-slider .carousel-indicators button {
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--p-clr-gold);
  opacity: 0.5;
  transition: var(--p-transition);
}

.hero-slider .carousel-indicators button.active {
  opacity: 1;
  width: 60px;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  font-size: 2rem;
  color: var(--p-clr-gold);
  opacity: 0.7;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
  opacity: 1;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--p-clr-gold-dark), var(--p-clr-gold));
  color: var(--p-clr-dark);
  font-family: var(--p-font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--p-shadow-sm);
  margin-right: 1rem;
}

.card-premium {
  background: var(--p-clr-dark3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--p-transition);
}

.card-premium:hover {
  transform: translateY(-6px);
  border-color: var(--p-clr-border);
  box-shadow: var(--p-shadow-lg);
}

.card-premium .card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card-premium .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-premium:hover .card-img-wrap img {
  transform: scale(1.05);
}

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

.card-premium .card-title {
  font-family: var(--p-font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.card-premium .card-text {
  color: var(--p-clr-text-dim);
  font-size: 0.95rem;
}

.card-premium .card-link {
  color: var(--p-clr-gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--p-transition);
}

.card-premium .card-link:hover {
  color: var(--p-clr-gold-light);
  letter-spacing: 0.1em;
}

.feature-card {
  background: linear-gradient(145deg, var(--p-clr-dark3), var(--p-clr-dark2));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--p-transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--p-clr-border);
  box-shadow: var(--p-shadow-lg);
}

.feature-card .feature-icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
  border: 1px solid var(--p-clr-border);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--p-clr-gold);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.testimonial-card {
  background: var(--p-clr-dark3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  height: 100%;
  transition: var(--p-transition);
}

.testimonial-card:hover {
  border-color: var(--p-clr-border);
  box-shadow: var(--p-shadow-sm);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: var(--p-font-heading);
  font-size: 5rem;
  color: var(--p-clr-gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card .testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--p-clr-text-dim);
  margin-bottom: 1.5rem;
}

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

.testimonial-card .testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p-clr-gold), var(--p-clr-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--p-font-heading);
  font-weight: 700;
  color: var(--p-clr-dark);
  font-size: 1.2rem;
}

.testimonial-card .testimonial-name {
  font-weight: 600;
  color: var(--p-clr-text);
  font-size: 0.95rem;
}

.testimonial-card .testimonial-role {
  color: var(--p-clr-text-dim);
  font-size: 0.85rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background-color: var(--p-clr-dark3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--p-clr-text);
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  transition: var(--p-transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background-color: var(--p-clr-dark3);
  border-color: var(--p-clr-gold);
  color: var(--p-clr-text);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.15);
}

.contact-form .form-control::placeholder {
  color: var(--p-clr-text-dim);
  opacity: 0.6;
}

.contact-form .form-label {
  font-weight: 500;
  color: var(--p-clr-text);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-form .is-invalid {
  border-color: #e74c3c;
}

.contact-form .is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.15);
}

.map-section {
  position: relative;
  padding: 0;
}

.map-section .map-embed {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}

.map-section .map-overlay-card {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  background: var(--p-clr-dark2);
  border: 1px solid var(--p-clr-border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--p-shadow-lg);
  max-width: 360px;
  z-index: 10;
}

.map-section .map-overlay-card h4 {
  font-family: var(--p-font-heading);
  margin-bottom: 1rem;
}

.map-section .map-overlay-card p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.map-section .map-overlay-card i {
  color: var(--p-clr-gold);
  margin-right: 0.5rem;
}

.site-footer {
  background: linear-gradient(rgba(11, 13, 18, 0.98), rgba(11, 13, 18, 0.99));
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}

.site-footer h5 {
  font-family: var(--p-font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--p-clr-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.site-footer .footer-about {
  font-size: 0.9rem;
  color: var(--p-clr-text-dim);
  line-height: 1.8;
}

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

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

.site-footer .footer-links a {
  color: var(--p-clr-text-dim);
  font-size: 0.9rem;
  transition: var(--p-transition);
}

.site-footer .footer-links a:hover {
  color: var(--p-clr-gold);
  padding-left: 0.3rem;
}

.site-footer .footer-contact li {
  margin-bottom: 0.6rem;
  color: var(--p-clr-text-dim);
  font-size: 0.9rem;
}

.site-footer .footer-contact i {
  color: var(--p-clr-gold);
  margin-right: 0.6rem;
  width: 18px;
  text-align: center;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem 0;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--p-clr-text-dim);
}

.site-footer .footer-bottom a {
  color: var(--p-clr-text-dim);
  margin: 0 0.5rem;
}

.site-footer .footer-bottom a:hover {
  color: var(--p-clr-gold);
}

.responsible-gaming {
  background: rgba(201, 169, 97, 0.06);
  border-top: 1px solid var(--p-clr-border);
  padding: 1rem 0;
  text-align: center;
}

.responsible-gaming p {
  font-size: 0.8rem;
  color: var(--p-clr-text-dim);
  margin-bottom: 0.25rem;
}

.responsible-gaming .age-badge-mini {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: var(--p-clr-gold);
  color: var(--p-clr-dark);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 26px;
  text-align: center;
  margin-right: 0.3rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--p-clr-dark2);
  border-top: 1px solid var(--p-clr-border);
  padding: 1.5rem 2rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

.cookie-consent.visible {
  transform: translateY(0);
}

.cookie-consent__content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-consent__icon {
  font-size: 2.5rem;
  color: var(--p-clr-gold);
  flex-shrink: 0;
}

.cookie-consent__text {
  flex: 1;
}

.cookie-consent__text h4 {
  font-family: var(--p-font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.cookie-consent__text p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.cookie-consent__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-consent__actions .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
}

.notify-toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 99999;
  background: var(--p-clr-dark3);
  border: 1px solid var(--p-clr-border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--p-shadow-lg);
  transform: translateX(120%);
  transition: transform 0.4s ease;
  max-width: 380px;
}

.notify-toast.show {
  transform: translateX(0);
}

.notify-toast i {
  font-size: 1.3rem;
}

.notify-toast span {
  font-size: 0.9rem;
  color: var(--p-clr-text);
}

.notify-toast.notify-success i {
  color: #2ecc71;
}

.notify-toast.notify-error i {
  color: #e74c3c;
}

.gallery-grid .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

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

.gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: var(--p-transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.gallery-grid .gallery-item .gallery-caption {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--p-clr-dark3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  color: var(--p-clr-text-dim);
  font-family: var(--p-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  transition: var(--p-transition);
}

.partner-logo:hover {
  border-color: var(--p-clr-border);
  color: var(--p-clr-gold);
}

.price-card {
  background: var(--p-clr-dark3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: var(--p-transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--p-clr-gold);
  box-shadow: var(--p-shadow-lg);
}

.price-card.popular {
  border-color: var(--p-clr-gold);
  background: linear-gradient(145deg, var(--p-clr-dark3), rgba(201, 169, 97, 0.08));
}

.price-card .price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--p-clr-gold);
  margin-bottom: 1rem;
}

.price-card .price {
  font-family: var(--p-font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--p-clr-text);
  margin-bottom: 1.5rem;
}

.price-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--p-clr-text-dim);
}

.price-card .price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.price-card .price-features li {
  padding: 0.4rem 0;
  color: var(--p-clr-text-dim);
  font-size: 0.9rem;
}

.price-card .price-features li i {
  color: var(--p-clr-gold);
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.price-card .btn {
  width: 100%;
}

.team-card {
  background: var(--p-clr-dark3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--p-transition);
}

.team-card:hover {
  border-color: var(--p-clr-border);
  box-shadow: var(--p-shadow-sm);
}

.team-card .team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-card .team-info {
  padding: 1.5rem;
}

.team-card .team-name {
  font-family: var(--p-font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-card .team-role {
  color: var(--p-clr-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stats-section {
  background-size: cover;
  background-position: center;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.stats-section .stats-row {
  position: relative;
  z-index: 2;
}

.stats-section .stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stats-section .stat-number {
  font-family: var(--p-font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--p-clr-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-section .stat-label {
  color: var(--p-clr-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
  border-left: 2px solid var(--p-clr-border);
}

.timeline .timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline .timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--p-clr-gold);
  border: 3px solid var(--p-clr-dark);
  box-shadow: 0 0 0 2px var(--p-clr-gold);
}

.timeline .timeline-year {
  font-family: var(--p-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--p-clr-gold);
  margin-bottom: 0.4rem;
}

.timeline .timeline-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--p-clr-text);
  margin-bottom: 0.25rem;
}

.timeline .timeline-text {
  font-size: 0.9rem;
  color: var(--p-clr-text-dim);
}

.cta-section {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.cta-section .cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  background: var(--p-clr-dark3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: var(--p-clr-dark3);
  color: var(--p-clr-text);
  font-family: var(--p-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.2rem 1.5rem;
  box-shadow: none;
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(201, 169, 97, 0.08);
  color: var(--p-clr-gold);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f078';
  color: var(--p-clr-gold);
  transform: translateY(-50%);
  position: absolute;
  right: 1.5rem;
  top: 50%;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '\f077';
}

.faq-accordion .accordion-body {
  color: var(--p-clr-text-dim);
  font-size: 0.9rem;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-accordion .accordion-body a {
  color: var(--p-clr-gold);
}

.pricing-package {
  background: linear-gradient(145deg, var(--p-clr-dark3), var(--p-clr-dark2));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 2.5rem;
  transition: var(--p-transition);
  height: 100%;
}

.pricing-package:hover {
  border-color: var(--p-clr-border);
  box-shadow: var(--p-shadow-lg);
  transform: translateY(-4px);
}

.pricing-package .package-header {
  border-bottom: 1px solid var(--p-clr-border);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-package .package-name {
  font-family: var(--p-font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.pricing-package .package-price {
  font-family: var(--p-font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--p-clr-gold);
}

.pricing-package .package-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--p-clr-text-dim);
}

.pricing-package .package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-package .package-features li {
  padding: 0.35rem 0;
  color: var(--p-clr-text-dim);
  font-size: 0.9rem;
}

.pricing-package .package-features li i {
  color: var(--p-clr-gold);
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.pricing-package .btn {
  width: 100%;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--p-clr-gold-dark), var(--p-clr-gold));
  color: var(--p-clr-dark);
  font-family: var(--p-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  box-shadow: var(--p-shadow-sm);
}

.process-step .step-title {
  font-family: var(--p-font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step .step-text {
  font-size: 0.9rem;
  color: var(--p-clr-text-dim);
}

.hotel-amenity {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--p-clr-dark3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  transition: var(--p-transition);
  height: 100%;
}

.hotel-amenity:hover {
  border-color: var(--p-clr-border);
  background: rgba(201, 169, 97, 0.04);
}

.hotel-amenity .amenity-icon {
  font-size: 1.5rem;
  color: var(--p-clr-gold);
  flex-shrink: 0;
}

.hotel-amenity .amenity-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--p-clr-text);
  margin-bottom: 0;
}

.breadcrumb-bar {
  padding: 8rem 0 3rem;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url();
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.breadcrumb-bar .breadcrumb-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.breadcrumb-bar .breadcrumb {
  justify-content: center;
  --bs-breadcrumb-divider-color: var(--p-clr-gold);
}

.breadcrumb-bar .breadcrumb-item a {
  color: var(--p-clr-gold);
}

.breadcrumb-bar .breadcrumb-item.active {
  color: var(--p-clr-text);
}

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
  .section-padding {
    padding: 4rem 0;
  }
  .section-padding-lg {
    padding: 5rem 0;
  }
  .map-section .map-overlay-card {
    position: static;
    transform: none;
    margin: 0 auto;
    border-radius: 0;
    max-width: 100%;
  }
  .cookie-consent__content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .cookie-consent__actions {
    justify-content: center;
  }
  .site-header .navbar-collapse {
    background: var(--p-clr-dark2);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .hero-slider .carousel-caption {
    padding: 1rem;
  }
  .hero-slider .carousel-caption h1 {
    font-size: 2.2rem;
  }
  .hero-slider .carousel-caption p {
    font-size: 1rem;
  }
  .section-title-wrap .section-title {
    font-size: 1.8rem;
  }
  .price-card {
    padding: 2rem 1.5rem;
  }
  .process-step {
    padding: 1rem 0.5rem;
  }
  .notify-toast {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
  .cookie-consent {
    padding: 1rem;
  }
  .cookie-consent__actions .btn {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 3rem 0;
  }
  .hero-slider .carousel-caption h1 {
    font-size: 1.8rem;
  }
  .hero-slider .carousel-caption p {
    font-size: 0.9rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
  .feature-card {
    padding: 1.5rem;
  }
  .map-section .map-embed {
    height: 350px;
  }
  .gallery-grid .gallery-item {
    aspect-ratio: 1 / 1;
  }
}
/* ===== QA fixes: contrast, header overlap, cookie banner ===== */
.btn-gold,
.btn-gold.btn-lg {
  background-color: var(--p-clr-gold) !important;
  background-image: none !important;
  color: var(--p-clr-dark) !important;
}
.btn-gold:hover,
.btn-gold.btn-lg:hover {
  background-color: var(--p-clr-gold-light) !important;
  color: var(--p-clr-dark) !important;
}
.section-tag {
  display: inline-block;
  font-family: var(--p-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--p-clr-gold-light) !important;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--p-clr-border);
  border-radius: 50px;
  background-color: var(--p-clr-dark2) !important;
}
.responsible-gaming {
  background-color: var(--p-clr-dark) !important;
}

/* Header overlap fix on mobile for hero sections */
@media (max-width: 576px) {
  .blog-hero {
    padding-top: 130px !important;
    padding-bottom: 40px !important;
  }
}

/* Static cookie consent banner visibility */
.eu-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1120px;
  margin: auto;
  padding: 16px 18px;
  border-radius: 12px;
  background: #171717;
  color: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  font: 15px/1.5 Arial, sans-serif;
}
.eu-cookie-banner__text {
  color: #fff;
  margin: 0;
}
.eu-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.eu-cookie-banner button {
  border: 1px solid #fff;
  border-radius: 7px;
  padding: 9px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.eu-cookie-banner__decline {
  background: transparent;
  color: #fff;
}
.eu-cookie-banner__accept {
  background: #fff;
  color: #171717;
}
.eu-cookie-banner[hidden] {
  display: none;
}
@media (max-width: 640px) {
  .eu-cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    align-items: stretch;
    flex-direction: column;
  }
  .eu-cookie-banner__actions {
    width: 100%;
  }
  .eu-cookie-banner button {
    flex: 1;
  }
}

/* ---- Contacts page overrides ---- */
.btn-gold {
  background-image: linear-gradient(135deg, var(--p-clr-gold-dark), var(--p-clr-gold));
  background-color: var(--p-clr-gold);
}

.section-title-wrap .section-tag {
  background-color: #1c2130;
}

.responsible-gaming {
  background-color: #1c2130;
}

.contacts-hero {
  padding-top: 140px;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .contacts-hero {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}

@media (max-width: 576px) {
  .contacts-hero {
    padding-top: 130px;
    padding-bottom: 40px;
  }
}

/* QA fixes: contrast & layout overrides */
.btn-gold {
  background: var(--p-clr-gold) !important;
  color: var(--p-clr-dark) !important;
}
.btn-gold:hover {
  background: var(--p-clr-gold-light) !important;
  color: var(--p-clr-dark) !important;
}
.section-tag {
  background: var(--p-clr-dark2) !important;
  color: var(--p-clr-gold) !important;
}
.testimonial-avatar {
  background: var(--p-clr-gold) !important;
  color: var(--p-clr-dark) !important;
}
.responsible-gaming {
  background: var(--p-clr-dark2) !important;
}

/* Clear fixed header overlap on hero sections */
.about-hero,
.hero-slider,
.breadcrumb-bar {
  padding-top: 130px;
}
@media (max-width: 992px) {
  .about-hero,
  .hero-slider,
  .breadcrumb-bar {
    padding-top: 100px;
  }
}

/* ---- Privacy/legal hero header overlap fix ---- */
.privacy-hero {
  padding-top: 140px;
  padding-bottom: 50px;
}
@media (max-width: 992px) {
  .privacy-hero {
    padding-top: 110px;
    padding-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .privacy-hero {
    padding-top: 120px;
    padding-bottom: 30px;
  }
}

/* Ensure the privacy hero clears the fixed header (box moves below it) */
.privacy-hero {
  margin-top: 140px;
}
@media (max-width: 992px) {
  .privacy-hero {
    margin-top: 120px;
  }
}
@media (max-width: 576px) {
  .privacy-hero {
    margin-top: 120px;
  }
}

/* Force the static cookie banner to be visible on all pages */
.cookie-consent[data-static] {
  transform: translateY(0) !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ===== Final QA fixes: contrast, header overlap, cookie banner ===== */

/* High-contrast FAQ accordion buttons (light bg + dark text) */
.faq-accordion .accordion-button,
.faq-accordion .accordion-button.collapsed,
.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #fbf8f2 !important;
  color: #141820 !important;
  border: none;
}
.faq-accordion .accordion-button::after,
.faq-accordion .accordion-button:not(.collapsed)::after {
  color: #141820 !important;
}
.faq-accordion .accordion-body {
  background-color: #fbf8f2 !important;
  color: #141820 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* High-contrast age badges (solid gold bg, dark text) */
.age-badge,
.age-badge-mini {
  background-color: var(--p-clr-gold) !important;
  background-image: none !important;
  color: #0b0d12 !important;
}

/* Clear fixed header overlap on the hero section */
.hero-slider {
  margin-top: 112px;
  padding-top: 0 !important;
}
@media (max-width: 992px) {
  .hero-slider {
    margin-top: 76px;
  }
}

/* ---- Price page header overlap fix ---- */
.price-hero {
  padding-top: 130px !important;
  padding-bottom: 40px !important;
}
@media (max-width: 992px) {
  .price-hero {
    padding-top: 110px !important;
    padding-bottom: 30px !important;
  }
}
@media (max-width: 576px) {
  .price-hero {
    padding-top: 120px !important;
    padding-bottom: 30px !important;
  }
}

/* ---- Thank-you page header overlap fix ---- */
.thankyou-hero {
  margin-top: 130px;
}
@media (max-width: 992px) {
  .thankyou-hero {
    margin-top: 120px;
  }
}
@media (max-width: 576px) {
  .thankyou-hero {
    margin-top: 120px;
  }
}

/* ---- QA fixes for viihdekeskus-kasinoresort-b2 ---- */

/* Clear fixed header overlap on .hero-service (used on service pages) */
.hero-service {
  padding-top: 140px !important;
  padding-bottom: 60px !important;
}
@media (max-width: 992px) {
  .hero-service {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
  }
}
@media (max-width: 576px) {
  .hero-service {
    padding-top: 120px !important;
    padding-bottom: 40px !important;
  }
}

/* High-contrast step numbers (solid gold background, dark text) */
.process-step .step-number {
  background-color: #c9a961 !important;
  background-image: none !important;
  color: #0b0d12 !important;
}

/* ===== Tietosuojakäytäntö page: prefer static cookie banner ===== */
#generator-cookie-consent {
  display: none !important;
}

/* ---- Ylellinen kasinohotelli page: clear fixed header overlap on hero-service box ---- */
.hero-service {
  margin-top: 72px !important;
}
@media (min-width: 576px) {
  .hero-service {
    margin-top: 80px !important;
  }
}
@media (min-width: 768px) {
  .hero-service {
    margin-top: 107px !important;
  }
}
@media (min-width: 992px) {
  .hero-service {
    margin-top: 112px !important;
  }
}
