:root {
  --primary: #f8b84e;
  --primary-dark: #c88621;
  --dark: #0b0b0f;
  --dark-2: #14141b;
  --text: #d8d8df;
  --muted: #9b9ba6;
  --white: #ffffff;
  --border: rgba(255,255,255,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: .25s ease;
}

img {
  max-width: 100%;
  display: block;
}

p {
  color: var(--muted);
  line-height: 1.8;
}

h1, h2, h3 {
  color: var(--white);
  line-height: 1.2;
}

.container,
.container-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.no-gutters {
  margin: 0;
}

.no-gutters > * {
  padding: 0;
}

[class*="col-"] {
  padding: 15px;
}

.col-md-3 { width: 25%; }
.col-md-4 { width: 33.333%; }
.col-md-6 { width: 50%; }
.col-md-7 { width: 58.333%; }
.col-md-10 { width: 83.333%; }
.col-md-12 { width: 100%; }
.col-lg-2 { width: 16.666%; }
.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333%; }
.col-lg-8 { width: 66.666%; }

.d-flex { display: flex; }
.d-block { display: block; }
.text-center { text-align: center; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.align-self-stretch { align-self: stretch; }
.ml-auto { margin-left: auto; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: .75rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-md-5 { padding: 3rem; }

.ftco-section {
  padding: 95px 0;
  position: relative;
}

.heading-section {
  margin: 0 auto;
}

.heading-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-top: 0;
}

.subheading {
  font-family: "Nothing You Could Do", cursive;
  color: var(--primary);
  font-size: 30px;
}

/* NAVBAR */

.ftco_navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(10,10,14,.62);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: .3s ease;
}

.ftco_navbar.scrolled {
  padding: 10px 0;
  background: rgba(10,10,14,.94);
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
}

.navbar-brand {
  font-family: "Josefin Sans", sans-serif;
  font-size: 28px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-brand small {
  display: block;
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 3px;
}

.navbar-nav {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: rgba(255,255,255,.78);
  padding: 12px 15px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--primary);
}

.navbar-toggler {
  display: none;
  margin-left: auto;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
}

/* HERO SLIDER */

.home-slider {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

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

.slider-item.active {
  display: flex;
  animation: fadeIn .7s ease;
}

.slider-item .overlay,
.ftco-counter .overlay,
.ftco-appointment .overlay,
.ftco-footer .overlay,
.ftco-services .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(248,184,78,.12), transparent 35%),
              linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45));
}

.slider-text {
  min-height: 100vh;
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.slider-text h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  margin: 12px 0 24px;
}

.slider-text p {
  max-width: 620px;
  font-size: 17px;
}

.slider-text img {
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.55));
  animation: float 5s ease-in-out infinite;
}

.owl-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.owl-dot {
  width: 12px;
  height: 12px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.owl-dot.active {
  background: var(--primary);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: .4px;
  cursor: pointer;
  transition: .25s ease;
}

.btn-primary {
  background: var(--primary);
  color: #17110a;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(248,184,78,.25);
}

.btn-white {
  color: var(--white);
}

.btn-outline-white {
  border-color: rgba(255,255,255,.4);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

/* INTRO */

.ftco-intro {
  background: var(--dark-2);
}

.ftco-intro .wrap {
  display: flex;
  box-shadow: var(--shadow);
  transform: translateY(-35px);
  position: relative;
  z-index: 10;
}

.info {
  flex: 1;
  background: #111118;
  padding: 28px;
}

.info .icon {
  color: var(--primary);
  font-size: 24px;
  margin-right: 16px;
}

.info h3 {
  font-size: 17px;
  margin: 0 0 6px;
}

.info p {
  margin: 0;
  font-size: 14px;
}

.social {
  background: var(--primary);
  min-width: 230px;
}

.social-icon,
.ftco-footer-social {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.social-icon a,
.ftco-footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
}

/* ABOUT */

.ftco-about {
  display: flex;
  background: #0f0f15;
}

.one-half {
  width: 50%;
  min-height: 520px;
  padding: 80px 60px;
}

.img {
  background-size: cover;
  background-position: center;
}

.heading-section span {
  color: var(--primary);
}

/* SERVICES */

.ftco-services {
  background: url("../images/food.png"), #121217;
  position: relative;
}

.ftco-services .container {
  position: relative;
  z-index: 2;
}

.services {
  padding: 35px 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
  border-radius: 24px;
  min-height: 100%;
  transition: .3s ease;
}

.services:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.075);
}

