@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: var(--color-light);
  text-decoration: none;
}

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

.site-header__link {
  position: relative;
  color: var(--color-light);
  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: var(--color-accent);
}

.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: var(--color-light);
  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.css */
:root {
  --color-bg-start: #1b1f38;
  --color-bg-end: #3c4266;
  --color-accent: #f39c12;
  --color-light: #ffffff;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-start), var(--color-bg-end));
}

.hero-section__background {
  position: absolute;
  inset: 0;
  background: url("/assets/img/1-1.webp") center/cover no-repeat;
  opacity: 0.2;
  filter: blur(4px);
}

.hero-section__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: var(--color-accent);
  opacity: 0.15;
  animation: float 12s infinite ease-in-out;
}

.shape--circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.shape--triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid var(--color-accent);
  top: 60%;
  left: 75%;
  animation-delay: 4s;
}

.shape--square {
  width: 150px;
  height: 150px;
  top: 75%;
  left: 30%;
  animation-delay: 8s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.1);
  }
}
.hero-section__content {
  position: relative;
  text-align: center;
  color: var(--color-light);
  padding: 0 1rem;
  z-index: 1;
  max-width: 800px;
}

.hero-section__title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-section__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.hero-section__buttons .btn {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  margin: 0 0.5rem;
  border-radius: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-bg-start);
  border: none;
}

.btn--outline {
  background: transparent;
  color: var(--color-light);
  border: 2px solid var(--color-light);
}

.btn--primary:hover,
.btn--outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section__title {
    font-size: 2.5rem;
  }
  .hero-section__subtitle {
    font-size: 1rem;
  }
  .hero-section__buttons .btn {
    display: block;
    width: 80%;
    margin: 0.5rem auto;
  }
}
/* age-gate.css */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-gate.hidden {
  display: none;
}

.age-gate__modal,
.age-gate__denied {
  background: #1f1d2b;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 90%;
  width: 320px;
}

.age-gate__modal h2,
.age-gate__denied h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.age-gate__modal .age-gate__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.age-gate__denied p {
  margin: 1rem 0;
}

.hidden {
  display: none !important;
}

/* Botones heredan стили .btn .btn--primary .btn--outline ожидаемые из общей темы */
/* games.css */
:root {
  --color-bg: #1f1d2b;
  --color-glass: rgba(255, 255, 255, 0.06);
  --color-accent: #c59b62;
  --color-text: #fafafa;
}

.games-section {
  padding: 4rem 1rem;
  background: var(--color-bg);
  color: var(--color-text);
}

.games-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.games-section__title {
  font-size: 3rem;
  margin: 0;
}

.games-section__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
}

.games-section__slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.game-card {
  flex: 0 0 220px;
  height: 280px;
  scroll-snap-align: center;
  position: relative;
  background: var(--color-glass);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.game-card__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.game-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.game-card__name {
  display: block;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

/* Hover / focus effects */
.game-card:hover {
  transform: perspective(600px) rotateY(10deg) scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--color-accent);
}

.game-card:hover .game-card__name {
  color: var(--color-accent);
}

/* Hide scrollbar but keep functionality */
.games-section__slider {
  scrollbar-width: none;
}

.games-section__slider::-webkit-scrollbar {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .games-section__title {
    font-size: 2.25rem;
  }
  .game-card {
    flex: 0 0 180px;
    height: 240px;
  }
  .game-card__icon {
    width: 48px;
    height: 48px;
  }
}
/* live.css */
:root {
  --color-bg: #1f1d2b;
  --color-glass: rgba(255, 255, 255, 0.06);
  --color-accent: #c59b62;
  --color-text: #fafafa;
}

.live-section {
  padding: 4rem 1rem;
  background: var(--color-bg);
  color: var(--color-text);
}

.live-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.live-section__title {
  font-size: 3rem;
  margin: 0;
}

.live-section__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
}

.live-section__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.live-card {
  background: var(--color-glass);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-card__info {
  margin-bottom: 1.5rem;
}

.live-card__label {
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.live-card__name {
  font-size: 1.5rem;
  margin: 0.25rem 0;
}

.live-card__date,
.live-card__prize {
  font-size: 1rem;
  opacity: 0.85;
  display: block;
  margin-top: 0.25rem;
}

.live-card__btn {
  align-self: start;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.live-card__btn.btn--primary {
  background: var(--color-accent);
  color: var(--color-bg);
  border: none;
}

.live-card__btn.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}

.live-card__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.live-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .live-section__title {
    font-size: 2.25rem;
  }
  .live-card {
    padding: 1.5rem;
  }
  .live-card__name {
    font-size: 1.25rem;
  }
}
/* why-us.css */
:root {
  --color-bg-start: #2a2e48;
  --color-bg-end: #1f1d2b;
  --color-accent: #c59b62;
  --color-light: #fafafa;
}

.why-section {
  position: relative;
  padding: 6rem 1rem;
  background: linear-gradient(135deg, var(--color-bg-start), var(--color-bg-end));
  color: var(--color-light);
  overflow: hidden;
}

.why-section__decor {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: var(--color-accent);
  opacity: 0.1;
  border-radius: 50%;
}

.why-section__content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.why-section__title {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.why-section__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat__number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-accent);
}

