@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;
  /* Другие свойства по необходимости */
  box-sizing: border-box;
}

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.css */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  padding: 1rem 2rem;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header--scrolled {
  background: rgba(31, 29, 43, 0.85);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-header__logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

/* Nav links */
.site-header__nav {
  display: flex;
  gap: 2rem;
}

.site-header__link {
  position: relative;
  color: #fff;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.site-header__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.site-header__link:hover,
.site-header__link:focus {
  color: #fff;
}

.site-header__link:hover::after,
.site-header__link:focus::after {
  width: 100%;
}

/* Burger button */
.site-header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background: #fff;
  transition: background 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 1rem;
    width: 80%;
  }
  .site-header__burger {
    display: block;
  }
  .site-header__nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(31, 29, 43, 0.95);
    backdrop-filter: blur(8px);
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-header__nav--open {
    max-height: 250px; /* adjust based on number of links */
  }
  .site-header__nav .site-header__link {
    padding: 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.hero-spotlight {
  background: linear-gradient(135deg, #0b0b0f 0%, #1a102e 100%);
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-spotlight__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.hero-spotlight__intro {
  flex: 1 1 550px;
  max-width: 650px;
}

.hero-spotlight__label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #a679ff;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
}

.hero-spotlight__title {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.hero-spotlight__text {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 35px;
}

.hero-spotlight__btn {
  display: inline-block;
  background: #e8b34c;
  color: #000;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(232, 179, 76, 0.3);
}

.hero-spotlight__btn:hover {
  background: #ffc451;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 196, 81, 0.4);
}

.hero-spotlight__info {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.03);
}

.hero-spotlight__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-spotlight__list strong {
  color: #e8b34c;
}

@media (max-width: 768px) {
  .hero-spotlight__wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .hero-spotlight__title {
    font-size: 2.4rem;
  }
  .hero-spotlight__btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.gervation-age {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.gervation-age__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 26, 0.9);
}

.gervation-age__modal {
  position: relative;
  background: #1c1828;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 12px;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 500px;
  width: 90%;
}

.gervation-age__title {
  font-size: 2rem;
  color: #e8b34c;
  margin-bottom: 20px;
}

.gervation-age__text {
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.85;
}

.gervation-age__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.gervation-age__btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gervation-age__btn--yes {
  background: #e8b34c;
  color: #000;
}

.gervation-age__btn--yes:hover {
  background: #ffc451;
}

.gervation-age__btn--no {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.gervation-age__btn--no:hover {
  background: rgba(255, 255, 255, 0.1);
}

.atmosphere {
  background: #15121e;
  color: #fff;
  padding: 100px 0;
}

.atmosphere__wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.atmosphere__text {
  flex: 1 1 500px;
}

.atmosphere__title {
  font-size: 2.6rem;
  color: #e8b34c;
  margin-bottom: 20px;
}

.atmosphere__desc {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 30px;
}

.atmosphere__btn {
  display: inline-block;
  background: #e8b34c;
  color: #000;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.atmosphere__btn:hover {
  background: #ffc451;
  transform: translateY(-2px);
}

.atmosphere__image {
  flex: 1 1 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.atmosphere__image img {
  width: 100%;
  height: auto;
  display: block;
}

.evening-program {
  background: #1a1627;
  color: #fff;
  padding: 100px 0;
}

.evening-program__title {
  font-size: 2.6rem;
  color: #e8b34c;
  text-align: center;
  margin-bottom: 15px;
}

.evening-program__subtitle {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto 60px;
}

.evening-program__timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 60px;
  border-left: 2px solid #e8b34c;
}

.evening-expectation {
  background: linear-gradient(145deg, #0c0a13 0%, #191429 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.evening-expectation__title {
  font-size: 2.8rem;
  color: #e8b34c;
  margin-bottom: 40px;
}

.evening-expectation__content {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.15rem;
  line-height: 1.9;
  opacity: 0.88;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.evening-expectation__btn {
  display: inline-block;
  background: #e8b34c;
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.evening-expectation__btn:hover {
  background: #ffc451;
  transform: translateY(-2px);
}

.vip-code {
  background: radial-gradient(circle at center, #0f0c1a, #0a0914 80%);
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.vip-code__title {
  font-size: 2.6rem;
  color: #e8b34c;
  margin-bottom: 60px;
}

.vip-code__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.vip-code__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px 25px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.vip-code__item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.vip-code__key {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #e8b34c;
}

.vip-code__desc {
  opacity: 0.85;
  font-size: 1.05rem;
  line-height: 1.7;
}

.gallery-slice {
  background: #0d0b13;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.gallery-slice__title {
  font-size: 2.5rem;
  color: #e8b34c;
  margin-bottom: 60px;
}

.gallery-slice__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.gallery-slice__item {
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gallery-slice__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-slice__item:hover img {
  transform: scale(1.05);
}

.night-bar {
  background: #15121e;
  color: #fff;
  padding: 100px 0;
}

.night-bar__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.night-bar__image {
  flex: 1 1 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.night-bar__image img {
  width: 100%;
  height: auto;
  display: block;
}

.night-bar__content {
  flex: 1 1 500px;
}

.night-bar__title {
  font-size: 2.5rem;
  color: #e8b34c;
  margin-bottom: 20px;
}

.night-bar__desc {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.88;
}

.our-tables {
  background: #0f0c1a;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.our-tables__title {
  font-size: 2.5rem;
  color: #e8b34c;
  margin-bottom: 60px;
}

.our-tables__scene {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.table {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #1e1a30, #0d0b14);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.table:hover {
  transform: translateY(-5px);
  background: #1d1831;
}

.table h3 {
  font-size: 1.2rem;
  color: #e8b34c;
  margin-bottom: 8px;
}

.table span {
  opacity: 0.8;
  font-size: 0.95rem;
}

.our-tables__cta {
  display: inline-block;
  background: #e8b34c;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.our-tables__cta:hover {
  background: #ffc451;
}

.gervation-footer {
  background: #0f0c1a;
  color: #fff;
  padding: 80px 0 30px;
  font-size: 1rem;
}

.gervation-footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gervation-footer__col {
  flex: 1 1 250px;
  min-width: 220px;
}

.gervation-footer__title {
  font-size: 1.25rem;
  color: #e8b34c;
  margin-bottom: 20px;
}

.gervation-footer__text {
  line-height: 1.7;
  opacity: 0.85;
}

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

.gervation-footer__link {
  display: inline-block;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  margin-bottom: 12px;
  transition: opacity 0.3s ease;
}

.gervation-footer__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.gervation-footer__bottom {
  text-align: center;
  margin-top: 60px;
  opacity: 0.5;
  font-size: 0.95rem;
}

.hero-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  background-color: #fff;
  color: #fff;
}
@media (max-width: 740px) {
  .hero-pages {
    align-items: center;
    justify-content: center;
  }
}
.hero-pages__title {
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-intro {
  background: #0f0c1a;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.about-intro__title {
  font-size: 2.8rem;
  color: #e8b34c;
  margin-bottom: 20px;
}

.about-intro__text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.85;
}

.about-values {
  background: #15121f;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.about-values__title {
  font-size: 2.5rem;
  color: #e8b34c;
  margin-bottom: 50px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.value-box__icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.value-box__title {
  font-size: 1.4rem;
  color: #e8b34c;
  margin-bottom: 10px;
}

.value-box p {
  opacity: 0.85;
  font-size: 1rem;
  line-height: 1.6;
}

.about-team {
  background: #0f0c1a;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.about-team__title {
  font-size: 2.5rem;
  color: #e8b34c;
  margin-bottom: 20px;
}

.about-team__desc {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.8;
}

.about-gallery {
  background: #15121f;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.about-gallery__title {
  font-size: 2.5rem;
  color: #e8b34c;
  margin-bottom: 40px;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.about-gallery__grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-gallery__grid img:hover {
  transform: scale(1.05);
}

.about-cta {
  background: #0f0c1a;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.about-cta__title {
  font-size: 2.5rem;
  color: #e8b34c;
  margin-bottom: 15px;
}

.about-cta__text {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 30px;
}

.about-cta__btn {
  display: inline-block;
  background: #e8b34c;
  color: #000;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-cta__btn:hover {
  background: #ffc451;
  transform: translateY(-2px);
}

.events-hero {
  background: linear-gradient(135deg, #0f0c1a 0%, #1a1429 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.events-hero__title {
  font-size: 2.8rem;
  color: #e8b34c;
  margin-bottom: 20px;
}

.events-hero__text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.85;
}

.events-month {
  background: #15121f;
  color: #fff;
  padding: 80px 0;
}

.events-month__title {
  font-size: 2.3rem;
  text-align: center;
  color: #e8b34c;
  margin-bottom: 50px;
}

.events-month__table {
  display: grid;
  gap: 20px;
}

.event-row {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px 30px;
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  align-items: center;
  gap: 20px;
  font-size: 1.05rem;
}

.event-date {
  font-weight: bold;
  color: #e8b34c;
}

.event-note {
  opacity: 0.8;
  text-align: right;
}

.events-gallery {
  background: #0f0c1a;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.events-gallery__title {
  font-size: 2.4rem;
  color: #e8b34c;
  margin-bottom: 40px;
}

.events-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.events-gallery__grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.events-gallery__grid img:hover {
  transform: scale(1.04);
}

.events-cta {
  background: #1b1728;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.events-cta__title {
  font-size: 2.3rem;
  color: #e8b34c;
  margin-bottom: 15px;
}

.events-cta__text {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.events-cta__btn {
  display: inline-block;
  background: #e8b34c;
  color: #000;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.events-cta__btn:hover {
  background: #ffc451;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .event-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .event-note {
    text-align: center;
  }
}
.privacy-policy {
  background: #0f0c1a;
  color: #fff;
  font-family: inherit;
  padding-bottom: 80px;
}

.privacy-hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, #1a1429, #0f0c1a);
  text-align: center;
}

.privacy-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #e8b34c;
}

.privacy-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.6;
}

.privacy-section {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.privacy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #e8b34c;
}

.privacy-section p,
.privacy-section ul {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.privacy-section ul {
  padding-left: 20px;
  margin-top: 10px;
}

.privacy-section ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-title {
    font-size: 2.2rem;
  }
  .privacy-subtitle {
    font-size: 1.05rem;
  }
  .privacy-section h2 {
    font-size: 1.5rem;
  }
  .privacy-section {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .privacy-title {
    font-size: 1.8rem;
  }
  .privacy-subtitle {
    font-size: 1rem;
  }
  .privacy-section h2 {
    font-size: 1.3rem;
  }
}
.terms-page {
  background: #0f0c1a;
  color: #fff;
  font-family: inherit;
  padding-bottom: 80px;
}

.terms-hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, #1a1429, #0f0c1a);
  text-align: center;
}

.terms-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #e8b34c;
}

.terms-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.6;
}

.terms-section {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.terms-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #e8b34c;
}

.terms-section p,
.terms-section ul {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.terms-section ul {
  padding-left: 20px;
  margin-top: 10px;
}

.terms-section ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-title {
    font-size: 2.2rem;
  }
  .terms-subtitle {
    font-size: 1.05rem;
  }
  .terms-section h2 {
    font-size: 1.5rem;
  }
  .terms-section {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .terms-title {
    font-size: 1.8rem;
  }
  .terms-subtitle {
    font-size: 1rem;
  }
  .terms-section h2 {
    font-size: 1.3rem;
  }
}
.contact-header {
  background: linear-gradient(135deg, #0f0c1a 0%, #1a1429 100%);
  color: #fff;
  padding: 100px 20px 60px;
  text-align: center;
}

.contact-header__title {
  font-size: 2.8rem;
  color: #e8b34c;
  margin-bottom: 20px;
}

.contact-header__text {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-details {
  background: #15121f;
  color: #fff;
  padding: 80px 0;
}

.contact-details__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.contact-details__info {
  flex: 1;
  min-width: 300px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-details__info a {
  color: #e8b34c;
  text-decoration: none;
}

.contact-details__map {
  flex: 1;
  min-width: 300px;
  height: 300px;
}

.contact-details__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.form-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #1c182a;
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
  border: 1px solid #e8b34c;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.contact-cta {
  background: #1b1728;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.contact-cta h2 {
  font-size: 2.3rem;
  color: #e8b34c;
  margin-bottom: 15px;
}

.contact-cta p {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta__btn {
  display: inline-block;
  background: #e8b34c;
  color: #000;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-cta__btn:hover {
  background: #ffc451;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-details__wrapper {
    flex-direction: column;
  }
  .contact-form {
    padding: 0 10px;
  }
}
.contact-form-section {
  background: #0f0c1a;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.contact-form__title {
  font-size: 2.2rem;
  color: #e8b34c;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

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

.contact-form button {
  background: #e8b34c;
  color: #000;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #ffc451;
}

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

html {
  scroll-behavior: smooth;
}

.main {
  flex: 1 1 auto;
  scroll-behavior: smooth;
  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;
}

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