.services .icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 25px;
  border-radius: 24px;
  border: 1px solid rgba(248,184,78,.5);
  color: var(--primary);
  font-size: 34px;
}

.services .heading {
  font-size: 21px;
}

/* MENU CARDS */

.container-wrap {
  max-width: 100%;
  padding: 0;
}

.services-wrap {
  min-height: 260px;
  width: 100%;
  background: #111118;
  border: 1px solid rgba(255,255,255,.06);
}

.services-wrap .img,
.services-wrap .text {
  width: 50%;
}

.services-wrap .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price span {
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.menu-wrap {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 18px;
  height: 100%;
  transition: .25s ease;
}

.menu-wrap:hover {
  transform: translateY(-6px);
}

.menu-img {
  height: 210px;
  border-radius: 22px;
}

.nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.nav-pills .nav-link {
  border: 1px solid var(--border);
  border-radius: 999px;
}

.nav-pills .nav-link.active {
  background: var(--primary);
  color: #17110a;
}

.tab-pane {
  display: none;
}

.tab-pane.show.active {
  display: block;
  animation: fadeIn .35s ease;
}

/* GALLERY */

.ftco-gallery .row > div {
  padding: 0;
}

.gallery {
  height: 310px;
  position: relative;
  overflow: hidden;
}

.gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
  transition: .3s ease;
}

.gallery .icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: auto;
  border-radius: 50%;
  background: var(--primary);
  color: #111;
  opacity: 0;
  transform: scale(.8);
  transition: .3s ease;
}

.gallery:hover::after {
  background: rgba(0,0,0,.55);
}

.gallery:hover .icon {
  opacity: 1;
  transform: scale(1);
}

/* COUNTER */

.ftco-counter {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.ftco-counter .container {
  position: relative;
  z-index: 2;
}

.block-18 {
  width: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}

.block-18 .icon {
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 12px;
}

.number {
  display: block;
  color: var(--white);
  font-size: 44px;
}

/* BLOG */

.blog-entry {
  width: 100%;
  background: #111118;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: .3s ease;
}

.blog-entry:hover {
  transform: translateY(-8px);
}

.block-20 {
  height: 260px;
  display: block;
  background-size: cover;
  background-position: center;
}

.blog-entry .text {
  padding: 26px;
}

/* CONTACT */

.ftco-appointment {
  position: relative;
  background: #101016;
}

.ftco-appointment .container-wrap {
  position: relative;
  z-index: 2;
}

#map {
  min-height: 500px;
  width: 100%;
  background:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/bg_3.jpg") center/cover;
}

.appointment {
  padding: 60px;
  background: rgba(15,15,22,.94);
}

.form-control {
  width: 100%;
  margin-bottom: 16px;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--white);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(248,184,78,.12);
}

textarea.form-control {
  resize: vertical;
}

/* FOOTER */

.ftco-footer {
  position: relative;
  padding: 90px 0 35px;
  background: url("../images/bg_2.jpg") center/cover;
}

.ftco-footer .container {
  position: relative;
  z-index: 2;
}

.ftco-heading-2 {
  font-size: 20px;
  margin-bottom: 24px;
}

.block-21 .blog-img {
  width: 90px;
  height: 75px;
  flex: 0 0 90px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.block-21 .heading {
  font-size: 15px;
}

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

.list-unstyled a:hover {
  color: var(--primary);
}

.block-23 li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
}

/* LOADER */

#ftco-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: none;
  place-items: center;
}

#ftco-loader.show {
  display: grid;
}

.circular {
  animation: rotate 1.8s linear infinite;
}

.path {
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
}

/* ANIMATIONS */

.ftco-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: .75s ease;
}

.ftco-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

