@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

p, span, div {
  letter-spacing: 1px;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

.header {
  background: #111;
  color: #fff;
  padding: 16px 24px;
  position: relative;
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo-link {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.header__age {
  font-size: 12px;
  background: #e63946;
  color: #fff;
  padding: 2px 8px;
  font-weight: 600;
  border-radius: 2px;
}
.header__burger {
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  display: none;
  padding: 8px;
  z-index: 1001;
}
.header__list {
  display: flex;
  gap: 28px;
  list-style: none;
}
@media (max-width: 768px) {
  .header__list {
    flex-direction: column;
    gap: 16px;
  }
}
.header__list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
.header__list a:hover {
  color: #e63946;
}
@media (max-width: 768px) {
  .header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #111;
    padding: 80px 20px 20px;
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  .header__nav.open {
    display: block;
    transform: translateX(0);
  }
}

/* Анимация иконки бургера */
.close-icon {
  font-size: 32px;
  line-height: 1;
}

/* Затемнение фона при открытом меню */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.hero-chile {
  position: relative;
  height: 100vh;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
@media (max-width: 740px) {
  .hero-chile {
    height: 600px;
    background-color: #000;
  }
}
.hero-chile__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media (max-width: 740px) {
  .hero-chile__background {
    display: none;
  }
}
.hero-chile__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-chile__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-chile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
  z-index: 1;
}
.hero-chile__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-chile__title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .hero-chile__title {
    font-size: 60px;
  }
}
.hero-chile__subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
}
.hero-chile__button {
  display: inline-block;
  padding: 14px 36px;
  background-color: #e63946;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.3s;
}
.hero-chile__button:hover {
  background-color: #c92c3a;
}

.footer {
  background: #111;
  color: #ccc;
  padding: 60px 24px 40px;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.footer__age {
  font-size: 13px;
  background: #e63946;
  padding: 2px 6px;
  font-weight: 600;
  border-radius: 2px;
  color: #fff;
}
.footer__nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
  .footer__nav ul {
    flex-direction: column;
    gap: 12px;
  }
}
.footer__nav ul a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
}
.footer__nav ul a:hover {
  color: #e63946;
}
.footer__bottom {
  text-align: center;
}
.footer__bottom .footer__legal {
  font-size: 14px;
  color: #999;
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer__bottom .footer__copyright {
  font-size: 13px;
  color: #666;
}

.footer__contact {
  margin-top: 8px;
}
.footer__contact .footer__text {
  font-size: 14px;
  color: #aaa;
  line-height: 1.4;
}
.footer__contact .footer__text a {
  color: #ccc;
  text-decoration: none;
}
.footer__contact .footer__text a:hover {
  color: #e63946;
}

.sobre-cl {
  background: #0c0c0c;
  color: #ffffff;
  padding: 100px 20px;
}
.sobre-cl__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.sobre-cl__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.sobre-cl__line {
  width: 60px;
  height: 2px;
  background-color: #e63946;
  margin: 0 auto 30px;
}
.sobre-cl__intro {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 60px;
  line-height: 1.6;
}
.sobre-cl__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .sobre-cl__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sobre-cl__item-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.sobre-cl__item-text {
  font-size: 15px;
  color: #bbbbbb;
  line-height: 1.6;
}

.galeria-cl {
  background: #0c0c0c;
  color: #fff;
  padding: 100px 20px;
}
.galeria-cl__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.galeria-cl__title {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}
.galeria-cl__line {
  width: 60px;
  height: 2px;
  background-color: #e63946;
  margin: 16px auto 30px;
}
.galeria-cl__subtitle {
  font-size: 16px;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
.galeria-cl__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .galeria-cl__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.galeria-cl__item {
  text-align: left;
}
.galeria-cl__item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
}
.galeria-cl__caption {
  display: block;
  font-size: 14px;
  color: #aaa;
}

.ventajas-alt {
  background: #101010;
  color: #fff;
  padding: 100px 20px;
}
.ventajas-alt__container {
  max-width: 1100px;
  margin: 0 auto;
}
.ventajas-alt__title {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.ventajas-alt__line {
  width: 60px;
  height: 2px;
  background-color: #e63946;
  margin: 16px auto 60px;
}
.ventajas-alt__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .ventajas-alt__grid {
    gap: 60px;
  }
}
.ventajas-alt__card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .ventajas-alt__card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.ventajas-alt__number {
  font-size: 36px;
  font-weight: 700;
  color: #e63946;
  min-width: 60px;
}
.ventajas-alt__card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ventajas-alt__card-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

.eventos-cl {
  background: #0c0c0c;
  color: #fff;
  padding: 100px 20px;
}
.eventos-cl__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.eventos-cl__title {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
}
.eventos-cl__line {
  width: 60px;
  height: 2px;
  background-color: #e63946;
  margin: 16px auto 50px;
}
.eventos-cl__grid {
  display: grid;
  gap: 60px;
}
@media (min-width: 768px) {
  .eventos-cl__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.eventos-cl__card {
  background: #1a1a1a;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.eventos-cl__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.eventos-cl__content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.eventos-cl__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.eventos-cl__desc {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 24px;
  line-height: 1.6;
}
.eventos-cl__button {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 10px 24px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.eventos-cl__button:hover {
  background: #c92c3a;
}

.cta-cl {
  background: #e63946;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}
.cta-cl__container {
  max-width: 900px;
  margin: 0 auto;
}
.cta-cl__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
.cta-cl__text {
  font-size: 16px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-cl__button {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #e63946;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.3s;
}
.cta-cl__button:hover {
  background: #f8dcdc;
}

.historia-cl {
  background: #0c0c0c;
  color: #fff;
  padding: 100px 20px;
}
.historia-cl__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.historia-cl__title {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
}
.historia-cl__line {
  width: 60px;
  height: 2px;
  background-color: #e63946;
  margin: 16px auto 50px;
}
.historia-cl__timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid #e63946;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
}
.historia-cl__event {
  position: relative;
}
.historia-cl__year {
  font-size: 22px;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 6px;
  display: block;
}
.historia-cl__text {
  font-size: 20px;
  color: #ccc;
  line-height: 1.6;
}

.estadisticas-cl {
  background: #111;
  color: #fff;
  padding: 80px 20px;
}
.estadisticas-cl__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.estadisticas-cl__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .estadisticas-cl__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.estadisticas-cl__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.estadisticas-cl__number {
  font-size: 42px;
  font-weight: 800;
  color: #e63946;
  margin-bottom: 12px;
}
.estadisticas-cl__label {
  font-size: 16px;
  color: #ccc;
}

.faq-cl {
  background: #0c0c0c;
  color: #fff;
  padding: 100px 20px;
}
.faq-cl__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.faq-cl__title {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
}
.faq-cl__line {
  width: 60px;
  height: 2px;
  background-color: #e63946;
  margin: 16px auto 50px;
}
.faq-cl__accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
.faq-cl__item {
  background: #1a1a1a;
  border-radius: 4px;
  padding: 20px;
  border: 1px solid #2a2a2a;
}
.faq-cl__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  list-style: none;
}
.faq-cl__item summary::marker, .faq-cl__item summary::-webkit-details-marker {
  display: none;
}
.faq-cl__item p {
  margin-top: 12px;
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

.compromiso-cl {
  background: #0c0c0c;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}
.compromiso-cl__container {
  max-width: 900px;
  margin: 0 auto;
}
.compromiso-cl__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  color: #ccc;
}
@media (min-width: 768px) {
  .compromiso-cl__text {
    font-size: 28px;
  }
}

.aboutpage-cl {
  background: #0c0c0c;
  color: #fff;
  padding: 100px 20px;
}
.aboutpage-cl__container {
  max-width: 900px;
  margin: 0 auto;
}
.aboutpage-cl__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
}
.aboutpage-cl__intro {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 60px;
  line-height: 1.7;
  text-align: center;
}
.aboutpage-cl__section {
  margin-bottom: 60px;
}
.aboutpage-cl__subtitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #e63946;
}
.aboutpage-cl__text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
}
.aboutpage-cl__list {
  list-style: disc;
  padding-left: 20px;
  color: #ccc;
}
.aboutpage-cl__list li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.privacy-cl {
  background: #0c0c0c;
  color: #fff;
  padding: 100px 20px;
}
.privacy-cl__container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-cl__title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}
.privacy-cl__block {
  margin-bottom: 40px;
}
.privacy-cl__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 12px;
}
.privacy-cl__text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
}
.privacy-cl__text a {
  color: #e63946;
  text-decoration: underline;
}
.privacy-cl__text a:hover {
  text-decoration: none;
}
.privacy-cl__list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
}
.privacy-cl__list li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #ccc;
}