.stat__label {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  opacity: 0.85;
}

.why-section__text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.why-section__btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 2rem;
  background: var(--color-accent);
  color: var(--color-bg-start);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-section__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .why-section__title {
    font-size: 2.25rem;
  }
  .stat__number {
    font-size: 3rem;
  }
  .why-section__stats {
    gap: 1rem;
  }
}
/* about.css */
.about-section {
  padding: 6rem 1rem;
  background: #1f1d2b;
  color: #fafafa;
  text-align: left;
}

.about-section__container {
  max-width: 800px;
  margin: 0 auto;
}

.about-section__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.about-section__intro,
.about-section__text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.about-section__dropcap {
  float: left;
  font-size: 4rem;
  line-height: 1;
  margin-right: 0.5rem;
  color: #c59b62;
}

.about-section__quote {
  font-size: 1.5rem;
  font-style: italic;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid #c59b62;
  opacity: 0.85;
}

.about-section__btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 2rem;
  background: #c59b62;
  color: #1f1d2b;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-section__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .about-section__title {
    font-size: 2.5rem;
  }
  .about-section__intro,
  .about-section__text {
    font-size: 1.125rem;
  }
  .about-section__dropcap {
    font-size: 3rem;
  }
}
/* footer.css */
.site-footer {
  background: var(--color-bg);
  color: var(--color-light);
  padding: 4rem 1rem 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-text {
  opacity: 0.9;
}

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

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

.footer-link {
  color: var(--color-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social__link {
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-social__link:hover {
  transform: translateY(-3px);
}

/* Bottom bar */
.site-footer__bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 576px) {
  .site-footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}
.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;
}

/* about-hero.css */
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  background-color: #1b1f38;
  overflow: hidden;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 43, 0.6);
}

.about-hero__content {
  position: relative;
  text-align: center;
  color: var(--color-light);
  padding: 0 1rem;
  max-width: 800px;
  z-index: 1;
}

.about-hero__title {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.about-hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.about-hero__btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-hero__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero__title {
    font-size: 2.5rem;
  }
  .about-hero__subtitle {
    font-size: 1rem;
  }
}
/* about-mission.css */
:root {
  --color-bg: #1f1d2b;
  --color-light: #fafafa;
  --color-accent: #c59b62;
}