@keyframes dash {
  0% { stroke-dasharray: 1,150; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 90,150; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90,150; stroke-dashoffset: -124; }
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.88);
  display: grid;
  place-items: center;
  padding: 20px;
}

.lightbox img {
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  color: white;
  font-size: 42px;
  cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-8,
  .col-md-3,
  .col-md-4,
  .col-md-6,
  .col-md-7,
  .col-md-10 {
    width: 100%;
  }

  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    background: rgba(15,15,22,.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    display: none;
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .slider-text {
    text-align: center;
  }

  .slider-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .ftco-intro .wrap,
  .ftco-about,
  .d-md-flex,
  .d-md-flex.row {
    flex-direction: column;
  }

  .one-half {
    width: 100%;
    min-height: 360px;
    padding: 50px 25px;
  }

  .services-wrap {
    flex-direction: column;
  }

  .services-wrap .img,
  .services-wrap .text {
    width: 100%;
    min-height: 230px;
  }

  .appointment {
    padding: 40px 22px;
  }
}

@media (max-width: 576px) {
  .ftco-section {
    padding: 70px 0;
  }

  .slider-text h1 {
    font-size: 38px;
  }

  .subheading {
    font-size: 25px;
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .gallery {
    height: 240px;
  }
}

/* ABOUT PAGE */

.bread {
  font-size: clamp(46px, 7vw, 82px);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.breadcrumbs {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: var(--primary);
}

.breadcrumbs a:hover {
  color: var(--white);
}

.col-md-8 {
  width: 66.666%;
}

.flip {
  position: relative;
  width: 90px;
  height: 18px;
  margin: 0 auto;
}

.flip span {
  position: absolute;
  top: 7px;
  width: 34px;
  height: 2px;
  background: var(--primary);
}

.flip .deg1 {
  left: 0;
  transform: rotate(25deg);
}

.flip .deg2 {
  left: 28px;
}

.flip .deg3 {
  right: 0;
  transform: rotate(-25deg);
}

.staff {
  width: 100%;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  padding: 18px;
  transition: .3s ease;
}

.staff:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.075);
  box-shadow: var(--shadow);
}

.staff .img {
  height: 280px;
  border-radius: 22px;
  background-size: cover;
  background-position: center top;
  filter: saturate(.92);
  transition: .35s ease;
}

.staff:hover .img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.staff h3 {
  font-size: 20px;
  margin: 12px 0 6px;
}

.staff h3 a:hover {
  color: var(--primary);
}

.staff .position {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.staff .text p {
  font-size: 14px;
  margin-bottom: 0;
}

.mb-sm-4 {
  margin-bottom: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mr-2 {
  margin-right: .5rem;
}

.mr-4 {
  margin-right: 1.5rem;
}

.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 991px) {
  .col-md-8 {
    width: 100%;
  }

  .staff .img {
    height: 360px;
  }
}

@media (max-width: 576px) {
  .bread {
    font-size: 42px;
  }

  .breadcrumbs {
    font-size: 13px;
  }

  .staff .img {
    height: 300px;
  }
}

/* CASINO PAGE */

.pricing-entry {
  gap: 18px;
  padding: 20px;
  margin-bottom: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: .3s ease;
}

.pricing-entry:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.075);
  box-shadow: var(--shadow);
}

.pricing-entry .img {
  width: 110px;
  height: 110px;
  flex: 0 0 110px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
}

.pricing-entry .desc {
  flex: 1;
}

.pricing-entry .text {
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(255,255,255,.18);
  padding-bottom: 10px;
  margin-bottom: 8px;
}

.pricing-entry h3 {
  margin: 0;
  font-size: 19px;
}

.pricing-entry .price {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-entry p {
  margin: 0;
  font-size: 14px;
}

.pl-3 {
  padding-left: 1rem;
}

strong {
  color: var(--primary);
  font-weight: 600;
}

.ftco-section:not(.ftco-services) .col-md-6 > p {
  background: rgba(255,255,255,.035);
  border-left: 3px solid rgba(248,184,78,.65);
  padding: 18px 20px;
  border-radius: 0 18px 18px 0;
}

@media (max-width: 576px) {
  .pricing-entry {
    flex-direction: column;
    text-align: center;
  }

  .pricing-entry .img {
    width: 100%;
    height: 220px;
    flex-basis: auto;
  }

  .pricing-entry .text {
    flex-direction: column;
  }

  .pl-3 {
    padding-left: 0;
  }
}

/* CONTACT PAGE */

.col-md-1 {
  width: 8.333%;
}

.px-5 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.contact-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(248,184,78,.08), transparent 35%),
    var(--dark);
}

