@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  border: none;
  box-sizing: border-box;
}

::before,
::after {
  display: inline-block;
}

button {
  border: none;
  background-color: transparent;
}

a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-size: inherit;
}

html,
body {
  min-block-size: 100%;
  scroll-behavior: auto;
}

:where(address[class]) {
  font-style: normal;
}

/**
 Наследуем свойства шрифт для полей ввода
  */
input,
textarea,
select,
button {
  font: inherit;
}

ul li {
  list-style: none;
}

html {
  /**
	  Убираем скачок интерфейса по горизонтали
	  при появлении / исчезновении скроллбара
	 */
  scrollbar-gutter: stable;
}

/**
 Плавный скролл
  */
html,
:has(:target) {
  scroll-behavior: smooth;
}

/**
 Нормализация высоты элемента ссылки при его инспектировании в DevTools
  */
a:where([class]) {
  display: inline-flex;
}

/**
 Курсор-рука при наведении на элемент
  */
button,
label {
  cursor: pointer;
}

/**
 Приводим к единому цвету svg-элементы
 (за исключением тех, у которых уже указан
 атрибут fill со значением 'none' или начинается с 'url')
  */
:where([fill]:not([fill="none"], [fill^="url"])) {
  fill: currentColor;
}

/**
 Приводим к единому цвету svg-элементы
 (за исключением тех, у которых уже указан
 атрибут stroke со значением 'none')
  */
:where([stroke]:not([stroke="none"], [stroke^="url"])) {
  stroke: currentColor;
}

/**
 Чиним баг задержки смены цвета при взаимодействии с svg-элементами
  */
svg * {
  transition-property: fill, stroke;
}

/**
 Приведение рамок таблиц в классический 'collapse' вид
  */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}
body {
  background-color: #0b0b0f;
}

/**
 Удаляем все анимации и переходы для людей,
 которые предпочитают их не использовать
  */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.wrapper {
  min-block-size: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;
}

.wrapper > main {
  flex-grow: 1;
}

[class*="__container"] {
  max-inline-size: 1100px;
  margin-inline: auto;
  padding-inline: 15px;
}

/* ----------------style for section -hero----------- */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 40px;
}

/* Відео на фон */
.hero .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Overlay */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Bebas Neue", "Montserrat", sans-serif;
  letter-spacing: 3px;
}

.hero-content h2 {
  font-size: 38px;
  font-weight: 600;
  color: #a259ff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #a259ff, 0 0 20px #a259ff;
}

.title--shadow {
  text-align: center;
  font-size: 90px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  text-shadow: 0 0 15px #a259ff, 0 0 30px #00ffe0,
    0 0 50px rgba(162, 89, 255, 0.8);
}

.hero-content p {
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
  color: #00ffe0;
  text-shadow: 0 0 10px #00ffe0, 0 0 20px #00ffe0;
}

/* --------------------------------------- */
.lineup {
  padding: 80px 20px;
  text-align: center;
  background: #0a0a0f;
  color: #fff;
}

.lineup h2 {
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: #00f5d4;
}

.lineup p {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 50px;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 300px));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.3rem;
  margin-top: 10px;
  color: #fff;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.6); /* фіолетове світіння */
}

/*---------- Секретний гість -----------*/
.card.secret {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #111, #222);
  box-shadow: 0 0 25px rgba(255, 0, 150, 0.4);
}

.secret-placeholder {
  font-size: 5rem;
  color: #ff007f;
  text-shadow: 0 0 20px rgba(255, 0, 127, 0.8);
  margin-bottom: 15px;
}

/* ----------------------------------------- */
.highlights {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0b0b0f, #111122);
  color: #fff;
}

.highlights h2 {
  font-size: 2.5rem;
  color: #00f5d4;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.highlights-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  /* max-width: 400px; */
  margin: 0 auto;
}

.highlight-card {
  background: #151520;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 0, 150, 0.4);
}

.icon {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 0, 127, 0.8);
  height: 350px;
  overflow: hidden;
}
.icon img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.highlight-card h3 {
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.4;
}

/* ---------------------------------- */
.vip-location {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0b0b0f, #1a0f1f);
  color: #fff;
  text-align: center;
}

.vip-block,
.location-block {
  background: #151520;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.5); /* золоте світіння */
}

.location-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(138, 43, 226, 0.6); /* фіолетове світіння */
}

