/* ===================
   BASE STYLES & RESET
   =================== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Fredoka', sans-serif;
  background: #fef6ec;
  color: #222;
  height: 100%;
}

/* =====================
   HEADER + RESPONSIVE MENU
   ===================== */
header {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  color: #111;
}

.logo span {
  background: #ff3366;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  margin-left: 8px;
  font-size: 0.7em;
}

nav {
  display: flex;
  gap: 30px;
  font-size: 1em;
}

nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #ff3366;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

nav a:hover {
  color: #ff3366;
}

nav a:hover::after {
  transform: scaleX(1);
}

.connect-btn {
  background: #ccc;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  color: #ff3366;
  position: relative;
  transition: all 0.3s ease;
}

.connect-btn::after {
  content: 'SOON';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.3s ease;
  color: #ff3366;
  font-size: 0.85em;
  pointer-events: none;
}

.connect-btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.connect-btn:hover {
  background: #ddd;
  color: transparent;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #111;
  border-radius: 2px;
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ============
   HERO SECTION
   ============ */
.hero {
  position: relative;
  background: #f9235f;
  min-height: 93vh;
  color: white;
  overflow: visible;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 160px 20px 0;
  box-sizing: border-box;
}

.hero .claw {
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 2;
  opacity: 1;
  pointer-events: none;
}

.hero .bg-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

.hero .content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 20px 0;
  text-align: center;
}

.hero h1 {
  font-size: 4.5em;
  margin-bottom: 0.5em;
  animation: memeBounce 2s infinite ease-in-out;
  display: inline-block;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3em;
  }
}

@keyframes memeBounce {
  0%   { transform: scale(1) rotate(0deg); }
  25%  { transform: scale(1.05) rotate(-2deg); }
  50%  { transform: scale(1.15) rotate(2deg); color: #ffcc00; }
  75%  { transform: scale(1.05) rotate(-1deg); }
  100% { transform: scale(1) rotate(0deg); }
}


.hero p {
  font-size: 1.3em;
  max-width: 600px;
  margin: 0 auto 1em;
}

.hero .pile {
  width: 100vw;
  overflow: visible;
  white-space: nowrap;
  background: transparent;
  position: absolute;
  bottom: -60px;
  left: 0;
  z-index: 2;
  text-align: center;
  border: none;
}

.hero .pile img {
  height: 320px;
  margin: 0 -30px;
  display: inline-block;
  transform: rotateZ(var(--rotate, 0deg));
  transition: transform 0.3s;
  vertical-align: bottom;
  z-index: 1;
}

/* ====================
   CAROUSEL BLOCK SECTION
   ==================== */

.carousel-section {
  background: #fff4e6;
  padding: 80px 20px;
  text-align: center;
}

.carousel-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.carousel-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #444;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.carousel {
  width: 100vw;
  overflow: hidden;
  position: relative;
  z-index: 3;
  padding: 30px 0;
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: slide-left 30s linear infinite;
}

.product-card {
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.12);
}

.product-card img {
  height: 220px;
  border-radius: 16px;
  display: block;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card .toy-name {
  margin-top: 10px;
  font-size: 1em;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 160px;
  overflow: hidden;
}


@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================
   REAL TOY ANNOUNCEMENT BLOCK
   ======================== */
.announcement {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #fff;
  gap: 40px;
}

.announcement video {
  max-height: 540px;
  height: 100%;
  aspect-ratio: 9/16;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.announcement-text {
  max-width: 500px;
  text-align: left;
}

.announcement-text h2 {
  font-size: 2em;
  margin-bottom: 16px;
}

.announcement-text p {
  font-size: 1.1em;
  margin-bottom: 24px;
  color: #333;
}

.announcement-text .roadmap-btn {
  background: #ff3366;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

/* ================
   WAVE BOTTOM DECOR
   ================ */
.wave-bottom {
  display: none;
}
/* ========================
   ROADMAP SECTION (UPGRADED)
   ======================== */
.roadmap-section {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.roadmap-section h2 {
  font-size: 2.6em;
  margin-bottom: 60px;
  color: #111;
}

.roadmap-track {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
  border-left: 4px dashed #ff3366;
}

.roadmap-step {
  position: relative;
  padding: 30px 20px;
  background: #fff0f6;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.roadmap-step::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 30px;
  width: 24px;
  height: 24px;
  background: #ff3366;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px #ffccd5;
}

.roadmap-step h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
  color: #222;
}

.roadmap-step p {
  margin: 0;
  font-size: 1.05em;
  color: #444;
}

.roadmap-step.done::before {
  background: #00c851;
  box-shadow: 0 0 0 3px #b2f2bb;
}

.roadmap-step.current {
  border: 2px solid #ff6f91;
  background: #fff5f9;
}


.roadmap-cta {
  text-align: center;
  margin-top: 40px;
}

.roadmap-cta p {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}

.roadmap-cta .cta-btn {
  background: #ff3366;
  color: white;
  padding: 12px 24px;
  font-size: 1em;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.roadmap-cta .cta-btn:hover {
  background: #e2285b;
}

/* ====================
   FAQ SECTION (UPGRADED)
   ==================== */
.faq-section {
  background: #fff9f2;
  padding: 100px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #111;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #fff1e6;
}

.faq-item h3 {
  font-size: 1.2em;
  margin: 0 0 10px;
  color: #ff3366;
}

.faq-item p {
  margin: 0;
  font-size: 1.05em;
  color: #444;
  line-height: 1.5em;
}

/* ====================
   CTA SECTION
   ==================== */
.cta {
  background: #ffe5ec;
  padding: 100px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2.4em;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #333;
}

.cta-btn {
  background: #ff3366;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.cta-btn:hover {
  background: #e02754;
}

/* ====================
   CTA SECTION
   ==================== */
.cta {
  background: #ffe5ec;
  padding: 100px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2.4em;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #333;
}

.cta-btn {
  background: #ff3366;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.cta-btn:hover {
  background: #e02754;
}

/* ====================
   FOOTER SECTION
   ==================== */
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 60px 20px 40px;
}

.footer .social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer .social a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}

.footer .social a:hover {
  text-decoration: underline;
}

.footer p {
  font-size: 0.95em;
  color: #aaa;
  margin: 0;
}
.roadmap-step .sub {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 10px;
}