.terms-cl {
  background: #0c0c0c;
  color: #fff;
  padding: 100px 20px;
}
.terms-cl__container {
  max-width: 900px;
  margin: 0 auto;
}
.terms-cl__title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}
.terms-cl__block {
  margin-bottom: 40px;
}
.terms-cl__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 12px;
}
.terms-cl__text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
}

.responsible-cl {
  background: #0c0c0c;
  color: #fff;
  padding: 100px 20px;
}
.responsible-cl__container {
  max-width: 900px;
  margin: 0 auto;
}
.responsible-cl__title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}
.responsible-cl__block {
  margin-bottom: 40px;
}
.responsible-cl__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 12px;
}
.responsible-cl__text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
}

.cookies-cl {
  background: #0c0c0c;
  color: #fff;
  padding: 100px 20px;
}
.cookies-cl__container {
  max-width: 900px;
  margin: 0 auto;
}
.cookies-cl__title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}
.cookies-cl__block {
  margin-bottom: 40px;
}
.cookies-cl__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 12px;
}
.cookies-cl__text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
}
.cookies-cl__list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
}
.cookies-cl__list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #ccc;
}

.contacto-page {
  background: #0c0c0c;
  color: #fff;
  padding: 100px 20px;
}
.contacto-page__container {
  max-width: 1000px;
  margin: 0 auto;
}
.contacto-page__title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}
.contacto-page__intro {
  font-size: 18px;
  color: #ccc;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.6;
}
.contacto-page__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .contacto-page__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contacto-page__info {
  font-size: 16px;
  color: #ccc;
}
.contacto-page__info a {
  color: #e63946;
  text-decoration: none;
}
.contacto-page__info a:hover {
  text-decoration: underline;
}
.contacto-page__subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #e63946;
}
.contacto-page__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.contacto-page__list li {
  margin-bottom: 12px;
}
.contacto-page__text {
  line-height: 1.6;
}
.contacto-page__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.evento-page {
  background: #0c0c0c;
  color: #fff;
  padding: 100px 20px;
}
.evento-page__container {
  max-width: 900px;
  margin: 0 auto;
}
.evento-page__title {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.evento-page__intro {
  font-size: 18px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 60px;
  text-align: center;
}
.evento-page__section {
  margin-bottom: 50px;
}
.evento-page__subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 14px;
}
.evento-page__text {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
}
.evento-page__cta {
  text-align: center;
  margin-top: 60px;
}
.evento-page__button {
  display: inline-block;
  padding: 14px 36px;
  background: #e63946;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s;
}
.evento-page__button:hover {
  background: #c92c3a;
}

