* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  min-height: 100vh;
}

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #7c3aed;
  text-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}

.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: #7c3aed;
  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: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: #7c3aed;
}

main {
  padding-top: 80px;
}

.hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.highlight {
  color: #7c3aed;
  text-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #4b5563;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: #ffffff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
  margin: 0.5rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.hero-banner {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
  transition: transform 0.3s ease;
}

.hero-banner:hover {
  transform: scale(1.02);
}

.girls-section,
.boys-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
}

.features {
  padding: 5rem 2rem;
  background: #ffffff;
}

.how-it-works {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
}

.pricing-section {
  padding: 5rem 2rem;
  background: #ffffff;
}

.faq-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
}

.privacy-security {
  padding: 5rem 2rem;
  background: #ffffff;
}

.multimedia-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
  color: #1a1a1a;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.section-title .highlight {
  color: #7c3aed;
}

.section-banner {
  text-align: center;
  margin-bottom: 3rem;
}

.section-banner-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
  transition: transform 0.3s ease;
  margin: 0 auto;
  display: block;
}

.section-banner-image:hover {
  transform: scale(1.02);
}

.characters-grid,
.features-grid,
.multimedia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.character-card,
.feature-card,
.multimedia-card,
.pricing-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(124, 58, 237, 0.15);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
  animation: fadeInUp 0.6s ease-out;
}

.character-card:hover,
.feature-card:hover,
.multimedia-card:hover,
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.character-card-link,
.feature-card-link,
.multimedia-card-link,
.pricing-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.character-card-link:hover .character-card {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.4);
}

.character-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
  transition: transform 0.3s ease;
}

.character-image:hover {
  transform: scale(1.02);
}

.character-card h3 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.character-card p {
  color: #4b5563;
}

.feature-card {
  position: relative;
}

.feature-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #4b5563;
}

.feature-link,
.faq-link {
  display: inline-block;
  margin-top: 1rem;
  color: #7c3aed;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature-link:hover,
.faq-link:hover {
  color: #a78bfa;
}

.multimedia-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.multimedia-card p {
  color: #4b5563;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #7c3aed;
  margin: 1rem 0;
}

.pricing-card h3 {
  color: #1a1a1a;
}

.pricing-card p {
  color: #4b5563;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 2rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.faq-question {
  font-weight: bold;
  color: #7c3aed;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #4b5563;
  margin-bottom: 1rem;
}

footer {
  background: #ffffff;
  border-top: 1px solid rgba(124, 58, 237, 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: #1a1a1a;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.language-link:hover,
.language-link.active {
  background: rgba(124, 58, 237, 0.1);
  border-color: #7c3aed;
  color: #7c3aed;
}

.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: 40px;
  height: 40px;
  color: #1a1a1a;
  transition: all 0.3s ease;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.05);
  text-decoration: none;
}

.social-media-icons a:hover {
  color: #7c3aed;
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.social-media-icons svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.social-media-icons a:hover svg {
  transform: scale(1.1);
}

footer p {
  color: #6b7280;
  margin-top: 1rem;
}

.affiliate-section {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.affiliate-section h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.affiliate-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.affiliate-section .cta-button {
  background: #ffffff;
  color: #7c3aed;
}

.affiliate-section .cta-button:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

@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(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    width: 80%;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .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 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .character-image {
    width: 100%;
    height: auto;
    max-height: 350px;
  }

  .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: 35px;
    height: 35px;
  }

  .social-media-icons svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .characters-grid,
  .features-grid,
  .multimedia-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .character-card,
  .feature-card,
  .multimedia-card,
  .pricing-card {
    padding: 1.5rem;
  }

  .character-image {
    max-height: 300px;
  }
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
