:root {
  --gold-primary: #D4AF37;
  --gold-light: #F5E7A3;
  --gold-dark: #8B7528;
  --dark-bg: #1A1A1A;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
}

body {
  background-color: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
}

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

header {
  background: linear-gradient(to right, var(--gold-dark), var(--gold-primary), var(--gold-light));
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

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

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--dark-bg);
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
  }
  50% {
    text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.8);
  }
  100% {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
  }
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--dark-bg);
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color: var(--dark-bg);
  color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: url("/api/placeholder/1200/800") center/cover no-repeat;
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: overlay;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 50%, var(--dark-bg) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary));
  color: var(--dark-bg);
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
  position: relative;
  overflow: hidden;
  animation: bounceIn 1s ease-out 0.6s backwards;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.7);
}

.btn:hover::before {
  left: 100%;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.features {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gold-primary);
  font-size: 2.5rem;
  position: relative;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-primary), var(--gold-light));
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(145deg, #222, #111);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
  position: relative;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2);
  color: var(--gold-light);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
}

.feature-text {
  color: var(--white);
  line-height: 1.6;
}

.how-it-works {
  padding: 5rem 0;
  background: radial-gradient(ellipse at center, #2a2a2a 0%, var(--dark-bg) 70%);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: center;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s ease;
}

.step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-bg);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.step-content h3 {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.step-content p {
  line-height: 1.6;
}

.testimonials {
  padding: 5rem 0;
  background-color: #1E1E1E;
}

.testimonial-carousel {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.testimonial-card {
  flex: 0 0 350px;
  background: linear-gradient(145deg, #252525, #151515);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 8rem;
  font-family: serif;
  color: rgba(212, 175, 55, 0.1);
  z-index: -1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.author-info h4 {
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.author-info p {
  font-size: 0.9rem;
  color: #999;
}

.cta {
  padding: 5rem 0;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7)), url("/api/placeholder/1200/800") center/cover no-repeat;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

footer {
  background-color: #0F0F0F;
  padding: 3rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.copyright {
  color: #777;
  font-size: 0.9rem;
}

/* Animation for feature cards */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating elements animation */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Toast notification */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary));
  color: var(--dark-bg);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease;
  z-index: 1000;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .step {
    flex-direction: column;
    text-align: center;
  }
  .nav-links {
    display: none;
  }
}/*# sourceMappingURL=index.css.map */