@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: #ff006e;
  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: #ff5ca0;
}
@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 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
@media (max-width: 740px) {
  .hero {
    background-color: #000;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero__content .hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero__content .hero__subtitle {
  font-size: 20px;
  margin-bottom: 32px;
}
.hero__content .hero__button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #c4007a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  transition: background 0.3s;
}
.hero__content .hero__button:hover {
  background-color: #a30066;
}
.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4);
}
@media (max-width: 740px) {
  .hero__background img {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 16px;
  }
  .hero .hero__title {
    font-size: 32px;
  }
  .hero .hero__subtitle {
    font-size: 16px;
  }
  .hero .hero__button {
    padding: 12px 24px;
    font-size: 14px;
  }
}
.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: #c4007a;
  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: #ff5ca0;
}
.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: #ff5ca0;
}

.menu {
  background: linear-gradient(135deg, #f2f2f2, #ffffff);
  padding: 100px 20px;
}
.menu__container {
  max-width: 1200px;
  margin: 0 auto;
}
.menu__header {
  text-align: center;
  margin-bottom: 60px;
}
.menu__header .menu__title {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  position: relative;
}
.menu__header .menu__title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #c4007a;
  display: block;
  margin: 16px auto 0;
}
.menu__header .menu__subtitle {
  font-size: 18px;
  color: #555;
  margin-top: 16px;
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.menu__card {
  background: #fff;
  padding: 36px 28px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}
.menu__card:hover {
  transform: translateY(-8px);
}
.menu__card--accent-left::before, .menu__card--accent-right::before {
  content: "";
  position: absolute;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #c4007a, #ff006e);
}
.menu__card--accent-left::before {
  left: 0;
}
.menu__card--accent-right::before {
  right: 0;
}
.menu__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.menu__icon img {
  width: 100%;
  height: auto;
}
.menu__card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #c4007a;
}
.menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu__list li {
  font-size: 16px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.menu__list li::before {
  content: "⟡";
  position: absolute;
  left: 0;
  color: #ff006e;
  font-size: 14px;
}

.history {
  background: #ffffff;
  padding: 100px 20px;
  color: #111;
}
.history__container {
  max-width: 900px;
  margin: 0 auto;
}
.history__title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}
.history__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #c4007a;
  margin: 16px auto 0;
}
.history__timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid #c4007a;
}
.history__item {
  position: relative;
  margin-bottom: 50px;
}
.history__item::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 1px;
  width: 16px;
  height: 16px;
  background: #c4007a;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #c4007a;
}
.history__year {
  font-size: 18px;
  font-weight: 700;
  color: #c4007a;
  margin-bottom: 8px;
}
.history__text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.events {
  padding: 100px 20px;
  background-color: #fafafa;
  color: #111;
}
.events__container {
  max-width: 1200px;
  margin: 0 auto;
}
.events__title {
  font-size: 40px;
  text-align: center;
  font-weight: 800;
}
.events__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #c4007a;
  margin: 16px auto 0;
}
.events__subtitle {
  text-align: center;
  margin-top: 12px;
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}
.events__card {
  background-color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.events__card:hover {
  transform: translateY(-6px);
}
.events__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.events__content {
  padding: 24px;
}
.events__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #c4007a;
}
.events__desc {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}
.events__button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #c4007a;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.events__button:hover {
  background-color: #a60063;
}

.events__legal-note {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 10px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq {
  padding: 100px 20px;
  background: #fff;
  color: #111;
}
.faq__container {
  max-width: 800px;
  margin: 0 auto;
}
.faq__title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
}
.faq__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #c4007a;
  margin: 16px auto 0;
}
.faq__item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.faq__question {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #c4007a;
  cursor: pointer;
  width: 100%;
  text-align: left;
  position: relative;
}
.faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 24px;
  transition: transform 0.3s;
}
.faq__question.active::after {
  content: "–";
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  font-size: 16px;
  margin-top: 10px;
}
.faq__answer.open {
  max-height: 300px;
  opacity: 1;
}