@font-face {
  font-family: "Montserrat";
  src: url("/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "Montserrat";
  background-color: #fff;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 10%;
}

html {
  scroll-behavior: smooth;
}

.main {
  flex: 1 1 auto;
  color: #333333;
}

.wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.games-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.deepshadow {
  text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 22px 30px rgba(0, 0, 0, 0.9);
}

.subtitile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.subtitile__img {
  width: 100px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.age-gate.hidden {
  display: none;
}
.age-gate__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.age-gate__modal {
  position: relative;
  max-width: 400px;
  margin: 15% auto;
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  z-index: 1;
  border-radius: 4px;
}
.age-gate__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #e63946;
}
.age-gate__text {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}
.age-gate__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.age-gate__btn {
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: #e63946;
  color: #fff;
  transition: background 0.3s;
}
.age-gate__btn:hover {
  background: #a0005a;
}
.age-gate__btn--deny {
  background: #555;
}
.age-gate__btn--deny:hover {
  background: #333;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 16px 24px;
  font-size: 14px;
  z-index: 9998;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 600px) {
  .cookie-banner__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.cookie-banner__text {
  margin: 0;
}
.cookie-banner__text a {
  color: #e63946;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  text-decoration: none;
}
.cookie-banner__buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner__btn {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 8px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}
.cookie-banner__btn:hover {
  background: #a0005a;
}
.cookie-banner__btn--decline {
  background: #555;
}
.cookie-banner__btn--decline:hover {
  background: #333;
}

/*# sourceMappingURL=main.css.map */