.vip-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.location-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #8a2be2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vip-block p,
.location-block p {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.5;
}

/* -------------------------------- */
.tickets {
  /* justify-items: center; */

  padding: 100px 20px;
  background: linear-gradient(135deg, #0b0b0f, #111122);
  color: #fff;
}
.tickets__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  gap: 100px;
  /* align-items: center; */
}

.tickets-left h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #00f5d4;
}

.tickets-left ul {
  padding: 0;
  margin: 0;
}

.tickets-left li {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 15px 0;
  color: #ddd;
}

.tickets-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #151520;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tickets-right:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 0, 150, 0.6);
}

.tickets-right h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  color: #8a2be2;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.crypto {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff007f, #8a2be2);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn--top {
  margin-top: 0px;
}

.btn:hover {
  background: linear-gradient(90deg, #8a2be2, #ff007f);
}

.note {
  font-size: 1.2rem;
  color: #aaa;
  margin-top: 20px;
}

/* -------------------------------- */
.countdown {
  margin-top: 50px;
  text-align: center;
}

.h3--red {
  margin-top: 10px;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #ff3366;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 51, 102, 0.7);
}

#timer {
  font-size: 2.9rem;
  font-weight: bold;
  letter-spacing: 3px;
  color: #00ffcc;
  text-shadow: 0 0 12px rgba(0, 255, 204, 0.9), 0 0 24px rgba(0, 255, 204, 0.6);
  font-family: "Space Mono", monospace;
}

.input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: none;
  background: #222;
  color: #fff;
  font-size: 1rem;
}

.input::placeholder {
  color: #aaa;
}

.footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 10px;
  text-align: center;
  color: #ccc;
  font-size: 0.9rem;
  margin-top: 40px;
}

.footer-container p {
  margin: 5px 0;
}

.footer a {
  color: #00f5d4;
  text-decoration: none;
  font-weight: bold;
}

.footer a:hover {
  text-decoration: underline;
}

.telegram-icon {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 6px;
}
.telegram-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-promo{
font-size: 12px;
}
.matrin-top{
	margin-top: 10px;
}



@media (max-width: 1500px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .hero-content h2 {
    font-size: 34px;
  }
  .title--shadow {
    font-size: 75px;
  }
  .hero-content p {
    font-size: 20px;
  }
  #timer {
    font-size: 2.3rem;
  }
  .countdown h3 {
    font-size: 1.8rem;
  }
  .lineup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .card img {
    height: 300px;
    object-position: top;
  }
  .lineup h2 {
    font-size: 2.7rem;
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    row-gap: 40px;
  }
  .highlight-card {
    padding: 20 15px;
  }
  .tickets-left li {
    font-size: 1.2rem;
  }
  .highlights {
    padding: 60px 20px;
  }
}
@media (max-width: 767.98px) {
  .hero-content h2 {
    font-size: 30px;
    text-shadow: none;
  }
  .title--shadow {
    font-size: 55px;
  }
  .hero-content p {
    font-size: 18px;
  }
  #timer {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
  .countdown h3 {
    font-size: 1.5rem;
  }
  .lineup h2 {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
  .highlights {
    padding: 0px 20px;
  }
  .highlights-grid {
    grid-template-columns: 1fr;

    row-gap: 25px;
  }
  .highlight-card {
    padding: 8px 10px;
  }
  .tickets__container {
    display: grid;
    grid-template-columns: 1fr;
  }
  .h3--red {
    font-size: 1.6rem;
    text-shadow: none;
  }
  .btn {
    padding: 15px 30px;

    font-size: 1rem;
  }
  .footer {
  margin-top: 10px;
}
.tickets {
    padding: 50px 20px;
}
}
@media (max-width: 600px) {
  .lineup-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .card img {
    object-fit: contain;
  }
  .highlights h2 {
    font-size: 2rem;
  }
}
@media (max-width: 500px) {
  .hero-content h2 {
    font-size: 22px;
  }
  .title--shadow {
    padding-inline: 3px;
    font-size: 36px;
  }
  .hero-content p {
    font-size: 16px;
  }
  #timer {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
  .countdown h3 {
    font-size: 1.3rem;
  }
  .lineup h2 {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }
  .highlights h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 400px) {
  .card img {
    height: 250px;
  }
}

