* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --yellow-color: #ffff00;
  --yellow-shadow-color: rgba(255, 255, 0, 0.8);
  --yellow-shadow-highlight: rgba(255, 255, 0, 1);

  --pink-color: #ff00ff;
  --pink-shadow-color: rgba(255, 0, 255, 0.8);
  --pink-shadow-highlight: rgba(255, 0, 255, 1);

  --blue-color: #00bfff;
  --blue-shadow-color: rgba(0, 191, 255, 0.8);
  --blue-shadow-highlight: rgba(0, 191, 255, 1);

  --font-size-xl: 3rem;
  --font-size-lg: 2rem;
  --font-size-md: 1.8rem;
  --line-height-base: 1.5;
  --line-height-lg: 1.6;
}

@media (max-width: 1024px) {
  :root {
    --font-size-xl: 2.5rem;
    --font-size-lg: 1.8rem;
    --font-size-md: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-xl: 2rem;
    --font-size-lg: 1.5rem;
    --font-size-md: 1rem;
  }
}

body {
  font-family: "Nunito", sans-serif;
  line-height: var(--line-height-base);
  color: #fff;
  background: #1e1b2e;
  overflow-x: hidden;
  background-image: url("./images/bg.jpg");
  background-repeat: repeat;
  background-size: contain;
}

.wrapper {
  min-height: 100vh;
  position: relative;
}

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

.hero {
  padding: 40px 0;
  text-align: center;
}

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

.main-illustration {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.main-illustration img {
  width: 100%;
}

@media (max-width: 768px) {
  .main-illustration {
    overflow: hidden;
  }

  .main-illustration img {
    position: relative;
    left: -25%;
    width: 150%;
  }
}

.separator__img {
  width: 100%;
  padding: 2rem;
}

.separator__img img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .separator__img {
    overflow: hidden;
  }

  .separator__img img {
    position: relative;
    width: 120%;
    left: -10%;
  }
}

.main-group {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-description {
  max-width: 1000px;
  margin: 30px auto;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.lineup {
  text-align: center;
}

.lineup__img {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.section-title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.yellow-neon {
  color: var(--yellow-color);
  --neon-shadow-color: var(--yellow-shadow-color);
  --neon-shadow-highlight: var(--yellow-shadow-highlight);
  text-shadow: 0 0 10px var(--neon-shadow-color, rgba(0, 191, 255, 0.8)),
    0 0 5px var(--neon-shadow-color, rgba(0, 191, 255, 0.2)),
    0 0 15px var(--neon-shadow-color, rgba(0, 191, 255, 0.1));
}

.pink-neon {
  color: var(--pink-color);
  --neon-shadow-color: var(--pink-shadow-color);
  --neon-shadow-highlight: var(--pink-shadow-highlight);
  text-shadow: 0 0 10px var(--neon-shadow-color, rgba(0, 191, 255, 0.8)),
    0 0 5px var(--neon-shadow-color, rgba(0, 191, 255, 0.2)),
    0 0 15px var(--neon-shadow-color, rgba(0, 191, 255, 0.1));
}

.blue-neon {
  color: var(--blue-color);
  --neon-shadow-color: var(--blue-shadow-color);
  --neon-shadow-highlight: var(--blue-shadow-highlight);
  text-shadow: 0 0 10px var(--neon-shadow-color, rgba(0, 191, 255, 0.8)),
    0 0 5px var(--neon-shadow-color, rgba(0, 191, 255, 0.2)),
    0 0 15px var(--neon-shadow-color, rgba(0, 191, 255, 0.1));
}

.lineup-time {
  font-size: var(--font-size-lg);
  color: #ffff00;
  margin: 20px 0 40px;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.performers__grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2rem;
}

.performer {
  text-align: center;
}

.performer__image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performer__name {
  color: #fff;
  font-size: var(--font-size-lg);
  line-height: 1.3;
  font-weight: 600;
}

.performer:hover .performer__image {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.schedule,
.kids-schedule {
  padding: 80px 0;
}

.schedule__list {
  width: 100%;
  max-width: 1440px;
  margin: 40px auto 0;
}

.schedule__item {
  display: grid;
  grid-template-columns: 250px 1fr 400px;
  gap: 2rem;
  padding: 25px;
  border-bottom: 0.3rem dashed rgba(255, 0, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.schedule__time {
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-lg);
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.schedule__event {
  color: #fff;
  font-size: var(--font-size-lg);
  font-weight: 500;
}

.schedule__item b {
  font-weight: 900;
}

.schedule__location {
  color: #fff;
  text-align: right;
  font-weight: 600;
  font-size: var(--font-size-lg);
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  margin-left: auto;
}

@media (max-width: 1024px) {
  .schedule__item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
    padding: 25px;
  }

  .schedule__time {
    font-size: var(--font-size-md);
  }

  .schedule__location {
    margin-left: 0;
    text-align: center;
    font-size: var(--font-size-md);
  }
}

.transfer {
  padding: 2rem 0;
  text-align: center;
}

.transfer-time {
  font-size: var(--font-size-md);
  color: white;
  font-weight: 700;
  margin-top: 20px;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.footer {
  padding: 40px 0;
  margin-top: 60px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  font-weight: 800;
  font-size: 24px;
}

.footer_img {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer_img img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
