@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0f172a;
  min-height: 100vh;
}

header {
  background: rgba(153, 69, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(153, 69, 255, 0.2);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #9945ff, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: linear-gradient(135deg, #9945ff, #ff69b4);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #ff69b4;
}

main {
  padding-top: 80px;
}

.hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.highlight {
  background: linear-gradient(135deg, #9945ff, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #64748b;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #9945ff, #ff69b4);
  color: #ffffff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(153, 69, 255, 0.4);
  margin: 0.5rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(153, 69, 255, 0.6);
}

.hero-banner {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(153, 69, 255, 0.3);
  transition: transform 0.3s ease;
}

.hero-banner:hover {
  transform: scale(1.02);
}

.video-companions,
.anime-companions,
.features,
.realistic-models,
.multimedia-section,
.pricing-section,
.character-leaderboard,
.privacy-security,
.how-it-works,
.faq-section {
  padding: 5rem 2rem;
}

.video-companions {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.anime-companions {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.features {
  background: #0f172a;
}

.realistic-models {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.multimedia-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.pricing-section {
  background: #0f172a;
}

.faq-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.character-leaderboard {
  background: #0f172a;
}

.privacy-security {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.how-it-works {
  background: #0f172a;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #ffffff;
}

.section-banner {
  text-align: center;
  margin-bottom: 3rem;
}

.section-banner-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(153, 69, 255, 0.3);
  transition: transform 0.3s ease;
  margin: 0 auto;
  display: block;
  cursor: pointer;
}

.section-banner-image:hover {
  transform: scale(1.02);
}

.characters-grid,
.features-grid,
.multimedia-grid,
.pricing-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-grid {
  grid-template-columns: repeat(4, 1fr);
}

.character-card,
.feature-card,
.multimedia-card,
.pricing-card,
.video-card {
  background: #1e293b;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(153, 69, 255, 0.2);
  box-shadow: 0 4px 20px rgba(153, 69, 255, 0.1);
}

.character-card:hover,
.feature-card:hover,
.multimedia-card:hover,
.pricing-card:hover,
.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 105, 180, 0.5);
  box-shadow: 0 12px 40px rgba(153, 69, 255, 0.25);
}

.character-card-link,
.feature-card-link,
.multimedia-card-link,
.pricing-card-link,
.video-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.character-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(153, 69, 255, 0.3);
  transition: transform 0.3s ease;
}

.character-image:hover {
  transform: scale(1.03);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(153, 69, 255, 0.3);
}

.video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #9945ff, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-card p {
  color: #64748b;
  font-size: 0.95rem;
}

.feature-card h3,
.multimedia-card h3,
.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-card p,
.multimedia-card p {
  color: #64748b;
}

.feature-link,
.faq-link {
  display: inline-block;
  margin-top: 1rem;
  background: linear-gradient(135deg, #9945ff, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.feature-link:hover,
.faq-link:hover {
  opacity: 0.8;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #9945ff, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}

.pricing-card p {
  color: #64748b;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 2rem;
  background: #1e293b;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(153, 69, 255, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 105, 180, 0.4);
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #9945ff, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: #64748b;
  line-height: 1.7;
}

footer {
  background: #0f172a;
  border-top: 1px solid rgba(153, 69, 255, 0.2);
  padding: 3rem 2rem;
  text-align: center;
}

footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.language-link {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(153, 69, 255, 0.3);
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.language-link:hover,
.language-link.active {
  background: linear-gradient(
    135deg,
    rgba(153, 69, 255, 0.2),
    rgba(255, 105, 180, 0.2)
  );
  border-color: #9945ff;
  color: #ff69b4;
}

.social-media-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0 1rem;
}

.social-media-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 50%;
  border: 2px solid rgba(153, 69, 255, 0.3);
  background: rgba(153, 69, 255, 0.1);
  text-decoration: none;
}

.social-media-icons a:hover {
  color: #ff69b4;
  border-color: #9945ff;
  background: linear-gradient(
    135deg,
    rgba(153, 69, 255, 0.2),
    rgba(255, 105, 180, 0.2)
  );
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(153, 69, 255, 0.4);
}

.social-media-icons svg {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}

.social-media-icons a:hover svg {
  transform: scale(1.1);
}

footer p {
  color: #64748b;
  margin-top: 1rem;
}

.affiliate-section {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.affiliate-section h2 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.affiliate-section p {
  color: #64748b;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(153, 69, 255, 0.2);
    width: 80%;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .characters-grid,
  .features-grid,
  .multimedia-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .section-banner-image {
    max-width: 100%;
  }

  .cta-button {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  footer nav {
    flex-direction: column;
    gap: 1rem;
  }

  .social-media-icons {
    gap: 1rem;
    margin: 1.5rem 0 1rem;
  }

  .social-media-icons a {
    width: 40px;
    height: 40px;
  }

  .social-media-icons svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .characters-grid,
  .features-grid,
  .multimedia-grid,
  .pricing-grid {
    gap: 1rem;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .character-card,
  .feature-card,
  .multimedia-card,
  .pricing-card,
  .video-card {
    padding: 1.5rem;
  }

  .video-companions,
  .anime-companions,
  .features,
  .realistic-models,
  .multimedia-section,
  .pricing-section,
  .character-leaderboard,
  .privacy-security,
  .how-it-works,
  .faq-section {
    padding: 3rem 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.character-card,
.feature-card,
.multimedia-card,
.pricing-card,
.video-card {
  animation: fadeInUp 0.6s ease-out;
}

.character-card-link:hover .character-card,
.video-card-link:hover .video-card {
  transform: translateY(-10px);
  border-color: rgba(255, 105, 180, 0.5);
}
