@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;
  color: #fff;
}

/* 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: 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-new.css */
:root {
  --clr-bg-start: #0f141e;
  --clr-bg-end: #181c2e;
  --clr-accent: #e74c3c;
  --clr-accent2: #1abc9c;
  --clr-text-main: #f5f5f5;
  --clr-text-secondary: #b0bec5;
}

.hero-new {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background: linear-gradient(135deg, var(--clr-bg-start), var(--clr-bg-end));
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 2rem 1rem;
}

.hero-new__bg {
  position: absolute;
  inset: 0;
  background: url("images/hero-bg-pattern.png") center/cover; /* легкий паттерн */
  opacity: 0.1;
}

.hero-new__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

.hero-new__text {
  color: var(--clr-text-main);
}

.hero-new__title {
  font-size: 3rem;
  margin: 0 0 1rem;
  color: var(--clr-accent2);
}

.hero-new__tagline {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--clr-text-secondary);
}

.hero-new__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.hero-new__features li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.hero-new__features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.75rem;
}

.hero-new__buttons .btn {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-text-main);
}

.btn--secondary {
  background: transparent;
  color: var(--clr-accent2);
  border: 2px solid var(--clr-accent2);
}

.btn--primary:hover {
  background: var(--clr-accent);
  transform: translateY(-2px);
}

.btn--secondary:hover {
  background: var(--clr-accent2);
  color: var(--clr-text-main);
  transform: translateY(-2px);
}

.hero-new__image img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-new__title {
    font-size: 2.5rem;
  }
  .hero-new__tagline {
    font-size: 1rem;
  }
  .hero-new__features li {
    font-size: 0.9rem;
  }
  .hero-new__buttons .btn {
    width: 100%;
    text-align: center;
  }
}
/* games.css */
:root {
  --clr-bg-start: #0f141e;
  --clr-bg-end: #181c2e;
  --clr-accent: #e74c3c;
  --clr-text-main: #f5f5f5;
  --clr-text-secondary: #b0bec5;
}

.games-section {
  padding: 4rem 1rem;
  background: linear-gradient(120deg, var(--clr-bg-start), var(--clr-bg-end));
  color: var(--clr-text-main);
}

.games-section__title {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 2rem;
  color: var(--clr-accent);
}

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

.game-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-block__icon {
  font-size: 52px;
  margin-bottom: 1rem;
}

.game-block__name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--clr-accent);
}

.game-block__desc {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--clr-text-secondary);
}

.game-block__btn {
  margin-top: auto;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  color: var(--clr-bg-start);
  background: var(--clr-accent);
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.game-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-block__btn:hover {
  background: var(--clr-accent);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .games-section__title {
    font-size: 2.25rem;
  }
  .game-block {
    padding: 1.5rem;
  }
}
/* live-tournaments.css */
:root {
  --lt-bg-start: #081921;
  --lt-bg-end: #14202b;
  --lt-accent: #e74c3c;
  --lt-line: #1abc9c;
  --lt-text: #f5f5f5;
  --lt-text-secondary: #b0bec5;
}

.live-tournaments {
  background: linear-gradient(135deg, var(--lt-bg-start), var(--lt-bg-end));
  color: var(--lt-text);
  padding: 4rem 1rem;
  position: relative;
}

.live-tournaments__title {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 3rem;
  color: var(--lt-line);
}

.live-tournaments__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.live-tournaments__timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--lt-line);
  transform: translateX(-50%);
}

.event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.event--alt {
  grid-template-columns: 1fr 1fr;
}

.event:nth-child(even) {
  direction: rtl; /* меняем стороны */
}

.event:nth-child(even) .event__content {
  text-align: right;
}

.event:nth-child(even) .event__content .btn {
  margin-left: 0;
  margin-right: auto;
}

.event__date {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--lt-accent);
}

.event__date span {
  display: block;
  font-size: 0.9rem;
  color: var(--lt-text-secondary);
}

.event__content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin: 0 2rem;
}

.event__content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: var(--lt-line);
}

.event__content p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--lt-text-secondary);
  line-height: 1.5;
}

.event__content .btn {
  display: inline-block;
}

@media (max-width: 768px) {
  .event,
  .event:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: left;
  }
  .event__content {
    margin: 1rem 0 0 0;
  }
  .live-tournaments__title {
    font-size: 2.25rem;
  }
}
/* reservations.css */
:root {
  --rs-bg: #081921;
  --rs-accent: #e74c3c;
  --rs-number-bg: #1abc9c;
  --rs-text: #f5f5f5;
  --rs-text-secondary: #b0bec5;
}

.reservations-section {
  background: linear-gradient(120deg, var(--rs-bg), #0f1c2d);
  color: var(--rs-text);
  padding: 4rem 1rem;
  text-align: center;
}

.reservations-section__title {
  font-size: 2.75rem;
  margin-bottom: 2.5rem;
  color: var(--rs-accent);
}

.reservations-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--rs-number-bg);
  color: var(--rs-text);
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__info {
  text-align: left;
}