.block-9 {
  align-items: stretch;
}

.contact-info {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-info .h4 {
  font-size: 26px;
  margin: 0 0 18px;
  color: var(--white);
}

.contact-info p {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-info p span {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info a {
  color: var(--white);
}

.contact-info a:hover {
  color: var(--primary);
}

.contact-form {
  height: 100%;
  padding: 34px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-form textarea.form-control {
  min-height: 180px;
}

body > #map {
  height: 430px;
  width: 100%;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.55)),
    url("../images/bg_3.jpg") center/cover;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

body > #map::after {
  content: "ul. Wieczorna 18, Warszawa";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(12,12,17,.9);
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 16px 26px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.contact-form .form-message {
  margin-top: 14px;
}

@media (max-width: 991px) {
  .col-md-1 {
    display: none;
  }

  .contact-info,
  .contact-form {
    margin-bottom: 24px;
  }
}

@media (max-width: 576px) {
  .contact-info,
  .contact-form {
    padding: 24px 18px;
    border-radius: 22px;
  }

  body > #map::after {
    width: calc(100% - 40px);
    text-align: center;
  }

  .px-5 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* MENU PAGE */

.pt-5 {
  padding-top: 3rem;
}

.ml-2 {
  margin-left: .5rem;
}

.order-lg-last {
  order: 2;
}

.ftco-menu {
  padding: 95px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(248,184,78,.09), transparent 32%),
    #0f0f15;
}

.container-fluid {
  width: 100%;
  padding: 0;
}

.f-menu-img {
  min-height: 720px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.f-menu-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.2), rgba(0,0,0,.65));
}

.menu-wrap .text h3 a:hover {
  color: var(--primary);
}

.services-wrap:hover {
  background: #171720;
  box-shadow: var(--shadow);
}

.services-wrap .img {
  transition: .35s ease;
}

.services-wrap:hover .img {
  filter: brightness(1.08) saturate(1.08);
}

.services-wrap .price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

@media (max-width: 991px) {
  .f-menu-img {
    min-height: 360px;
  }

  .order-lg-last {
    order: 0;
  }
}

@media (max-width: 576px) {
  .services-wrap .price {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-wrap .price .btn {
    margin-left: 0;
  }
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(11, 11, 15, 0.94);
  backdrop-filter: blur(12px);
}

.age-gate-box {
  width: min(520px, 100%);
  padding: 44px 32px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(180deg, var(--dark-2), #0f0f15);
  border: 1px solid rgba(248, 184, 78, 0.45);
  box-shadow: var(--shadow);
}

.age-gate-box h2 {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 78px;
  line-height: 1;
}

.age-gate-box p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
}

.age-gate-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.age-gate-actions button {
  border: 1px solid var(--primary);
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s ease;
}

#ageYes {
  color: #17110a;
  background: var(--primary);
}

#ageNo {
  color: var(--white);
  background: transparent;
}

#ageYes:hover,
#ageNo:hover {
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .age-gate-box {
    padding: 34px 22px;
  }

  .age-gate-box h2 {
    font-size: 62px;
  }

  .age-gate-actions button {
    width: 100%;
  }
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--dark-2), #0f0f15);
  border: 1px solid rgba(248, 184, 78, 0.35);
  box-shadow: var(--shadow);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 18px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner button {
  flex-shrink: 0;
  border: 1px solid var(--primary);
  padding: 12px 22px;
  border-radius: 999px;
  color: #17110a;
  background: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: .25s ease;
}

.cookie-banner button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

@media (max-width: 576px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner button {
    width: 100%;
  }
}

.ftco-footer a {
  color: #ccc;
  text-decoration: none;
}

.ftco-footer a:hover {
  color: #fff;
}