.about-mission {
  padding: 6rem 1rem;
  background: var(--color-bg);
  color: var(--color-light);
  text-align: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.mission-item__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.mission-item__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mission-item__text {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  .mission-item__icon {
    font-size: 2.5rem;
  }
}
/* about-values.css */
.about-values {
  padding: 6rem 1rem;
  background: #282c48;
  color: var(--color-light);
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.value-item {
  padding: 2rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.value-item__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.value-item__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-item__text {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .value-item__icon {
    font-size: 2rem;
  }
}
/* about-team.css */
.about-team {
  padding: 6rem 1rem;
  background: var(--color-bg);
  color: var(--color-light);
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.team-member {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.team-member__photo {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  height: 250px;
}

.team-member__name {
  font-size: 1.25rem;
  margin: 1rem 0 0.25rem;
}

.team-member__role {
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .team-member__photo {
    height: 200px;
  }
}
/* events-types.css */
.event-types-section {
  padding: 6rem 1rem;
  background: var(--color-bg);
  color: var(--color-light);
  text-align: center;
}

.event-types__header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 3rem;
  margin: 0;
}

.section-subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  margin-top: 0.5rem;
}

.event-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.type-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.type-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.type-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.type-card__text {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* upcoming-events.css */
.upcoming-events-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #282c48, #1f1d2b);
  color: var(--color-light);
  text-align: center;
}

.upcoming-events__header {
  margin-bottom: 3rem;
}

.upcoming-events__list {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.event-card {
  flex: 0 0 280px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  overflow: hidden;
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.event-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.event-card__body {
  padding: 1.5rem;
}

.event-card__name {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.event-card__date {
  display: block;
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.event-card__btn {
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  border-radius: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary.event-card__btn {
  background: var(--color-accent);
  color: var(--color-bg);
  border: none;
}

.btn--outline.event-card__btn {
  background: transparent;
  color: var(--color-light);
  border: 2px solid var(--color-light);
}

.event-card__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* hide scrollbar */
.upcoming-events__list {
  scrollbar-width: none;
}

.upcoming-events__list::-webkit-scrollbar {
  display: none;
}

/* privacy.css */
:root {
  --color-bg: #1f1d2b;
  --color-light: #fafafa;
  --color-accent: #c59b62;
  --max-width: 900px;
}

.privacy-policy {
  background: var(--color-bg);
  color: var(--color-light);
  padding: 4rem 1rem;
}

.privacy-policy__container {
  max-width: var(--max-width);
  margin: 0 auto;
  line-height: 1.6;
}

.privacy-policy__title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.privacy-policy__toc {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 3rem;
}

.privacy-policy__toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-policy__toc li + li {
  margin-top: 0.5rem;
}

.privacy-policy__toc a {
  color: var(--color-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-policy__toc a:hover {
  color: var(--color-accent);
}

.privacy-section + .privacy-section {
  margin-top: 3rem;
}

.privacy-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.privacy-section p,
.privacy-section ul {
  margin-bottom: 1rem;
}

.privacy-section ul {
  list-style: disc inside;
}

.privacy-policy__link {
  color: var(--color-accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-policy__title {
    font-size: 2.5rem;
  }
  .privacy-policy__toc {
    font-size: 0.9rem;
  }
  .privacy-section h2 {
    font-size: 1.75rem;
  }
}
/* terms.css */
:root {
  --color-bg: #1f1d2b;
  --color-light: #fafafa;
  --color-accent: #c59b62;
  --max-width: 900px;
}

.terms-conditions {
  background: var(--color-bg);
  color: var(--color-light);
  padding: 4rem 1rem;
}

.terms-conditions__container {
  max-width: var(--max-width);
  margin: 0 auto;
  line-height: 1.6;
}

.terms-conditions__title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.terms-conditions__toc {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 3rem;
}

.terms-conditions__toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-conditions__toc li + li {
  margin-top: 0.5rem;
}

.terms-conditions__toc a {
  color: var(--color-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-conditions__toc a:hover {
  color: var(--color-accent);
}

.terms-section + .terms-section {
  margin-top: 3rem;
}

.terms-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.terms-section p,
.terms-section ul {
  margin-bottom: 1rem;
}

.terms-section ul {
  list-style: disc inside;
}

.terms-policy__link {
  color: var(--color-accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-conditions__title {
    font-size: 2.5rem;
  }
  .terms-conditions__toc {
    font-size: 0.9rem;
  }
  .terms-section h2 {
    font-size: 1.75rem;
  }
}
/* contact.css */
.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 1rem;
  background: var(--color-bg);
  color: var(--color-light);
}

@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}
.contact-section__info {
  max-width: 500px;
}

.contact-section__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-section__text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-info-list li {
  margin-bottom: 0.75rem;
}

.contact-section__map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 0.5rem;
}

.contact-section__form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  width: 440px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form__title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group label span {
  color: var(--color-accent);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--color-light);
  font-size: 1rem;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(197, 155, 98, 0.3);
}

.error-message {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: #e74c3c;
  height: 1em;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal--visible {
  display: flex;
}

.modal__content {
  background: #2a2e48;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 320px;
  width: 90%;
  position: relative;
  color: var(--color-light);
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.5rem;
  cursor: pointer;
}

/* faq.css */
.faq-section {
  padding: 6rem 1rem;
  background: #1f1d2b;
  color: #fafafa;
  text-align: center;
}

.faq-section__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section__title {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-item__question {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-item__icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item__answer {
  max-height: 0;
  padding: 0 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 200px;
  opacity: 1;
  padding: 1rem 1.5rem 1.5rem;
}

.faq-item--open .faq-item__question {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .faq-section__title {
    font-size: 2.25rem;
  }
  .faq-item__question {
    font-size: 1.125rem;
  }
  .faq-item__answer {
    font-size: 0.95rem;
  }
}
/* loyalty.css */
.timeline-section {
  padding: 4rem 1rem;
  background: #1f1d2b;
  color: #fafafa;
}

.timeline-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.timeline-section__title {
  font-size: 3rem;
  margin: 0;
}

.timeline-section__subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  margin-top: 0.5rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2.5rem;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: 2px;
  height: 100%;
  background: var(--color-accent);
}

.timeline__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.timeline__marker {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #1f1d2b;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.timeline__content {
  flex-grow: 1;
}

.timeline__step-title {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.timeline__content p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-section__title {
    font-size: 2.25rem;
  }
  .timeline-section__subtitle {
    font-size: 1rem;
  }
  .timeline__marker {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }
  .timeline__step-title {
    font-size: 1.25rem;
  }
}
/* stats.css */
.stats-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #282c48, #1f1d2b);
  color: #fafafa;
  text-align: center;
}

.stats-section__header {
  margin-bottom: 3rem;
}

.stats-section__title {
  font-size: 3rem;
  margin: 0;
}

.stats-section__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.stats-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stat-item__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-item__number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 1rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-section__title {
    font-size: 2.5rem;
  }
  .stat-item__number {
    font-size: 2rem;
  }
}
@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 */
