/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro", "Segoe UI", system-ui, Roboto, sans-serif;
  line-height: 1.6;
  color: #FFFFFF;
  background: #000000;
  min-height: 100vh;
  font-weight: 400;
  font-size: 16px;
}

/* Header styles */
header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333333;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: none;
}

.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: #FFFFFF;
  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;
  transition: color 0.3s ease;
  font-weight: 400;
}

.nav-links a:hover {
  color: #76cc82;
}

/* Main content */
main {
  padding-top: 80px;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: #000000;
  border-bottom: 1px solid #333333;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 1rem;
  color: #FFFFFF;
  font-weight: 700;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 1rem;
  color: #F0F0F0;
  font-weight: 700;
}

.highlight {
  color: #76cc82;
  text-shadow: none;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
  font-weight: 400;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(164.22deg, #c6e177, #76cc82);
  color: #3d3d3d;
  padding: 14px 36px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  min-height: 56px;
  transition: all 0.35s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(118, 204, 130, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(118, 204, 130, 0.5);
  background: linear-gradient(164.22deg, #d4ed8f, #8ed99a);
}

/* Sections */
.anime-companions {
  padding: 5rem 2rem;
  background: #111111;
}

.features {
  padding: 5rem 2rem;
  background: #000000;
}

.realistic-models {
  padding: 5rem 2rem;
  background: #111111;
}

.multimedia-section {
  padding: 5rem 2rem;
  background: #111111;
  color: #FFFFFF;
}

.pricing-section {
  padding: 5rem 2rem;
  background: #000000;
}

.faq-section {
  padding: 5rem 2rem;
  background: #111111;
}

.character-leaderboard {
  padding: 5rem 2rem;
  background: #000000;
}

.privacy-security {
  padding: 5rem 2rem;
  background: #000000;
}

/* Section titles */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 3rem;
  color: #F0F0F0;
  font-weight: 700;
}

.section-title .highlight {
  color: #76cc82;
}

/* Grids */
.characters-grid,
.features-grid,
.multimedia-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cards */
.character-card,
.feature-card,
.multimedia-card,
.pricing-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.character-card:hover,
.feature-card:hover,
.multimedia-card:hover,
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: #76cc82;
  box-shadow: 0 8px 25px rgba(118, 204, 130, 0.3);
}

/* Links */
.character-card-link,
.feature-card-link,
.multimedia-card-link,
.pricing-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Images - UNIFORM SIZING FOR ALIGNMENT */
.character-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(118, 204, 130, 0.2);
  transition: transform 0.3s ease;
}

.character-image:hover {
  transform: scale(1.02);
}

/* Hero section layout */
.hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex: 1;
}

.hero-banner {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(118, 204, 130, 0.2);
  transition: transform 0.3s ease;
  margin: 0 auto;
  display: block;
}

.hero-banner:hover {
  transform: scale(1.02);
}

/* Section banners */
.section-banner {
  text-align: center;
  margin-bottom: 3rem;
}

.section-banner-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(118, 204, 130, 0.2);
  transition: transform 0.3s ease;
  margin: 0 auto;
  display: block;
}

.section-banner-image:hover {
  transform: scale(1.02);
}

/* Feature cards */
.feature-card {
  position: relative;
}

.feature-link,
.faq-link {
  display: inline-block;
  margin-top: 1rem;
  color: #76cc82;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature-link:hover,
.faq-link:hover {
  color: #c6e177;
}

/* Pricing */
.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #76cc82;
  margin: 1rem 0;
}

/* Section CTAs */
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* FAQ */
.faq-item {
  max-width: 800px;
  margin: 0 auto 2rem;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #333333;
}

.faq-question {
  font-weight: bold;
  color: #76cc82;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: #000000;
  border-top: 1px solid #333333;
  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 #333333;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.language-link:hover,
.language-link.active {
  background: rgba(118, 204, 130, 0.1);
  border-color: #76cc82;
  color: #76cc82;
}

.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: #FFFFFF;
  transition: all 0.3s ease;
  border-radius: 50%;
  border: 2px solid #333333;
  background: rgba(118, 204, 130, 0.1);
  text-decoration: none;
}

.social-media-icons a:hover {
  color: #76cc82;
  border-color: #76cc82;
  background: rgba(118, 204, 130, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(118, 204, 130, 0.4);
}

.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: #666;
  margin-top: 1rem;
}

/* Affiliate section - CENTERED */
.affiliate-section {
  text-align: center;
  padding: 5rem 2rem;
  background: #111111;
}

.affiliate-section h2 {
  color: #F0F0F0;
  margin-bottom: 1rem;
}

.affiliate-section p {
  color: #FFFFFF;
  margin-bottom: 2rem;
}

/* Responsive design */
@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(10, 10, 10, 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 #333333;
    width: 80%;
    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;
  }

  .character-image {
    width: 100%;
    height: auto;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
  }

  .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,
  .pricing-grid {
    gap: 1rem;
  }

  .character-card,
  .feature-card,
  .multimedia-card,
  .pricing-card {
    padding: 1.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.character-card,
.feature-card,
.multimedia-card,
.pricing-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Additional hover effects */
.character-card-link:hover .character-card {
  transform: translateY(-8px);
  border-color: #76cc82;
}
