:root {
  --strawberry-red: #ff4d6d;
  --watermelon-pink: #ff758f;
  --orange: #ff9500;
  --lemon-yellow: #ffcc00;
  --lime-green: #a8e05f;
  --kiwi-green: #6fc174;
  --grape-purple: #9d4edd;
  --blueberry-blue: #5a67d8;
  --peach: #ffa07a;
  --cherry-red: #d62828;
  --banana-cream: #fff3b0;
  --mint-fresh: #98f9d6;
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --bg-light: #fffef9;
  --bg-card: #ffffff;
  --shadow-fruit: rgba(255, 77, 109, 0.3);
  --border-fruit: rgba(255, 149, 0, 0.2);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', 'Segoe UI', 'Arial', sans-serif;
  background: linear-gradient(180deg, var(--banana-cream) 0%, var(--bg-light) 50%, var(--mint-fresh) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-weight: 500;
  font-size: 0.875rem;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 77, 109, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 224, 95, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 149, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: '🍓 🍉 🍊 🍋 🍌 🍇 🥝 🍑';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.02;
  letter-spacing: 2rem;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(255, 77, 109, 0.95) 0%, rgba(255, 149, 0, 0.95) 100%);
  border-bottom: 2px solid var(--orange);
  padding: 0.625rem 1rem;
  box-shadow: 0 2px 10px rgba(255, 77, 109, 0.3);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.125rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 0.375rem 0.75rem;
  border-radius: 15px;
  position: relative;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-links a:hover::before {
  width: 60%;
}

.age-restriction-badge {
  background: white;
  color: var(--strawberry-red);
  padding: 0.375rem 0.75rem;
  border-radius: 15px;
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

main {
  position: relative;
  z-index: 10;
  padding-top: 3.5rem;
}

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

.hero {
  text-align: center;
  padding: 2rem 0 1.5rem;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--strawberry-red), var(--orange));
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px var(--shadow-fruit);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-highlight {
  background: linear-gradient(135deg, var(--strawberry-red), var(--orange), var(--lemon-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--strawberry-red), var(--orange));
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow-fruit);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--shadow-fruit);
}

.cta-button span {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.cta-button:hover span {
  transform: translateX(5px);
}

.features {
  padding: 1.5rem 0;
}

.section-title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 0.875rem 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 77, 109, 0.2);
  border-color: var(--strawberry-red);
}

.feature-icon {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

.feature-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.45;
  font-size: 0.75rem;
}

.disclaimer {
  background: linear-gradient(135deg, rgba(255, 77, 109, 0.1), rgba(255, 149, 0, 0.1));
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  border: 2px solid var(--border-fruit);
  max-width: 900px;
}

.disclaimer-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.disclaimer-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--strawberry-red);
  margin-bottom: 0.5rem;
}

.disclaimer-content p {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
}

.disclaimer-content strong {
  color: var(--text-primary);
  font-weight: 700;
}

footer {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 77, 109, 0.15) 100%);
  border-top: 2px solid var(--orange);
  padding: 1.5rem 1rem 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-section h4,
.footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--strawberry-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section ul,
.footer-links {
  list-style: none;
}

.footer-section a,
.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
  transition: all 0.3s ease;
  font-size: 0.8125rem;
  font-weight: 500;
}

.footer-section a:hover,
.footer-link:hover {
  color: var(--strawberry-red);
  padding-left: 0.5rem;
  transform: translateX(3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-fruit);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
}

.header {
  background: linear-gradient(135deg, var(--strawberry-red), var(--orange));
  padding: 1rem;
  text-align: center;
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 2px 10px var(--shadow-fruit);
}

.header .logo {
  justify-content: center;
  margin-bottom: 0.5rem;
}

.logo-text {
  color: white;
  font-size: 1.125rem;
  font-weight: 800;
}

.main-content {
  max-width: 900px;
  margin: 1.5rem auto;
  padding: 0 1rem;
}

.content-section {
  background: var(--bg-card);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--border-fruit);
}

.content-section h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.content-section h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--strawberry-red);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.content-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.content-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.content-section ul {
  margin-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.content-section li {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--strawberry-red);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(255, 77, 109, 0.15);
}

.faq-item h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--strawberry-red);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.8125rem;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    gap: 0.75rem;
  }

  .nav-links a {
    padding: 0.25rem 0.5rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 0.8125rem;
  }

  nav {
    padding: 0.5rem 0.75rem;
  }

  .logo {
    font-size: 1rem;
    gap: 0.375rem;
  }

  main {
    padding-top: 3rem;
  }

  .hero {
    padding: 1.5rem 0 1rem;
  }

  .hero-badge {
    font-size: 0.6875rem;
    padding: 0.375rem 1rem;
    margin-bottom: 0.75rem;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .cta-button {
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
  }

  .cta-button span {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .features {
    padding: 1rem 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .feature-card {
    padding: 0.75rem 0.625rem;
  }

  .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
  }

  .feature-card h3 {
    font-size: 0.8125rem;
  }

  .feature-card p {
    font-size: 0.6875rem;
  }

  .disclaimer {
    flex-direction: column;
    padding: 1.25rem;
    text-align: center;
    margin: 1.5rem auto;
  }

  .disclaimer-icon {
    margin: 0 auto;
    font-size: 1.5rem;
  }

  .disclaimer-content h3 {
    font-size: 1rem;
  }

  .disclaimer-content p {
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-section h4 {
    font-size: 0.8125rem;
    margin-bottom: 0.375rem;
  }

  .footer-section a {
    font-size: 0.75rem;
    padding: 0.1875rem 0;
  }

  .footer-bottom {
    font-size: 0.6875rem;
    padding-top: 0.5rem;
  }

  footer {
    padding: 1rem 0.75rem 0.75rem;
    margin-top: 1.5rem;
  }

  .nav-links {
    display: none;
  }

  body::after {
    font-size: 2rem;
    letter-spacing: 1.5rem;
  }

  .content-section {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }

  .content-section h1 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .content-section h2 {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .content-section h3 {
    font-size: 0.9375rem;
    margin-top: 0.75rem;
  }

  .content-section p,
  .content-section li {
    font-size: 0.8125rem;
  }

  .faq-item {
    padding: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .faq-item h3 {
    font-size: 0.875rem;
  }

  .faq-item p {
    font-size: 0.75rem;
  }

  .main-content {
    margin: 1rem auto;
    padding: 0 0.75rem;
  }

  .header {
    padding: 0.75rem;
  }

  .logo-text {
    font-size: 1rem;
  }
}
