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

body {
  min-height: 100vh;
  font-family: "Bebas Neue", sans-serif;
  background: linear-gradient(180deg, #e599a7, #f0e9cf);
  color: #111;
  text-align: center;
}

.site-header {
  padding: 28px 20px 20px;
}

.site-title {
  font-size: 60px;
  color: #fff;
}

.hero {
  min-height: 500px;
  margin: 0 30px;
  padding: 30px;
  border-radius: 30px;
  background-image: url("/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-text {
  max-width: 550px;
  font-size: 40px;
  color: #fff;
}

.links-section {
  padding: 30px 30px 0;
}

.links-section .button-link + .button-link {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .links-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .section-title {
    width: 100%;
  }

  .links-section .button-link {
    flex: 1;
    max-width: 50%;
  }

  .links-section .button-link + .button-link {
    margin-top: 0;
  }
}

.section-title {
  margin-bottom: 18px;
  font-size: 40px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 60px;
  }
}

.button-link {
  display: block;
  padding: 40px 30px 35px;
  border-radius: 999px;
  background: #944964;
  border: 6px solid #fff;
  color: #fff;
  font-size: 50px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.image-link {
  height: 500px;
  margin: 30px 30px 0;
  border-radius: 30px;
  background-image: url("/youtube.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 40px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.button-link:hover,
.image-link:hover {
  transform: translateY(-5px);
}

.site-footer {
  padding: 30px;
  font-size: 30px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  padding: 20px;
  background: rgba(0, 0, 0, 0.75);

  align-items: center;
  justify-content: center;
}

.modal-card {
  width: 100%;
  max-width: 380px;
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  font-size: 20px;
  text-align: center;
}

.modal-title {
  margin-bottom: 12px;
}

.modal-text {
  color: #555;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.modal-button {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-size: 20px;
  cursor: pointer;
}

.modal-button--cancel {
  background: #e9edf2;
  color: #000;
}

.modal-button--confirm {
  background: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .site-title {
    font-size: 50px;
  }

  .hero {
    min-height: 420px;
    margin: 0 18px;
    padding: 24px;
  }

  .hero-text {
    font-size: 26px;
  }

  .links-section {
    padding: 30px 18px 0;
  }

  .button-link {
    font-size: 36px;
  }

  .image-link {
    height: 420px;
    margin: 30px 18px 0;
  }
}
