.main {
  padding-top: 64px;
  min-height: 100vh;
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #fff;
  font-family: 'NanumSquareNeo', sans-serif;
}

/* 히어로 섹션 */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), rgba(255, 180, 218, 0.1));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/pattern.png');
  opacity: 0.1;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 48px;
  font-family: 'NanumSquareNeoHeavy', sans-serif;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff1493, #ffb4da, #ff1493);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

.hero__subtitle {
  font-size: 24px;
  color: #fff;
  margin-bottom: 40px;
  font-family: 'NanumSquareNeoLight', sans-serif;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero__button {
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 18px;
  font-family: 'NanumSquareNeoBold', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero__button--primary {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.hero__button--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #ff1493;
}

.hero__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* 특징 섹션 */
.hero__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.feature__icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature__title {
  font-size: 20px;
  font-family: 'NanumSquareNeoBold', sans-serif;
  margin-bottom: 10px;
  color: #ff1493;
}

.feature__description {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

/* 통계 섹션 */
.stats {
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.3);
}

.stats__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat__number {
  font-size: 36px;
  font-family: 'NanumSquareNeoExtraBold', sans-serif;
  color: #ff1493;
}

.stat__label {
  font-size: 18px;
  color: #ccc;
}

/* CTA 섹션 */
.cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), rgba(255, 180, 218, 0.1));
}

.cta__content {
  max-width: 600px;
  margin: 0 auto;
}

.cta__title {
  font-size: 36px;
  font-family: 'NanumSquareNeoHeavy', sans-serif;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff1493, #ffb4da);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta__description {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.cta__button {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-family: 'NanumSquareNeoBold', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .stats__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta__title {
    font-size: 28px;
  }

  .cta__description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 20px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .feature {
    padding: 20px;
  }

  .stat__number {
    font-size: 28px;
  }

  .stat__label {
    font-size: 16px;
  }
} 