body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #222;
    line-height: 1.6;
  }

  
  /* 헤더 스타일 */
  header {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    background: transparent;
    z-index: 2;
  }
  
  .logo-white {
    width: 140px;
  }
    
  /* Hero 섹션 */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: -1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
  }
  
  .hero-logo {
    width: 350px;
  }
  
  h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
  }
  
  .subheadline {
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 3rem;
    font-weight:400;
  }
  
  /* 앱 스토어 배지 */
  .store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .app-store-badge,
  .play-store-badge {
    position: relative;
    transition: all 0.3s ease;
  }
  
  .app-store-badge img,
  .play-store-badge img {
    height: 60px;
    width: auto !important;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  /* 간단한 배지 호버 애니메이션 */
  .app-store-badge:hover,
  .play-store-badge:hover {
    transform: translateY(-5px);
  }
  
  /* 인터랙티브 애니메이션 - 모든 섹션 동일하게 */
  .section-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .section-fade.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* 특징 섹션 */
  .features {
    padding: 80px 5%;
  }
  
  .features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
  }
  
  .feature-section {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 50px;
  }
  
  .feature-section:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .feature-image {
    flex: 1;
    max-width: 45%;
  }
  
  .feature-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .feature-content {
    flex: 1;
  }
  
  .feature-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .feature-content p {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 0;
    color: #666;
  }
  
  /* 다운로드 섹션 - 기존 디자인 */
  .download-section {
    padding: 100px 5%;
    text-align: center;
    background-color: #FE6A15;
  }
  
  .download-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .download-section p {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  

  footer {
    background-color:#333;
    padding: 3%;
  }

  footer p {
    color: #fff;
    margin:0;
  }
 
  /* 반응형 */
  @media (max-width: 768px) {
    .hero-logo {
        width: 250px;
    }
    .logo-white {
        width: 100px;
    }
    
    .store-buttons {
      gap: 10px;
      margin-top: 30px;
    }
          
    .app-store-badge img,
    .play-store-badge img {
      width: 180px !important;
      height: auto !important;
     }
    
    h1 {
        font-size: 30px;
        font-weight: 500;
    }
    

    .subheadline {
      font-size: 1.4rem;
    }
    
    .feature-section {
      flex-direction: column !important;
      text-align: center;
      gap: 30px;
    }
    
    .feature-content h3 {
      font-size: 1.7rem;
    }

    .feature-content p {
      font-size: 1rem;
    }
    
    .feature-image {
      max-width: 100%;
    }
    
    .store-buttons {
      flex-direction: column;
      align-items: center;
    }   
    header {
      top: 55px;
    }
  }
 
.beta-banner {
  width: 100%;
  background: #FFF7EE;
  padding: 20px 0;
  text-align: center;
  font-size: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.beta-banner-emoji {
  font-size: 1.3em;
}

.beta-banner-highlight {
  color: #FF7A00;
  font-weight: 700;
}

.beta-banner-link {
  color: #FF7A00;
  text-decoration: none;
  font-weight: 500;
  margin-left: 8px;
}

.beta-banner-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .beta-banner {
    font-size: 0.9rem;
    padding: 20px 0;
  }
  
  .beta-banner-emoji {
    font-size: 1.2em;
  }
}
 
