:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e21458f */* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', 'Segoe UI', sans-serif; }

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #2b1fd6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blob-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, #4834ff 0%, #2b1fd6 45%, #1a0fb0 100%);
  z-index: 0;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

.floater {
  position: absolute;
  font-size: 2rem;
  z-index: 2;
  opacity: 0.85;
  animation: floatBounce 5s ease-in-out infinite;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.3));
}
.icon1 { top: 18%; left: 6%; animation-delay: 0s; font-size: 2.6rem; }
.icon2 { top: 65%; left: 10%; animation-delay: 0.8s; }
.icon3 { top: 25%; right: 8%; animation-delay: 1.5s; font-size: 2.4rem; }
.icon4 { top: 60%; right: 12%; animation-delay: 0.4s; }
.icon5 { top: 40%; left: 3%; animation-delay: 2s; font-size: 1.8rem; }
.icon6 { top: 75%; right: 20%; animation-delay: 1.2s; font-size: 1.6rem; }

@keyframes floatBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(12deg); }
}

.hero-topbar {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
}

.logo { color: #fff; font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; }

.topbar-btns { display: flex; gap: 10px; }

.btn-small {
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: transform 0.25s ease;
}
.btn-small.filled { background: #ffe14d; color: #2b1fd6; }
.btn-small:hover { transform: translateY(-3px) scale(1.05); }

.hero-center {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tagline {
  color: #ffe14d;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
  animation: fadeIn 1s ease;
}

.hero-title {
  font-size: clamp(3.5rem, 11vw, 8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 0 40px rgba(255,255,255,0.35);
  animation: popIn 0.9s cubic-bezier(.17,.89,.32,1.49) forwards;
}

.hero-title .pulse {
  display: inline-block;
  color: #ffe14d;
  animation: pulseScale 2.2s ease-in-out infinite;
}

@keyframes pulseScale {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(-3deg); }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.6) translateY(40px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.character-wrap {
  position: relative;
  margin-top: 20px;
  width: 160px;
  height: 220px;
}

.shadow-ellipse {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100px;
  height: 20px;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: shadowPulse 1.4s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.35; }
  50% { transform: translateX(-50%) scale(0.8); opacity: 0.2; }
}

.character {
  position: relative;
  width: 100%;
  height: 100%;
  animation: dance 1.4s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes dance {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

.head {
  position: absolute;
  top: 0;
  left: 50%;
  width: 46px;
  height: 46px;
  background: #ffcf9d;
  border-radius: 10px;
  transform: translateX(-50%);
}

.glasses {
  position: absolute;
  top: 16px;
  left: 6px;
  width: 34px;
  height: 10px;
  border: 3px solid #222;
  border-radius: 3px;
}

.body {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 54px;
  height: 60px;
  background: #ffe14d;
  border-radius: 8px;
  transform: translateX(-50%);
}

.arm {
  position: absolute;
  top: 50px;
  width: 12px;
  height: 44px;
  background: #ffcf9d;
  border-radius: 6px;
  animation: armSwing 1.4s ease-in-out infinite;
}
.arm-left { left: 22px; transform-origin: top center; animation-delay: 0s; }
.arm-right { right: 22px; transform-origin: top center; animation-delay: 0.2s; }

@keyframes armSwing {
  0%, 100% { transform: rotate(35deg); }
  50% { transform: rotate(-15deg); }
}

.leg {
  position: absolute;
  top: 100px;
  width: 14px;
  height: 50px;
  background: #4834ff;
  border-radius: 6px;
}
.leg-left { left: 42px; transform: rotate(-15deg); }
.leg-right { right: 42px; transform: rotate(15deg); }

.pencil {
  position: absolute;
  top: 30px;
  right: -14px;
  font-size: 1.6rem;
  animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(25deg); }
}

.hero-toggle {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 6px;
}

.toggle-label { color: rgba(255,255,255,0.6); font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; }
.toggle-label.active { color: #ffe14d; }

.toggle-switch {
  width: 42px;
  height: 22px;
  background: #ffe14d;
  border-radius: 20px;
  position: relative;
}
.toggle-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: #2b1fd6;
  border-radius: 50%;
  transition: 0.3s;
}

.hero-bottombar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 40px 30px;
}

.tab {
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.2s;
}
.tab.active, .tab:hover { color: #ffe14d; }

.btn-tutorial {
  padding: 12px 26px;
  border-radius: 22px;
  border: none;
  background: #ffe14d;
  color: #2b1fd6;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255,225,77,0.4);
  transition: transform 0.25s ease;
}
.btn-tutorial:hover { transform: translateY(-4px) scale(1.05); }

@media (max-width: 700px) {
  .hero-topbar, .hero-bottombar { padding-left: 16px; padding-right: 16px; }
  .floater { font-size: 1.4rem; }
  .hero-bottombar { gap: 10px; }
}/* End custom CSS */