.advantages {
  background: linear-gradient(135deg, #fff, #f5f5f5);
  padding: 100px 20px;
  color: #111;
}
.advantages__container {
  max-width: 1200px;
  margin: 0 auto;
}
.advantages__title {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
}
.advantages__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #c4007a;
  margin: 16px auto 0;
}
.advantages__subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-top: 12px;
  margin-bottom: 60px;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.advantages__item {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s;
}
.advantages__item:hover {
  transform: translateY(-6px);
}
.advantages__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}
.advantages__icon img {
  width: 100%;
  height: auto;
}
.advantages__heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #c4007a;
}
.advantages__text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.special-offer {
  background: linear-gradient(90deg, #c4007a, #ff006e);
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}
.special-offer__container {
  max-width: 800px;
  margin: 0 auto;
}
.special-offer__title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
}
.special-offer__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #fff;
  margin: 16px auto 0;
}
.special-offer__text {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.special-offer__button {
  display: inline-block;
  padding: 14px 36px;
  background-color: #fff;
  color: #c4007a;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}
.special-offer__button:hover {
  background-color: #f4f4f4;
  color: #a60063;
}

.countdown {
  background: #1a1a1a;
  color: #fff;
  padding: 100px 20px;
}
.countdown__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.countdown__content {
  flex: 1 1 400px;
}
.countdown__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}
.countdown__event-name {
  font-size: 24px;
  font-weight: 600;
  color: #ff5ca0;
}
.countdown__desc {
  font-size: 16px;
  margin: 20px 0;
  color: #ccc;
}
.countdown__timer {
  display: flex;
  gap: 20px;
  font-size: 32px;
  font-weight: bold;
  margin: 30px 0;
}
.countdown__timer div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown__timer div small {
  font-size: 14px;
  color: #aaa;
  margin-top: 4px;
}
.countdown__button {
  display: inline-block;
  background: #c4007a;
  padding: 14px 32px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
}
.countdown__button:hover {
  background: #a60063;
}
.countdown__image {
  flex: 1 1 400px;
}
.countdown__image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.gallery {
  padding: 100px 20px;
  background: #fff;
  color: #111;
}
.gallery__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.gallery__title {
  font-size: 38px;
  font-weight: 800;
}
.gallery__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #c4007a;
  margin: 16px auto 0;
}
.gallery__subtitle {
  font-size: 16px;
  color: #555;
  margin: 20px auto 60px;
  max-width: 700px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.gallery__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.gallery__img:hover {
  transform: scale(1.02);
}

.text-block {
  padding: 100px 20px;
  background: #fff;
  color: #111;
}
.text-block__container {
  max-width: 900px;
  margin: 0 auto;
}
.text-block__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #c4007a;
  text-align: center;
}
.text-block__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.about {
  padding: 100px 20px;
  background: #fafafa;
  color: #111;
}
.about__container {
  max-width: 1000px;
  margin: 0 auto;
}
.about__title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}
.about__intro {
  font-size: 18px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: #555;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about__block {
  background: #fff;
  padding: 32px;
  border-left: 4px solid #c4007a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.about__block h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #c4007a;
}
.about__block p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
.about__cta {
  text-align: center;
  margin-top: 60px;
}
.about__button {
  display: inline-block;
  background: #c4007a;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.3s;
}
.about__button:hover {
  background: #a0005a;
}

.privacy {
  background: #fff;
  color: #111;
  padding: 100px 20px;
}
.privacy__container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy__container__title {
  font-size: 24px;
  font-weight: 700;
  color: #c4007a;
  margin-top: 40px;
  margin-bottom: 16px;
}
.privacy__container__title:first-of-type {
  font-size: 38px;
  text-align: center;
  margin-top: 0;
  color: #111;
}
.privacy__container__text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
}
.privacy__container__text a {
  color: #c4007a;
  text-decoration: none;
}
.privacy__container__text a:hover {
  text-decoration: underline;
}

.contact {
  padding: 100px 20px;
  background: #fff;
  color: #111;
}
.contact__container {
  max-width: 1000px;
  margin: 0 auto;
}
.contact__title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}
.contact__subtitle {
  font-size: 18px;
  text-align: center;
  color: #555;
  margin-bottom: 50px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact__info {
    flex-direction: row;
  }
}
.contact__block {
  flex: 1;
}
.contact__block h2 {
  font-size: 22px;
  color: #c4007a;
  margin-bottom: 16px;
}
.contact__block p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}
.contact__block p a {
  color: #c4007a;
  text-decoration: none;
}
.contact__block p a:hover {
  text-decoration: underline;
}
.contact__map {
  flex: 1;
  min-height: 300px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.event-page {
  padding: 80px 20px;
  background: #fff;
  color: #111;
}
.event-page__container {
  max-width: 1000px;
  margin: 0 auto;
}
.event-page__title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}
.event-page__intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}
.event-page__image {
  margin-bottom: 50px;
}
.event-page__image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.event-page__content h2 {
  font-size: 24px;
  margin: 30px 0 16px;
  color: #c4007a;
}
.event-page__content ul {
  padding-left: 20px;
  margin-bottom: 30px;
}
.event-page__content ul li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
}
.event-page__content ul li::before {
  content: "⟡";
  color: #ff006e;
  margin-right: 8px;
}
.event-page__content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}
.event-page__cta {
  text-align: center;
  margin-top: 40px;
}
.event-page__button {
  display: inline-block;
  padding: 14px 36px;
  background: #c4007a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
}
.event-page__button:hover {
  background: #a0005a;
}

@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;
  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: #c4007a;
}
.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: #c4007a;
  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: #ff5ca0;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  text-decoration: none;
}
.cookie-banner__buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner__btn {
  background: #c4007a;
  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 */
