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

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 25%, #fed7aa 50%, #fecaca 75%, #ddd6fe 100%);
  color: #1f2937;
  min-height: 100vh;
  line-height: 1.6;
}

.navbar {
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 50%, #ec4899 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-emoji {
  font-size: 2.5rem;
}

.logo-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-btn span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-list {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.menu-item {
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.menu-item.active {
  background: white;
  color: #f97316;
}

.main-area {
  min-height: calc(100vh - 80px);
}

.hero-zone {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.9), rgba(236, 72, 153, 0.9));
  color: white;
  margin-bottom: 3rem;
}

.hero-zone h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.play-btn {
  display: inline-block;
  background: white;
  color: #f97316;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.play-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.about-zone {
  padding: 3rem 0;
}

.about-zone h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.8rem;
  color: #f97316;
  text-align: center;
  margin-bottom: 2rem;
}

.intro-para {
  font-size: 1.15rem;
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.highlights-zone {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  margin: 3rem 0;
}

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

.highlight-box {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.highlight-box:hover {
  transform: translateY(-10px);
  border-color: #f97316;
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
}

.highlight-emoji {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.highlight-box h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  color: #f97316;
  margin-bottom: 1rem;
}

.highlight-box p {
  color: #6b7280;
  line-height: 1.8;
}

.game-zone {
  padding: 4rem 0;
}

.game-zone h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  color: #ec4899;
  text-align: center;
  margin-bottom: 1rem;
}

.game-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.game-box {
  background: white;
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 4px solid #f97316;
}

.game-player {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 15px;
}

.critical-info {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  margin: 3rem 0;
}

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

.info-card {
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-left: 6px solid;
}

.red-card {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-left-color: #dc2626;
}

.blue-card {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-left-color: #2563eb;
}

.purple-card {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  border-left-color: #7c3aed;
}

.info-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.info-card p {
  color: #4b5563;
  line-height: 1.8;
}

.extras-zone {
  padding: 4rem 0;
}

.extras-zone h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.8rem;
  color: #f97316;
  text-align: center;
  margin-bottom: 3rem;
}

.extras-grid {
  display: grid;
  gap: 2rem;
}

.extra-item {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  align-items: center;
}

.extra-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #f97316;
  opacity: 0.3;
  flex-shrink: 0;
}

.extra-text h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  color: #ec4899;
  margin-bottom: 0.75rem;
}

.extra-text p {
  color: #6b7280;
  line-height: 1.8;
}

.footer-zone {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

.footer-block h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.footer-block p {
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.7;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list a {
  color: #fde68a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #fef3c7;
  text-decoration: underline;
}

.footer-notice {
  font-size: 0.95rem;
  opacity: 0.85;
}

.footer-copy {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.7;
  font-size: 0.9rem;
}

.age-check {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-check.hidden {
  display: none;
}

.age-check-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
  padding: 3rem;
  border-radius: 30px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 4px solid #f97316;
}

.age-check-emoji {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.age-check-box h2 {
  font-family: 'Fredoka', sans-serif;
  color: #f97316;
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
}

.age-check-box p {
  color: #1f2937;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.age-check-sub {
  font-size: 1rem;
  font-weight: 400;
  color: #6b7280;
}

.age-check-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.btn-age-yes, .btn-age-no {
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 25px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-age-yes {
  background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
  color: white;
}

.btn-age-yes:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.5);
}

.btn-age-no {
  background: #e5e7eb;
  color: #6b7280;
}

.btn-age-no:hover {
  background: #d1d5db;
}

.page-header {
  background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 1.4rem;
  opacity: 0.95;
}

.page-header-small {
  background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.page-header-small h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header-small p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.play-info-zone {
  padding: 2rem 0 4rem;
}

.info-panel {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 3rem;
  border-top: 5px solid #f97316;
}

.info-panel h2 {
  font-family: 'Fredoka', sans-serif;
  color: #f97316;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-panel p {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.how-to-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.how-to-list li {
  color: #4b5563;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.8;
}

.how-to-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: bold;
  font-size: 1.3rem;
}

.reminder-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 5px solid #f59e0b;
  margin-top: 1.5rem;
  color: #92400e;
  line-height: 1.8;
}

.play-area h2 {
  font-family: 'Fredoka', sans-serif;
  color: #ec4899;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.play-desc {
  text-align: center;
  color: #6b7280;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.play-frame {
  background: white;
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 4px solid #ec4899;
}

.full-game {
  width: 100%;
  height: 700px;
  border: none;
  border-radius: 15px;
}

.legal-zone {
  padding: 2rem 0 4rem;
}

.terms-block {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #f97316;
}

.terms-block h2 {
  font-family: 'Fredoka', sans-serif;
  color: #f97316;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.terms-block p {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.terms-block ul {
  color: #4b5563;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.terms-block li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.alert-box {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 4px solid;
}

.age-alert {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.money-alert {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.fun-alert {
  border-color: #10b981;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.alert-icon {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.alert-box h2 {
  font-family: 'Fredoka', sans-serif;
  color: #1f2937;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.alert-box p {
  color: #374151;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.alert-box ul {
  color: #374151;
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.alert-box li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .menu-list.active {
    max-height: 400px;
  }

  .menu-item {
    padding: 1.25rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-zone h1 {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1.2rem;
  }

  .about-zone h2 {
    font-size: 2rem;
  }

  .game-zone h2 {
    font-size: 2.2rem;
  }

  .game-player {
    height: 400px;
  }

  .full-game {
    height: 500px;
  }

  .extra-item {
    flex-direction: column;
    text-align: center;
  }

  .extra-num {
    font-size: 3rem;
  }

  .age-check-box {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }

  .age-check-btns {
    flex-direction: column;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-header-small h1 {
    font-size: 2.2rem;
  }

  .content-wrap {
    padding: 0 1rem;
  }
}