.step__title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--rs-accent);
}

.step__desc {
  font-size: 1rem;
  margin: 0;
  color: var(--rs-text-secondary);
}

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

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

/* Responsive */
@media (max-width: 600px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .step__info {
    text-align: center;
  }
}
/* philosophy.css */
:root {
  --clr-bg-start: #0d111f;
  --clr-bg-end: #161b2f;
  --clr-accent: #e67e22;
  --clr-text-main: #ecf0f1;
  --clr-text-secondary: #95a5a6;
}

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

.philosophy-section__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-size: 12rem;
  font-weight: 900;
  color: var(--clr-text-secondary);
  opacity: 0.05;
  white-space: nowrap;
  pointer-events: none;
}

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

.philosophy-section__title {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--clr-accent);
}

.philosophy-section__text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--clr-text-secondary);
}

.philosophy-section__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  text-align: left;
  max-width: 600px;
}

.philosophy-section__list li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.philosophy-section__list strong {
  color: var(--clr-accent);
}

@media (max-width: 768px) {
  .philosophy-section__bg-text {
    font-size: 6rem;
  }
  .philosophy-section__title {
    font-size: 2.25rem;
  }
  .philosophy-section__text,
  .philosophy-section__list li {
    font-size: 1rem;
  }
}
/* testimonials.css */
:root {
  --clr-bg-start: #0f141e;
  --clr-bg-end: #181c2e;
  --clr-accent: #1abc9c;
  --clr-text-main: #ecf0f1;
  --clr-text-secondary: #95a5a6;
}

.testimonials-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--clr-bg-start), var(--clr-bg-end));
  color: var(--clr-text-main);
  text-align: center;
}

.testimonials-section__title {
  font-size: 2.75rem;
  margin-bottom: 2.5rem;
  color: var(--clr-accent);
}

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

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

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

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

.testimonial__text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: var(--clr-text-secondary);
  font-style: italic;
}

.testimonial__author {
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--clr-text-main);
}

@media (max-width: 600px) {
  .testimonials-section__title {
    font-size: 2.25rem;
  }
  .testimonial {
    padding: 1.5rem 1rem;
  }
  .testimonial__rating {
    font-size: 1.25rem;
  }
}
/* features.css */
:root {
  --feat-bg: #0f141e;
  --feat-accent: #1abc9c;
  --feat-text: #ecf0f1;
  --feat-text-secondary: #95a5a6;
}

.features-section {
  background: var(--feat-bg);
  color: var(--feat-text);
  padding: 4rem 1rem;
  text-align: center;
}

.features-section__title {
  font-size: 2.75rem;
  margin-bottom: 2rem;
  color: var(--feat-accent);
}

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

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

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

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

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

.feature__desc {
  font-size: 1rem;
  color: var(--feat-text-secondary);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .features-section__title {
    font-size: 2.25rem;
  }
  .feature__icon {
    font-size: 2rem;
  }
}
/* 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;
}

/* 60vh тёмный Hero с оверлеем */
#about-hero {
  position: relative;
  height: 60vh;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
}

#about-hero .about-hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}

#about-hero .about-hero__content {
  position: relative;
  color: #ffffff;
}

#about-hero .about-hero__content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

#about-hero .about-hero__content p {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 40px;
}

/* Блок “Η Φιλοσοφία μας” с большими полупрозрачными буквами на фоне */
#philosophy {
  position: relative;
  padding: 60px 20px;
  background: #1a1a1a;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

#philosophy .philosophy-section__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-size: 120px;
  font-weight: 900;
  color: #333333;
  opacity: 0.05;
  white-space: nowrap;
  pointer-events: none;
}

#philosophy .philosophy-section__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

#philosophy h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffcc00;
}

#philosophy p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #dddddd;
}

#philosophy ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
}

#philosophy li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #cccccc;
}

#philosophy li strong {
  color: #ffcc00;
}

/* Два блока “Αποστολή” и “Όραμα” в ряд */
#mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 50px 20px;
  background: #111111;
  text-align: center;
}

#mission-vision .mv-item {
  background: #222222;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
}

#mission-vision .mv-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffcc00;
}

#mission-vision .mv-item p {
  font-size: 16px;
  color: #dddddd;
}

/* Четыре карточки-ценности */
#values {
  padding: 50px 20px;
  background: #121212;
  text-align: center;
}

#values h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #ffcc00;
}

#values .values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#values .value {
  background: #222222;
  width: 140px;
  padding: 20px 10px;
  border-radius: 8px;
  transition: transform 0.2s;
}

#values .value:hover {
  transform: translateY(-5px);
}

#values .value .feature-icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1abc9c;
}

#values .value span {
  display: block;
  font-size: 16px;
  color: #cccccc;
}

/* Сетка команды */
#team {
  padding: 50px 20px;
  background: #1a1a1a;
  text-align: center;
}

#team h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #ffcc00;
}

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

