.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  position: relative;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 1200px;
  padding: 0 24px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 70px;
}

.hero-text-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-subtitle {
  margin-bottom: 40px;
}

.hero-subtitle p {
  font-family: 'SUIT', 'SUIT Placeholder', sans-serif;
  font-size: 23px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.hero-title {
  margin-bottom: 20px;
}

.makinarocks-logo-container {
  margin-bottom: 10px;
}

.makinarocks-logo {
  width: 200px;
  height: 48px;
  object-fit: contain;
}

.hero-logo {
  width: 760px;
  height: 120px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.event-details {
  text-align: center;
}

.event-details p {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #a9a9bb;
  margin: 0;
  line-height: 1.5;
  font-display: swap;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.primary-btn {
  background: #5461e4;
  color: #fff;
}

.primary-btn:hover {
  background: #4a56d1;
  transform: translateY(-2px);
}

.secondary-btn {
  background: transparent;
  color: #5461e4;
  border: 2px solid #5461e4;
}

.secondary-btn:hover {
  background: #5461e4;
  color: #fff;
  transform: translateY(-2px);
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
  .hero-content {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-subtitle p {
    font-size: 18px;
  }

  .hero-logo {
    width: 280px;
    height: 44px;
  }

  .event-details p {
    font-size: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .hero-btn {
    width: 100%;
    font-size: 20px;
    padding: 14px 24px;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-subtitle p {
    font-size: 16px;
  }

  .hero-logo {
    width: 240px;
    height: 38px;
  }

  .event-details p {
    font-size: 18px;
  }

  .hero-btn {
    font-size: 18px;
    padding: 12px 20px;
  }
}