#team .team-card {
  background: #222222;
  border-radius: 8px;
  height: 300px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

#team .team-card:hover {
  transform: translateY(-5px);
}

#team .team-card__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: transform 0.3s;
  color: #ffffff;
  text-align: center;
}

#team .team-card:hover .team-card__overlay {
  transform: translateY(0);
}

#team .team-card__overlay h4 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #1abc9c;
}

#team .team-card__overlay p {
  margin: 0;
  font-size: 16px;
  color: #cccccc;
}

/* === Hero === */
.events-hero {
  position: relative;
  height: 50vh;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.events-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.events-hero__content {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.events-hero__content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.events-hero__content p {
  font-size: 1.25rem;
  color: #cccccc;
}

/* === Event Types === */
.event-types {
  padding: 40px 20px;
  background: #171717;
  text-align: center;
}

.event-types h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f39c12;
}

.event-types__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.type-card {
  background: #1f1f1f;
  padding: 20px;
  border-radius: 8px;
  width: 260px;
  transition: transform 0.2s;
}

.type-card:hover {
  transform: translateY(-5px);
}

.type-card__icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.type-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #f39c12;
}

.type-card p {
  font-size: 1rem;
  color: #bbbbbb;
}

/* === Upcoming Events === */
.upcoming-events {
  padding: 40px 20px;
  background: #121212;
  text-align: center;
}

.upcoming-events h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f39c12;
}

.upcoming-events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.event-card {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.event-card__date {
  font-size: 0.9rem;
  color: #bbbbbb;
  margin-bottom: 8px;
}

.event-card__name {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #f39c12;
}

.event-card__desc {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #cccccc;
}

.event-card .btn {
  margin-top: auto;
}

/* === Newsletter === */
.newsletter {
  padding: 40px 20px;
  background: #171717;
  text-align: center;
}

.newsletter h2 {
  font-size: 2.25rem;
  margin-bottom: 10px;
  color: #f39c12;
}

.newsletter p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #cccccc;
}

.newsletter__form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter__form input[type=email] {
  padding: 10px;
  border: none;
  border-radius: 4px;
  width: 250px;
}

.newsletter__form .btn--secondary {
  background: transparent;
  color: #f39c12;
  border: 2px solid #f39c12;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.2s;
}

.newsletter__form .btn--secondary:hover {
  background: #f39c12;
  color: #121212;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
}

.btn--primary {
  background: #f39c12;
  color: #121212;
  border: none;
  transition: transform 0.2s;
}

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

/* === Footer === */
.site-footer {
  background: #1e1e1e;
  color: #bbbbbb;
  text-align: center;
  padding: 15px 20px;
  font-size: 0.9rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .events-hero__content h1 {
    font-size: 2.25rem;
  }
  .events-hero__content p {
    font-size: 1rem;
  }
  .event-types__grid,
  .upcoming-events__grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.privacy-policy {
  background: #0f0f0f;
  color: #eaeaea;
  padding-bottom: 60px;
}

.privacy-hero {
  background: #1b1b1b;
  padding: 60px 20px 40px;
  text-align: center;
}

.privacy-title {
  font-size: 36px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.privacy-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 5px;
}

.privacy-date {
  font-size: 14px;
  color: #888;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.privacy-content h2 {
  font-size: 22px;
  color: #ffcc00;
  margin-top: 30px;
}

.privacy-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-content li {
  margin-bottom: 8px;
}

.privacy-content a {
  color: #ffcc00;
  text-decoration: underline;
}

.terms-page {
  background: #0e0e0e;
  color: #eaeaea;
  padding-bottom: 60px;
}

.terms-hero {
  background: #1c1c1c;
  padding: 60px 20px 40px;
  text-align: center;
}

.terms-title {
  font-size: 36px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.terms-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 5px;
}

.terms-date {
  font-size: 14px;
  color: #888;
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.terms-content h2 {
  font-size: 22px;
  color: #ffcc00;
  margin-top: 30px;
}

.terms-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-content li {
  margin-bottom: 8px;
}

.terms-content a {
  color: #ffcc00;
  text-decoration: underline;
}

.contact-page {
  background: #111;
  color: #eee;
  padding: 60px 20px;
}

.contact-title {
  text-align: center;
  font-size: 32px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.contact-subtitle {
  text-align: center;
  font-size: 20px;
  color: #f2f2f2;
  margin-bottom: 10px;
}

.contact-description {
  text-align: center;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.contact-details {
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
  color: #ccc;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #555;
  background: #1b1b1b;
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ffcc00;
}

.contact-form .btn {
  background: #ffcc00;
  color: #111;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form .btn:hover {
  background: #e6b800;
}

.form-popup {
  text-align: center;
  margin-top: 20px;
  padding: 12px;
  background: #28a745;
  color: white;
  border-radius: 6px;
}

.hidden {
  display: none;
}

@font-face {
  font-family: "Roboto";
  src: url("/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "Roboto";
  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 */
