@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');

html,
body {
  overflow-x: clip;
}

:root {
  --background: #05011d;
  --foreground: #171717;
  --nav-background: rgba(5, 1, 29, 0.9);
  --purple: #9333ea;
  --purple-dark: #7c3aed;
  --purple-light: #c084fc;
  --white: #ffffff;
  --navbar-height: 80px;
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: Arial, Helvetica, sans-serif;
  --font-mono: monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --foreground: #ededed;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foreground);
  font-family: var(--font-sans);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: var(--nav-background);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--navbar-height);
  padding: 0 16px;
}

.logo-wrap,
.right-section {
  display: flex;
  align-items: center;
  width: 208px;
}

.logo-wrap {
  justify-content: flex-start;
  cursor: pointer;
}

.right-section {
  justify-content: flex-end;
  gap: 16px;
}

.logo {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.desktop-links {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.nav-link {
  position: relative;
  display: block;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: color 200ms ease, transform 200ms ease;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link.active {
  color: var(--purple);
}

.menu-button {
  position: relative;
  z-index: 130;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 12px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 30px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.hamburger-icon {
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  position: absolute;
  right: 0;
}

.hamburger-icon::before {
  top: -9px;
  width: 22px;
}

.hamburger-icon::after {
  top: 9px;
  width: 16px;
}

.desktop-contact {
  display: none;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  user-select: none;
  background: linear-gradient(to right, var(--purple), var(--purple-dark));
  border: 1px solid rgba(192, 132, 252, 0.3);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(147, 51, 234, 0.4);
  cursor: pointer;
  transition: filter 200ms ease, transform 150ms ease;
}

.contact-button:hover {
  filter: brightness(1.1);
}

.contact-button:active {
  transform: scale(0.95);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 109;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 300ms ease-in-out;
}

.mobile-backdrop.open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: var(--background);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.drawer-logo-wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.drawer-logo {
  width: auto;
  height: 32px;
  object-fit: contain;
}

.close-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 8px;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease;
}

.close-button:hover {
  color: var(--white);
}

.close-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.close-icon::before,
.close-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  cursor: pointer;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: color 200ms ease;
}

.mobile-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.mobile-link.active {
  color: var(--purple);
}

.mobile-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: currentColor;
  opacity: 0.2;
  transform: rotate(-90deg);
  transition: opacity 200ms ease;
}

.mobile-arrow::before {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  content: "";
}

.mobile-link:hover .mobile-arrow,
.mobile-link.active .mobile-arrow {
  opacity: 1;
}

.mobile-contact-wrap {
  margin-top: auto;
  padding-top: 24px;
}

.mobile-contact {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
}


.hero-section {
  position: relative;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: visible;
  background-image: url("../images/herobg.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  width: 384px;
  height: 384px;
  border-radius: 999px;
  filter: blur(120px);
}

.hero-glow-purple {
  top: 25%;
  left: 25%;
  background: rgba(147, 51, 234, 0.2);
  animation: pulse-basic 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-glow-blue {
  right: 25%;
  bottom: 25%;
  background: rgba(37, 99, 235, 0.1);
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  flex-grow: 1;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding: 40px 24px;
  margin: 0 auto;
  gap: 32px;
}

.hero-content {
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-badge-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  animation: pulse-basic 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge span {
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  color: var(--white);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-yellow {
  color: #ffcc4d;
}

.hero-gradient-text {
  color: transparent;
  background: linear-gradient(to right, #c084fc, #f472b6);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-title-star {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  animation: pulse-basic 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-subtitle {
  max-width: 512px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.625;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.store-link {
  display: inline-flex;
  cursor: pointer;
  user-select: none;
  transition: transform 200ms ease;
}

.store-link:hover {
  transform: scale(1.03);
}

.store-link:active {
  transform: scale(0.95);
}

.store-link img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 4px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badge img {
  width: 20px;
  height: 20px;
}

.trust-badge span {
  color: var(--white);
  font-size: 12px;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  height: 100%;
  padding-top: 1rem;
  transition-duration: 1500ms;
}

.hero-art-inner {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 16px;
}

.hero-art img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transform-origin: bottom;
}

.hero-animate {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: ease-out;
}

.hero-animate-left {
  transform: translateX(-40px);
}

.hero-animate-right {
  transform: translateX(40px);
}

.hero-animate-up {
  transform: translateY(40px);
}

.hero-visible .hero-animate {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.delay-0 {
  transition-delay: 0ms;
}

.delay-150 {
  transition-delay: 150ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-420 {
  transition-delay: 420ms;
}

.delay-700 {
  transition-delay: 700ms;
}

@keyframes pulse-basic {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.site-footer {
  width: 100%;
  background: var(--white);
}

.footer-container {
  width: 100%;
  max-width: 1700px;
  padding: 32px 16px;
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
}

.footer-copyright {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.footer-copyright a {
  color: var(--purple);
  font-weight: 700;
  transition: color 200ms ease;
}

.footer-copyright a:hover {
  color: var(--purple-dark);
  text-decoration: underline;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
}

.footer-policy-links a {
  transition: color 200ms ease;
}

.footer-policy-links a:hover {
  color: var(--purple-dark);
  text-decoration: underline;
}

.footer-policy-links span {
  color: #d1d5db;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-social span {
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #4b5563;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease;
}

.footer-social-links a:hover {
  color: var(--white);
  background: var(--purple-dark);
  border-color: var(--purple-dark);
}

.footer-social-links i {
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.footer-animate {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1000ms ease-out, transform 1000ms ease-out;
}

.footer-animate-section.footer-visible .footer-animate {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 500px;
  padding: 64px 0;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.newsletter-float {
  position: absolute;
  width: 32px;
  height: 32px;
  object-fit: contain;
  animation: float 3.5s ease-in-out infinite;
}

.newsletter-icon-rocket {
  top: 20%;
  left: 2%;
  animation-duration: 3.5s;
}

.newsletter-icon-book {
  bottom: 35%;
  left: 1%;
  width: 28px;
  height: 28px;
  animation-delay: 0.5s;
  animation-duration: 4.2s;
}

.newsletter-icon-emoji {
  top: 15%;
  right: 2%;
  animation-delay: 0.2s;
  animation-duration: 3.8s;
}

.newsletter-icon-angry {
  top: 5%;
  right: 25%;
  animation-delay: 0.8s;
  animation-duration: 4.5s;
}

.newsletter-icon-small-rocket {
  right: 2%;
  bottom: 40%;
  width: 28px;
  height: 28px;
  animation-delay: 1.2s;
  animation-duration: 3.2s;
}

.newsletter-content {
  position: relative;
  z-index: 30;
  width: 100%;
  max-width: 896px;
  padding: 0 16px;
  text-align: center;
}

.newsletter-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 8px;
  color: #ffd700;
  font-size: 16px;
  font-weight: 700;
}

.newsletter-kicker i {
  color: var(--white);
  font-size: 20px;
}

.newsletter-title {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.newsletter-title span {
  color: #ffd700;
}

.newsletter-copy {
  max-width: 672px;
  padding: 0 16px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.newsletter-form {
  position: relative;
  max-width: 672px;
  padding: 4px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.newsletter-input-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border-radius: 999px;
}

.newsletter-mail-icon {
  flex-shrink: 0;
  padding-left: 12px;
  color: #1e1b4b;
}

.newsletter-mail-icon i {
  font-size: 20px;
}

.newsletter-input {
  width: 100%;
  min-width: 0;
  padding: 10px 8px;
  color: #1e1b4b;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  border: 0;
  outline: 0;
}

.newsletter-input::placeholder {
  color: #9ca3af;
}

.newsletter-submit {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  margin: 4px;
  color: #1e1b4b;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  background: #ffd12d;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 200ms ease, transform 150ms ease;
}

.newsletter-submit:hover {
  background: #ffc400;
}

.newsletter-submit:active {
  transform: scale(0.95);
}

.newsletter-submit i {
  position: relative;
  z-index: 1;
  font-size: 14px;
}

.newsletter-submit span {
  position: relative;
  z-index: 1;
}

.newsletter-message {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: max-content;
  max-width: calc(100vw - 32px);
  padding: 8px 14px;
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  background: rgba(30, 27, 75, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.newsletter-message.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.newsletter-message.error {
  background: rgba(190, 24, 93, 0.9);
}

.newsletter-message.success {
  background: rgba(22, 101, 52, 0.9);
}

.newsletter-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.newsletter-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.newsletter-feature-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #ffd700;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.newsletter-feature-icon i {
  position: relative;
  z-index: 1;
  font-size: 12px;
}

.newsletter-feature p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.newsletter-feature span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  text-align: left;
}

.newsletter-character {
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 128px;
  height: auto;
  pointer-events: none;
}

.newsletter-dog {
  left: 0;
}

.newsletter-unicorn {
  right: 0;
}

.newsletter-animate {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1000ms ease-out, transform 1000ms ease-out;
}

.newsletter-animate-section.newsletter-visible .newsletter-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .navbar-inner {
    padding: 0 32px;
  }

  .footer-container {
    padding-right: 32px;
    padding-left: 32px;
  }

  .hero-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .newsletter-float {
    width: 40px;
    height: 40px;
  }

  .newsletter-icon-rocket {
    top: 30%;
    left: 8%;
  }

  .newsletter-icon-book {
    left: 10%;
    width: 34px;
    height: 34px;
  }

  .newsletter-icon-emoji {
    right: 15%;
  }

  .newsletter-icon-angry {
    top: 15%;
    right: 10%;
  }

  .newsletter-icon-small-rocket {
    right: 5%;
    width: 34px;
    height: 34px;
  }

  .newsletter-title {
    font-size: 36px;
  }

  .newsletter-copy {
    font-size: 16px;
  }

  .newsletter-mail-icon {
    padding-left: 20px;
  }

  .newsletter-mail-icon i {
    font-size: 24px;
  }

  .newsletter-input {
    padding: 16px;
    font-size: 16px;
  }

  .newsletter-submit {
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
  }

  .newsletter-submit i {
    font-size: 18px;
  }

  .newsletter-character {
    width: 160px;
  }
}

@media (min-width: 768px) {
  .newsletter-section {
    min-height: 600px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .newsletter-float {
    width: 48px;
    height: 48px;
  }

  .newsletter-title {
    margin-bottom: 24px;
    font-size: 48px;
  }

  .newsletter-copy {
    margin-bottom: 40px;
    font-size: 20px;
  }

  .newsletter-form {
    margin-bottom: 32px;
  }

  .newsletter-feature-icon i {
    font-size: 16px;
  }

  .newsletter-feature p {
    font-size: 16px;
  }

  .newsletter-feature span {
    font-size: 14px;
  }

  .newsletter-character {
    width: 192px;
  }

  .footer-bottom {
    flex-direction: row;
  }

  .footer-copyright,
  .footer-policy-links,
  .footer-social span {
    font-size: 17px;
  }

  .footer-copyright {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .navbar-inner {
    padding: 0 48px;
  }

  .footer-container {
    padding-right: 48px;
    padding-left: 48px;
  }

  .newsletter-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .newsletter-float {
    width: 56px;
    height: 56px;
  }

  .newsletter-icon-book {
    left: 25%;
    width: 44px;
    height: 44px;
  }

  .newsletter-icon-emoji {
    right: 28%;
  }

  .newsletter-icon-small-rocket {
    width: 44px;
    height: 44px;
  }

  .newsletter-title {
    font-size: 60px;
  }

  .newsletter-features {
    gap: 48px;
  }

  .newsletter-character {
    width: 224px;
  }

  .hero-section {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .hero-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    padding-right: 40px;
    padding-left: 40px;
    margin-top: 24px;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-badge-icon {
    width: 24px;
    height: 24px;
  }

  .hero-badge span {
    font-size: 14px;
  }

  .hero-title-star {
    width: 42px;
    height: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .store-link img {
    height: 52px;
  }

  .store-badges,
  .trust-badges {
    justify-content: flex-start;
  }

  .trust-badges {
    gap: 24px;
  }

  .trust-badge img {
    width: 24px;
    height: 24px;
  }

  .trust-badge span {
    font-size: 16px;
  }

  .hero-art-inner {
    margin-bottom: -16px;
  }

  .hero-art img {
    transform: scale(1.30);
  }
}

@media (min-width: 1280px) {
  .navbar-inner {
    padding: 0 64px;
  }

  .footer-container {
    padding-right: 64px;
    padding-left: 64px;
  }

  .newsletter-icon-rocket {
    width: 72px;
    height: 72px;
  }

  .newsletter-icon-book {
    width: 48px;
    height: 48px;
  }

  .newsletter-icon-emoji,
  .newsletter-icon-angry {
    width: 64px;
    height: 64px;
  }

  .newsletter-icon-small-rocket {
    width: 48px;
    height: 48px;
  }

  .newsletter-character {
    width: 256px;
  }

  .desktop-links {
    display: flex;
  }

  .nav-link {
    padding-right: 20px;
    padding-left: 20px;
  }

  .menu-button,
  .mobile-backdrop,
  .mobile-drawer {
    display: none;
  }

  .desktop-contact {
    display: block;
  }

  .hero-container {
    margin-top: 0;
  }

  .hero-title {
    font-size: 66px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-title-star {
    width: 36px;
    height: 36px;
  }

  .hero-art img {
    transform: scale(1.40);
  }
}

@media (min-width: 1536px) {
  .newsletter-dog {
    left: 7%;
  }

  .newsletter-unicorn {
    right: 7%;
  }

  .newsletter-character {
    width: 384px;
  }

  .hero-art img {
    transform: scale(1.50);
  }
}

@media (max-width: 420px) {
  .navbar-inner {
    padding: 0 16px;
  }

  .logo-wrap,
  .right-section {
    width: auto;
  }

  .drawer-content {
    padding: 28px 24px;
  }

  .mobile-link {
    font-size: 18px;
  }

  .newsletter-form {
    border-radius: 28px;
  }

  .newsletter-input-wrap {
    align-items: stretch;
    border-radius: 24px;
  }

  .newsletter-submit span {
    max-width: 72px;
    white-space: normal;
    line-height: 1.1;
  }

  .newsletter-features {
    gap: 10px;
  }

  .newsletter-feature {
    gap: 8px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-badge-icon {
    width: 24px;
    height: 24px;
  }

  .hero-badge span {
    font-size: 14px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-title-star {
    width: 48px;
    height: 48px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .store-link img {
    height: 52px;
  }

  .trust-badges {
    gap: 24px;
  }

  .trust-badge img {
    width: 24px;
    height: 24px;
  }

  .trust-badge span {
    font-size: 16px;
  }

  .hero-art-inner {
    margin-bottom: -80px;
  }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(-12deg); }
  50% { transform: translateY(-20px) rotate(-8deg); }
  100% { transform: translateY(0px) rotate(-12deg); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes morph {
  0% { border-radius: 52% 48% 51% 49% / 36% 41% 59% 64%; }
  33% { border-radius: 40% 60% 45% 55% / 50% 35% 65% 50%; }
  66% { border-radius: 60% 40% 60% 40% / 45% 55% 45% 55%; }
  100% { border-radius: 52% 48% 51% 49% / 36% 41% 59% 64%; }
}

.animate-morph {
  animation: morph 12s ease-in-out infinite;
}

@keyframes shine {
  0% { 
    background-position: -100% 0;
  }
  100% { 
    background-position: 200% 0;
  }
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 70%
  );
  transform: skewX(-20deg);
  opacity: 0;
}

.btn-shine:hover::before {
  animation: shine 1.2s ease forwards;
  opacity: 1;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}

@keyframes music-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

@layer utilities {
  .animate-star-spin {
    animation: star-spin 3s linear infinite;
  }

  .animate-rocket-launch {
    animation: rocket-out 4s ease-in-out infinite;
  }

  @keyframes star-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @keyframes rocket-out {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(10deg); }
  }
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.3; }
}

@keyframes pulse-slower {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.25; }
}

@keyframes pulse-dot-0 {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.5); }
}

@keyframes pulse-dot-1 {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes pulse-dot-2 {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.4); }
}

@keyframes star-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes star-pulse-slow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.15); }
}

@keyframes float-safe {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes float-safe-slow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

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

@keyframes ping-safe {
  0% { transform: scale(1); opacity: 0.3; }
  75%, 100% { transform: scale(1.5); opacity: 0; }
}

.animate-pulse-slow {
  animation: pulse-slow 3s ease-in-out infinite;
}

.animate-pulse-slower {
  animation: pulse-slower 5s ease-in-out infinite;
}

.animate-star-pulse {
  animation: star-pulse 2s ease-in-out infinite;
}

.animate-star-pulse-slow {
  animation: star-pulse-slow 3s ease-in-out infinite;
}

.animate-float-safe {
  animation: float-safe 3s ease-in-out infinite;
}

.animate-float-safe-slow {
  animation: float-safe-slow 4s ease-in-out infinite;
}

.animate-bounce-safe {
  animation: bounce-safe 2s ease-in-out infinite;
}

.animate-ping-safe {
  animation: ping-safe 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-dot-0 {
  animation: pulse-dot-0 2.5s ease-in-out infinite;
}

.pulse-dot-1 {
  animation: pulse-dot-1 3s ease-in-out infinite;
}

.pulse-dot-2 {
  animation: pulse-dot-2 2s ease-in-out infinite;
}

@keyframes star-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.animate-star-circle {
  animation: star-circle 4s linear infinite;
}

.stars-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

@keyframes starFall {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(200px);
    opacity: 0;
  }
}

.star-fall {
  position: absolute;
  top: -30px;
  font-size: 18px;
  animation: starFall 1s ease-in forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .star-fall {
    font-size: 14px;
  }
}

.section-cut {
  clip-path: none;
}

@media (min-width: 1024px) {
  .section-cut {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 96% 92%, 4% 92%, 0 100%);
  }
}

@media (min-width: 1280px) {
  .section-cut {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 96% 91%, 4% 91%, 0 100%);
  }
}

@media (min-width: 1536px) {
  .section-cut {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 96% 90%, 4% 90%, 0 100%);
  }
}

@keyframes drift-horizontal {
  0%, 100% { transform: translateX(0px); }
  50% { transform: translateX(12px); }
}

.animate-drift-horizontal {
  animation: drift-horizontal 5s ease-in-out infinite;
}

/* --- Trending Section --- */
.trending-section {
  position: relative;
  width: 100%;
  margin-top: -3rem; /* -mt-12 */
  padding-top: 4rem; /* pt-16 */
  padding-bottom: 7rem; /* pb-28 */
  padding-left: 1rem;
  padding-right: 1rem;
  background-image: linear-gradient(rgba(255, 221, 227, 0.15), rgba(255, 221, 227, 0.15)), url('../images/bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 10;
}

@media (min-width: 768px) {
  .trending-section {
    margin-top: -6rem; /* -mt-24 */
    padding-bottom: 6rem; /* pb-40 */
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.trending-glow-left {
  position: absolute;
  top: 25%;
  left: -2.5rem;
  width: 300px;
  height: 300px;
  background: rgba(165, 243, 252, 0.1);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: -10;
}

@media (min-width: 768px) {
  .trending-glow-left {
    left: -10rem;
    width: 500px;
    height: 500px;
    filter: blur(140px);
  }
}

.trending-glow-right {
  position: absolute;
  bottom: 25%;
  right: -2.5rem;
  width: 300px;
  height: 300px;
  background: rgba(153, 246, 228, 0.1);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: -10;
}

@media (min-width: 768px) {
  .trending-glow-right {
    right: -10rem;
    width: 500px;
    height: 500px;
    filter: blur(140px);
  }
}

.trending-float-rocket {
  position: absolute;
  top: 8%;
  left: 4%;
  width: 40px;
  height: 40px;
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
  z-index: 20;
}

@media (min-width: 640px) {
  .trending-float-rocket {
    top: 11%;
    left: 3%;
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 1024px) {
  .trending-float-rocket {
    top: 20%;
    left: 15%;
    width: 64px;
    height: 64px;
  }
}

.trending-star-container-1 {
  position: absolute;
  top: 6%;
  right: 2%;
  width: 40px;
  height: 40px;
  z-index: 20;
  pointer-events: none;
  user-select: none;
  animation: float-safe 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

@media (min-width: 640px) {
  .trending-star-container-1 {
    top: 9%;
    right: 3%;
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 1024px) {
  .trending-star-container-1 {
    top: 12%;
    right: 8%;
  }
}

.trending-star-img-1 {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.4;
  animation: star-pulse 4s ease-in-out infinite;
}

.trending-star-container-2 {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 24px;
  height: 24px;
  z-index: 20;
  pointer-events: none;
  user-select: none;
  animation: float-safe 5s ease-in-out infinite;
  animation-delay: 0.8s;
}

@media (min-width: 640px) {
  .trending-star-container-2 {
    top: 16%;
    right: 10%;
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 1024px) {
  .trending-star-container-2 {
    top: 22%;
    right: 13%;
  }
}

.trending-star-img-2 {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.35;
  animation: star-pulse 3s ease-in-out infinite;
}

.trending-cloud-container {
  position: absolute;
  bottom: 12%;
  right: 4%;
  width: 64px;
  height: 64px;
  z-index: 20;
  pointer-events: none;
  user-select: none;
  opacity: 0.4;
  animation: drift-horizontal 5s ease-in-out infinite;
  animation-delay: 1.2s;
}

@media (min-width: 640px) {
  .trending-cloud-container {
    bottom: 16%;
    right: 5%;
    width: 96px;
    height: 96px;
  }
}

@media (min-width: 1024px) {
  .trending-cloud-container {
    bottom: 22%;
    right: 7%;
    width: 112px;
    height: 112px;
  }
}

.trending-cloud-star {
  position: absolute;
  left: -60%;
  bottom: 5%;
  width: 20px;
  height: 20px;
  opacity: 0.9;
  animation: star-pulse 2s ease-in-out infinite;
}

@media (min-width: 640px) {
  .trending-cloud-star {
    width: 28px;
    height: 28px;
  }
}

.trending-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.trending-wrapper {
  border-radius: 48px;
  padding: 1.5rem;
  position: relative;
  overflow: visible;
}

@media (min-width: 768px) {
  .trending-wrapper {
    padding: 2.5rem;
  }
}

.trending-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  padding: 0 0.5rem;
  text-align: center;
  width: 100%;
}

.trending-title {
  color: #1f2937;
  font-size: 1.875rem; /* text-3xl */
  font-weight: 900; /* font-black */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0;
}

@media (min-width: 640px) {
  .trending-title {
    font-size: 2.25rem; /* text-4xl */
  }
}

@media (min-width: 768px) {
  .trending-title {
    font-size: 3rem; /* text-5xl */
  }
}

.trending-purple {
  color: #9333ea;
}

.trending-slider-container {
  position: relative;
  width: 100%;
  overflow: visible;
}

.trending-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #f3e8ff;
  background-color: #ffffff;
  color: #9333ea;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
}

.trending-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.trending-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.trending-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.trending-arrow-left {
  left: -1.5rem;
}

@media (min-width: 640px) {
  .trending-arrow-left {
    left: -2.5rem;
  }
}

@media (min-width: 768px) {
  .trending-arrow-left {
    left: -4rem;
  }
}

@media (min-width: 1280px) {
  .trending-arrow-left {
    left: -5rem;
  }
}

.trending-arrow-right {
  right: -1.5rem;
}

@media (min-width: 640px) {
  .trending-arrow-right {
    right: -2.5rem;
  }
}

@media (min-width: 768px) {
  .trending-arrow-right {
    right: -4rem;
  }
}

@media (min-width: 1280px) {
  .trending-arrow-right {
    right: -5rem;
  }
}

.trending-cards-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-top: 0.5rem;
  padding-bottom: 2rem;
  margin-top: -0.5rem;
  margin-bottom: -1rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.trending-cards-scroll::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .trending-cards-scroll {
    gap: 2rem;
  }
}

.trending-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
  min-width: 280px;
  min-height: 340px;
  border-radius: 32px;
  border: 4px solid #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.04);
  transition: all 0.5s ease;
  position: relative;
}

.trending-card:hover {
  box-shadow: 0 20px 35px -12px rgba(147, 51, 234, 0.12);
  transform: translateY(-4px);
}

@media (min-width: 769px) {
  .trending-card {
    width: calc(50% - 16px);
  }
}

@media (min-width: 1200px) {
  .trending-card {
    width: calc(33.333% - 22px);
  }
}

@media (min-width: 768px) {
  .trending-card {
    min-height: 360px;
  }
}

/* Card Themes */
.theme-green {
  background: linear-gradient(to bottom, #F1FFD4, #ffffff);
}
.theme-green .card-title {
  color: #668B1C;
}
.theme-green .card-footer {
  background-color: #F9FFED;
}
.theme-green .card-divider {
  border-left: 2px solid rgba(102, 139, 28, 0.2);
}

.theme-orange {
  background: linear-gradient(to bottom, #FFE8DD, #ffffff);
}
.theme-orange .card-title {
  color: #E7763E;
}
.theme-orange .card-footer {
  background-color: #FDEBE2;
}
.theme-orange .card-divider {
  border-left: 2px solid rgba(231, 118, 62, 0.2);
}

.theme-pink {
  background: linear-gradient(to bottom, #FFE0F6, #ffffff);
}
.theme-pink .card-title {
  color: #B74B98;
}
.theme-pink .card-footer {
  background-color: #FFEDFA;
}
.theme-pink .card-divider {
  border-left: 2px solid rgba(183, 75, 152, 0.2);
}

.theme-blue {
  background: linear-gradient(to bottom, #D9F9FF, #ffffff);
}
.theme-blue .card-title {
  color: #1C7483;
}
.theme-blue .card-footer {
  background-color: #D5F0F5;
}
.theme-blue .card-divider {
  border-left: 2px solid rgba(28, 116, 131, 0.2);
}

.theme-purple {
  background: linear-gradient(to bottom, #DDCFEF, #ffffff);
}
.theme-purple .card-title {
  color: #833FD8;
}
.theme-purple .card-footer {
  background-color: #F5EDFF;
}
.theme-purple .card-divider {
  border-left: 2px solid rgba(131, 63, 216, 0.2);
}

.theme-red {
  background: linear-gradient(to bottom, #FFC8D4, #ffffff);
}
.theme-red .card-title {
  color: #C02B4C;
}
.theme-red .card-footer {
  background-color: #FFEDF1;
}
.theme-red .card-divider {
  border-left: 2px solid rgba(192, 43, 76, 0.2);
}

/* Card layout details */
.card-badge-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 48px;
  pointer-events: none;
  user-select: none;
  overflow: visible;
}

@media (min-width: 768px) {
  .card-badge-container {
    width: 96px;
    height: 72px;
  }
}

.card-badge-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(-2px 4px 4px rgba(0, 0, 0, 0.15));
}

.card-badge-text {
  position: absolute;
  top: 8px;
  right: 14px;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .card-badge-text {
    top: 14px;
    right: 22px;
    font-size: 1.5rem;
  }
}

.card-upper {
  padding: 0.75rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .card-upper {
    padding: 1.5rem;
    padding-bottom: 1rem;
  }
}

.card-profile-header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
  padding-right: 2.5rem;
}

@media (min-width: 768px) {
  .card-profile-header {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-right: 3.5rem;
  }
}

.card-avatar-wrap {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .card-avatar-wrap {
    width: 3rem;
    height: 3rem;
  }
}

.card-avatar-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-user-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card-username {
  color: #1F2937;
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .card-username {
    font-size: 1.125rem;
  }
}

.card-meta-info {
  color: #4b5563;
  font-size: 8px;
  font-weight: 600;
  margin-top: 0.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .card-meta-info {
    font-size: 12px;
  }
}

.card-meta-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background-color: #4b5563;
}

.card-title {
  font-weight: 800;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.375;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-emoji-row {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
  user-select: none;
}

@media (min-width: 768px) {
  .card-emoji-row {
    gap: 0.375rem;
    margin-bottom: 1.25rem;
  }
}

.card-emoji-item-wrap {
  display: flex;
  align-items: center;
}

.card-emoji-hexagon {
  position: relative;
  width: 40px;
  height: 32px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.06));
}

.card-emoji-hexagon:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .card-emoji-hexagon {
    width: 72px;
    height: 58px;
  }
}

.card-emoji-hexagon-svg {
  width: 100%;
  height: 100%;
}

.card-emoji-img-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem;
}

@media (min-width: 768px) {
  .card-emoji-img-container {
    padding: 0.875rem;
  }
}

.card-emoji-img-wrap {
  position: relative;
  width: 1.125rem;
  height: 1.125rem;
}

@media (min-width: 768px) {
  .card-emoji-img-wrap {
    width: 34px;
    height: 34px;
  }
}

.card-emoji-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-emoji-plus {
  color: #111827;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0 0.125rem;
}

@media (min-width: 768px) {
  .card-emoji-plus {
    font-size: 1.125rem;
    padding: 0 0.5rem;
  }
}

.card-description {
  color: #4b5563;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
  white-space: normal;
  word-break: break-word;
  margin: 0;
}

.card-footer {
  margin-top: auto;
  border-top: 2px solid #ffffff;
  padding: 0.625rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #4b5563;
}

@media (min-width: 768px) {
  .card-footer {
    border-top: 4px solid #ffffff;
    padding: 1rem 1.5rem;
  }
}

.card-actions-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  font-weight: 700;
  font-size: 10px;
}

@media (min-width: 768px) {
  .card-actions-wrap {
    font-size: 12px;
  }
}

.card-action-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  user-select: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.card-action-item:hover {
  opacity: 0.8;
}

.card-action-icon {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .card-action-icon {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.25rem;
  }
}

.card-action-icon.text-red {
  color: #ef4444;
}

.card-action-icon.text-purple {
  color: #9333ea;
}

.card-action-icon.text-gray {
  color: #6b7280;
}

.card-divider {
  height: 1.25rem;
}

/* --- Features Section --- */
.features-section {
  position: relative;
  margin-top: 0;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background: linear-gradient(to bottom, rgba(232, 224, 255, 0.4), #ffffff, rgba(232, 224, 255, 0.4));
  overflow: hidden;
  z-index: 10;
}

@media (min-width: 768px) {
  .features-section {
    margin-top: 0;
    padding-top: 7rem;
    padding-bottom: 7rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .features-section {
    margin-top: 0;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.features-right-b {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16rem; /* w-64 */
  height: auto;
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 1280px) {
  .features-right-b {
    width: 500px;
  }
}

.features-container {
  position: relative;
  z-index: 10;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  padding-top: 0;
}

@media (min-width: 640px) {
  .features-container {
    padding-top: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .features-container {
    padding-top: 2.5rem;
  }
}

.features-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 900;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
  color: #1e1e1e;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .features-title {
    font-size: 2.25rem; /* text-4xl */
  }
}

@media (min-width: 768px) {
  .features-title {
    font-size: 3rem; /* text-5xl */
    margin-bottom: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .features-title {
    font-size: 3.75rem; /* text-6xl */
    margin-top: 0;
    margin-bottom: 6rem;
  }
}

.features-title-span {
  color: #6366f1;
}

.features-grid {
  display: grid;
  grid-template-cols: 1fr;
  column-gap: 2rem;
  row-gap: 3.5rem; /* gap-y-14 */
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 5rem; /* gap-y-20 */
  }
}

.features-card {
  position: relative;
  background-color: #ffffff;
  z-index: 40;
  border: 1.5px solid #f3f4f6;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  height: 260px;
  display: flex;
  flex-direction: column;
}

.features-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #e5e7eb;
}

/* Feature Icon Styles */
.feature-icon-wrap {
  position: absolute;
  top: -2.5rem; /* -top-10 */
  left: 50%;
  transform: translateX(-50%);
  width: 5rem; /* w-20 */
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .feature-icon-wrap {
    top: -3rem; /* -top-12 */
    width: 6rem; /* w-24 */
    height: 6rem;
  }
}

.feature-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.feature-icon-img {
  position: relative;
  z-index: 10;
  width: 3rem; /* w-12 */
  height: 3rem;
  object-fit: contain;
}

@media (min-width: 640px) {
  .feature-icon-img {
    width: 61px;
    height: 61px;
  }
}

/* Card Content Styles */
.features-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 1.25rem; /* mt-5 */
}

.features-card-title {
  color: #111111;
  font-weight: 600;
  font-size: 1.125rem; /* text-lg */
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .features-card-title {
    font-size: 1.25rem; /* text-xl */
  }
}


.features-card-desc {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.625;
  font-weight: 500;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Specific Rocket Logic for Card 3 (Index 2) */
.features-moving-rocket-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  width: 4rem; /* w-16 */
  height: 4rem;
  pointer-events: none;
  right: -4rem; /* -right-16 */
}

@media (min-width: 640px) {
  .features-moving-rocket-wrap {
    width: 5rem;
    height: 5rem;
    right: -5rem;
  }
}

@media (min-width: 768px) {
  .features-moving-rocket-wrap {
    width: 6rem;
    height: 6rem;
    right: -6rem;
  }
}

@media (min-width: 1024px) {
  .features-moving-rocket-wrap {
    width: 7rem;
    height: 7rem;
    right: -7rem;
  }
}

@media (min-width: 1280px) {
  .features-moving-rocket-wrap {
    right: -8rem;
  }
}

@media (min-width: 1536px) {
  .features-moving-rocket-wrap {
    right: -15rem;
  }
}

.features-moving-rocket-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Animations */
@keyframes rocket-launch {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.animate-rocket-launch {
  animation: rocket-launch 5s ease-in-out infinite;
}

/* Scroll Animation Trigger classes */
.features-fade-in {
  opacity: 0;
  transform: translateY(48px);
  transition: all 0.7s ease-out;
}

.features-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.features-title-fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s ease-out;
}

.features-title-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse animation utility */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.absolute {
  position: absolute;
}

/* BG colors for icons */
.bg-feature-purple { background-color: #E8E0FF; }
.bg-feature-orange-light { background-color: #FFE4D6; }
.bg-feature-green-light { background-color: #D4F8D4; }
.bg-feature-peach { background-color: #FFE8D6; }
.bg-feature-yellow-light { background-color: #FFF4D6; }
.bg-feature-blue-light { background-color: #D6E8FF; }
.bg-feature-green-mid { background-color: #D8F5D8; }
.bg-feature-red-light { background-color: #FFD6D6; }
.bg-feature-purple-light { background-color: #F5D6FF; }
.bg-feature-pink-light { background-color: #FFD6E8; }
.bg-feature-gold { background-color: #FFF2D6; }
.bg-feature-purple-dark { background-color: #E8D6FF; }

/* Scattered Decorative Elements Positions */
.feat-smile-1 {
  top: 10rem;
  right: 10%;
  width: 4rem;
}
.feat-smile-2 {
  bottom: 10%;
  left: 5%;
  width: 3rem;
  animation-delay: 1s;
}
.feat-smile-3 {
  top: 45%;
  left: 8%;
  width: 3rem;
  animation-delay: 2s;
}
.feat-smile-4 {
  bottom: 10%;
  right: 20%;
  width: 2.5rem;
  animation-duration: 3.5s;
}

.feat-ystar-1 {
  top: 15%;
  left: 5%;
  width: 3rem;
}
.feat-ystar-2 {
  top: 5%;
  right: 25%;
  opacity: 0.8;
  width: 3.5rem;
  animation-duration: 5s;
}
.feat-ystar-3 {
  bottom: 20%;
  right: 10%;
  width: 2.25rem;
  animation-duration: 2s;
}
.feat-ystar-4 {
  top: 50%;
  left: 2%;
  width: 2.5rem;
  opacity: 0.7;
}
.feat-ystar-5 {
  bottom: 45%;
  right: 3%;
  width: 2.75rem;
  animation-duration: 4s;
  opacity: 0.9;
}
.feat-ystar-6 {
  top: 30%;
  left: 20%;
  width: 2.25rem;
  animation-delay: 2s;
}
.feat-ystar-7 {
  top: 4%;
  left: 85%;
  width: 2.5rem;
  animation-duration: 3s;
}
@media (min-width: 640px) {
  .feat-ystar-7 {
    top: 2%;
    left: 10%;
  }
}

.feat-pstar-1 {
  top: 60%;
  right: 5%;
  width: 3.5rem;
  animation-direction: reverse;
}
.feat-pstar-2 {
  top: 25%;
  left: 6%;
  width: 4rem;
  animation-delay: 0.5s;
}
.feat-pstar-3 {
  bottom: 5%;
  right: 30%;
  width: 2.75rem;
  animation-duration: 4s;
}
.feat-pstar-4 {
  top: 2%;
  left: 30%;
  width: 2.5rem;
  animation-duration: 3s;
}
@media (min-width: 640px) {
  .feat-pstar-4 {
    left: 25%;
  }
}
.feat-pstar-5 {
  top: 18%;
  left: 25%;
  width: 2rem;
  animation-duration: 5s;
  opacity: 0.85;
}
.feat-pstar-6 {
  bottom: 50%;
  right: 10%;
  width: 3rem;
  animation-delay: 0.8s;
}

.feat-pdot-1 {
  top: 2%;
  right: 65%;
  width: 1rem;
  animation-duration: 3s;
}
@media (min-width: 640px) {
  .feat-pdot-1 {
    top: 4%;
    right: 30%;
  }
}
.feat-pdot-2 {
  top: 33.333%;
  left: 10%;
  width: 2.5rem;
}
.feat-pdot-3 {
  bottom: 30%;
  left: 8%;
  width: 3.5rem;
  opacity: 0.8;
}
.feat-pdot-4 {
  top: 20%;
  right: 2%;
  width: 2rem;
  opacity: 0.9;
}
.feat-pdot-5 {
  bottom: 15%;
  right: 20%;
  width: 2rem;
  animation-delay: 1s;
}
.feat-pdot-6 {
  top: 55%;
  left: 3%;
  width: 1.25rem;
  opacity: 0.75;
}
.feat-pdot-7 {
  top: 75%;
  right: 40%;
  width: 1.5rem;
  animation-duration: 3s;
}

.feat-ydot-1 {
  bottom: 2.5rem;
  left: 50%;
  width: 1.5rem;
}
.feat-ydot-2 {
  top: 35%;
  right: 8%;
  width: 1.5rem;
  opacity: 0.6;
}
.feat-ydot-3 {
  bottom: 20%;
  left: 20%;
  width: 1.5rem;
  animation-delay: 1.5s;
}
.feat-ydot-4 {
  top: 60%;
  left: 25%;
  width: 1.25rem;
  opacity: 0.7;
}

.features-sparkles {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .features-sparkles {
    margin-left: 1rem;
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .features-sparkles {
    font-size: 2.25rem;
  }
}

/* --- Services Section --- */
.service-section {
  position: relative;
  margin-top: 2rem;
  margin-bottom: -1.5rem; /* -mb-6 */
  width: calc(100% - 1rem);
  margin-left: auto;
  margin-right: auto;
  padding-top: 4rem; /* pt-16 */
  padding-bottom: 7rem; /* pb-28 */
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #faf2e0;
  overflow: hidden;
  border-radius: 50px;
  z-index: 10;
}

@media (min-width: 640px) {
  .service-section {
    width: calc(100% - 2rem);
  }
}

@media (min-width: 768px) {
  .service-section {
    width: calc(100% - 3rem);
    margin-top: 3rem;
    padding-top: 6rem; /* pt-24 */
    padding-bottom: 11rem; /* pb-44 */
  }
}

@media (min-width: 1280px) {
  .service-section {
    width: calc(100% - 4rem);
    margin-top: 4rem;
  }
}

.service-grid {
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  display: grid;
  grid-template-cols: 1fr;
  gap: 3rem; /* gap-12 */
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-badge {
  display: inline-block;
  padding: 0.375rem 1rem; /* py-1.5 px-4 */
  margin-bottom: 0.5rem; /* mb-2 */
  border-radius: 9999px;
  background-color: #FEF3C7;
  border: 1px solid #FDE68A;
  transition: transform 0.3s ease;
}

.service-badge-text {
  color: #D97706;
  font-size: 0.875rem; /* text-sm */
  font-weight: 700; /* font-bold */
  display: flex;
  align-items: center;
  gap: 0.25rem; /* gap-1 */
}

.service-title {
  color: #1F2937;
  font-size: 40px; /* same as hero-title */
  font-weight: 800; /* font-extrabold */
  margin-top: 0;
  margin-bottom: 1rem; /* mb-4 */
}

@media (min-width: 1024px) {
  .service-title {
    font-size: 44px; /* same as hero-title at 1024px */
  }
}

@media (min-width: 1280px) {
  .service-title {
    font-size: 66px; /* same as hero-title at 1280px */
  }
}

.service-title-highlight {
  color: #F59E0B;
  position: relative;
  display: inline-block;
}

.service-subtitle {
  color: #374151;
  font-size: 18px; /* text-lg */
  font-weight: 700; /* font-bold */
  margin-top: 0;
  margin-bottom: 1rem; /* mb-4 */
}

@media (min-width: 768px) {
  .service-subtitle {
    font-size: 1.25rem; /* text-xl */
  }
}

.service-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: #F59E0B;
}

.service-desc {
  color: #6B7280;
  font-size: 16px; /* text-base */
  margin-top: 0;
  margin-bottom: 3rem; /* mb-12 */
  max-width: 36rem; /* max-w-xl */
  line-height: 1.625; /* leading-relaxed */
}

.service-items-grid {
  display: grid;
  grid-template-cols: 1fr;
  row-gap: 2.5rem; /* gap-y-10 */
  column-gap: 1.5rem; /* gap-x-6 */
}

@media (min-width: 640px) {
  .service-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-item {
  display: flex;
  align-items: start;
  gap: 0.5rem; /* gap-2 */
  transition: transform 0.3s ease-out;
}

.service-item:hover {
  transform: translateX(4px);
}

.service-icon-container {
  flex-shrink: 0;
  width: 4.5rem; /* w-18 */
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.service-item:hover .service-icon-container {
  transform: scale(1.1) rotate(6deg);
}

.service-icon-img {
  width: 4rem; /* w-16 */
  height: 4rem;
}

.service-item-content {
  flex: 1;
}

.service-item-title {
  color: #1F2937;
  font-weight: 700;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 0.25rem; /* mb-1 */
  transition: all 0.3s ease;
}

.service-item-desc {
  color: #6B7280;
  font-size: 14px;
  line-height: 1.375; /* leading-snug */
  margin: 0;
  transition: all 0.3s ease;
}

.service-right-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3rem; /* py-12 */
  padding-bottom: 3rem;
  padding-left: 1rem; /* px-4 */
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .service-right-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

.service-right-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .service-right-container {
    max-width: 450px;
  }
}

@media (min-width: 1280px) {
  .service-right-container {
    max-width: 480px;
  }
}

.service-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  position: relative;
  z-index: 10;
  transition: transform 0.5s ease;
}

.service-rocket-wrap {
  position: absolute;
  bottom: 2%;
  left: -10%;
  width: 6rem; /* w-24 */
  height: 6rem;
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08)); /* drop-shadow-2xl */
  z-index: 20;
}

@media (min-width: 640px) {
  .service-rocket-wrap {
    width: 7rem; /* w-28 */
    height: 7rem;
  }
}

.service-rocket-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Service Entrance Animations */
.service-animate-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.service-animate-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.service-animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Delay classes */
.delay-0 { transition-delay: 0ms; }
.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Trigger visible states */
.service-visible .service-animate-left {
  opacity: 1;
  transform: translateX(0);
}

.service-visible .service-animate-right {
  opacity: 1;
  transform: translateX(0);
}

.service-visible .service-animate-up {
  opacity: 1;
  transform: translateY(0);
}

/* --- Pricing Section --- */
.pricing-section {
  padding-top: 4rem; /* py-16 */
  padding-bottom: 4rem;
  padding-left: 1rem; /* px-4 */
  padding-right: 1rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem; /* mb-12 */
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.pricing-visible .pricing-header {
  opacity: 1;
  transform: translateY(0);
}

.pricing-title-container {
  position: relative;
  display: inline-block;
}

.pricing-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 800; /* font-extrabold */
  color: #0F172A;
  margin: 0;
}

@media (min-width: 640px) {
  .pricing-title {
    font-size: 1.875rem; /* text-3xl */
  }
}

@media (min-width: 768px) {
  .pricing-title {
    font-size: 2.25rem; /* text-4xl */
  }
}

@media (min-width: 1024px) {
  .pricing-title {
    font-size: 3rem; /* text-5xl */
  }
}

.pricing-title-highlight {
  color: #F97316;
}

.pricing-sparkle {
  position: absolute;
  top: -1rem;
  right: -2rem;
  color: #FFD1B9;
  font-size: 1.5rem;
}

.pricing-subtitle {
  margin-top: 1rem;
  color: #64748B;
  font-size: 0.875rem; /* text-sm */
  font-weight: 500;
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .pricing-subtitle {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .pricing-subtitle {
    font-size: 1.125rem;
  }
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 1.5rem; /* gap-6 */
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 1.25rem; /* p-5 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  cursor: pointer;
  
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 640px) {
  .pricing-card {
    padding: 1.5rem; /* p-6 */
  }
}

.pricing-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* hover:shadow-2xl */
}

/* Scroll Animation Trigger */
.pricing-visible .pricing-card {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card-free-theme {
  background-color: #FDF2FF;
  border-color: #E9D5FF;
}

.pricing-card-pro-theme {
  background-color: #FFF7ED;
  border-color: #FED7AA;
}

.pricing-card-creator-theme {
  background-color: #F0FDF4;
  border-color: #BBF7D0;
}

/* Accent Colors */
.text-purple-accent { color: #9333EA; }
.text-orange-accent { color: #F97316; }
.text-green-accent { color: #16A34A; }

/* Star fall animation colors */
.text-purple-400 { color: #c084fc; }
.text-orange-400 { color: #fb923c; }
.text-green-400 { color: #4ade80; }

/* Pricing details styles */
.price-container {
  position: relative;
  z-index: 10;
  margin-bottom: 1rem;
  width: 100%;
  text-align: left;
}

.price-box {
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.75rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.price-monthly-text {
  font-size: 1.25rem; /* text-xl */
  font-weight: 900; /* font-black */
  color: #111827;
}

@media (min-width: 640px) {
  .price-monthly-text {
    font-size: 1.5rem; /* text-2xl */
  }
}

.price-yearly-container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(17, 24, 39, 0.05);
}

.price-yearly-text {
  font-size: 0.875rem; /* text-sm */
  font-weight: 800; /* font-extrabold */
}

/* Card layout elements */
.pricing-card-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 10;
  margin-bottom: 1rem;
}

.pricing-card-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-icon-wrap {
  position: relative;
  width: 3rem; /* w-12 */
  height: 3rem;
  border-radius: 9999px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-icon-wrap {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .pricing-icon-wrap {
    width: 3.5rem; /* w-14 */
    height: 3.5rem;
  }
}

.pricing-icon-img {
  width: 2rem; /* w-8 */
  height: 2rem;
  object-fit: contain;
}

@media (min-width: 640px) {
  .pricing-icon-img {
    width: 2.25rem; /* w-9 */
    height: 2.25rem;
  }
}

.pricing-title-wrap {
  text-align: left;
}

.pricing-card-title {
  font-size: 0.875rem; /* text-sm */
  font-weight: 800;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .pricing-card-title {
    font-size: 1.25rem; /* text-xl */
  }
}

.pricing-card-subtitle {
  color: #6B7280;
  font-size: 10px;
  font-weight: 500;
  margin: 0;
}

@media (min-width: 640px) {
  .pricing-card-subtitle {
    font-size: 0.75rem; /* text-xs */
  }
}

.pricing-card-divider {
  border-top: 1px solid rgba(17, 24, 39, 0.05);
  margin-bottom: 1rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* Features List in Card */
.pricing-features-wrap {
  text-align: left;
  width: 100%;
  position: relative;
  z-index: 10;
  flex-grow: 1;
}

.pricing-features-title {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-bottom: 0.625rem;
}

@media (min-width: 640px) {
  .pricing-features-title {
    font-size: 11px;
  }
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pricing-feature-item {
  display: flex;
  align-items: start;
  gap: 0.625rem;
  color: #374151;
  font-size: 0.75rem; /* text-xs */
  font-weight: 600;
  line-height: 1.375;
}

@media (min-width: 640px) {
  .pricing-feature-item {
    font-size: 13px;
  }
}

.pricing-check-icon {
  width: 1rem; /* w-4 */
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* --- Why Choose Us Section --- */
.why-section {
  position: relative;
  width: calc(100% - 1rem);
  margin-left: auto;
  margin-right: auto;
  background-color: #F0F6F1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2.5rem; /* mb-10 */
  border-radius: 50px;
}

@media (min-width: 640px) {
  .why-section {
    width: calc(100% - 2rem);
  }
}

@media (min-width: 768px) {
  .why-section {
    width: calc(100% - 3rem);
  }
}

@media (min-width: 1280px) {
  .why-section {
    width: calc(100% - 4rem);
  }
}

/* Corner Blobs */
.why-blob {
  position: absolute;
  width: 10rem; /* w-40 */
  height: auto;
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 768px) {
  .why-blob {
    width: 16rem; /* w-64 */
  }
}

@media (min-width: 1280px) {
  .why-blob {
    width: 18rem; /* w-72 */
  }
}

.why-blob-top-left { top: 0; left: 0; }
.why-blob-top-right { top: 0; right: 0; }
.why-blob-bottom-left { bottom: 0; left: 0; }
.why-blob-bottom-right { bottom: 0; right: 0; }

/* Floating decorations inside section */
.why-float-rocket {
  position: absolute;
  top: 1.5rem; /* top-6 */
  left: 2.5rem; /* left-10 */
  width: 5rem; /* w-20 */
  height: 5rem;
  z-index: 2;
}

@media (min-width: 768px) {
  .why-float-rocket {
    width: 8rem; /* w-32 */
    height: 8rem;
  }
}

/* Inner Container */
.why-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .why-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* Grid Layout */
.why-flex-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .why-flex-wrap {
    flex-direction: row;
  }
}

/* Left Content side */
.why-left-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .why-left-content {
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .why-left-content {
    width: 48%;
    align-items: flex-start;
    text-align: left;
  }
}

/* Badge decoration */
.why-badge {
  background-color: #d5ebd7;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

@media (min-width: 1536px) {
  .why-badge {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
  }
}

.why-badge-text {
  color: #14532D;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .why-badge-text {
    font-size: 0.75rem; /* text-xs */
  }
}

@media (min-width: 1536px) {
  .why-badge-text {
    font-size: 0.875rem; /* text-sm */
  }
}

/* Title text */
.why-title {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700;
  color: #064E3B;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .why-title {
    font-size: 3rem; /* text-5xl */
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .why-title {
    font-size: 3.75rem; /* text-6xl */
  }
}

@media (min-width: 1536px) {
  .why-title {
    font-size: 3rem; /* 2xl:text-5xl */
    margin-bottom: 1.5rem;
  }
}

.why-title-highlight {
  color: #2D6A4F;
}

/* Subtitle text */
.why-subtitle {
  color: #4B5563;
  font-size: 1rem; /* text-base */
  margin-top: 0;
  margin-bottom: 2rem;
  max-width: 480px;
}

@media (min-width: 768px) {
  .why-subtitle {
    font-size: 20px;
    max-width: 100%;
  }
}


/* Features List Container */
.why-features-box {
  width: 100%;
  background-color: #064E3B;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .why-features-box {
    padding: 1.25rem;
  }
}

@media (min-width: 768px) {
  .why-features-box {
    border-radius: 20px;
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .why-features-box {
    max-width: 460px;
    padding: 2rem;
  }
}

@media (min-width: 1536px) {
  .why-features-box {
    max-width: 560px;
    border-radius: 40px;
  }
}

.why-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .why-features-list {
    gap: 1rem;
  }
}

@media (min-width: 1536px) {
  .why-features-list {
    gap: 1.5rem;
  }
}

.why-feature-item {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .why-feature-item {
    gap: 1rem;
  }
}

.why-check-circle {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

@media (min-width: 640px) {
  .why-check-circle {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.why-check-svg {
  width: 0.625rem;
  height: 0.625rem;
}

@media (min-width: 640px) {
  .why-check-svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.why-feature-text {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .why-feature-text {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .why-feature-text {
    font-size: 16px;
  }
}

/* Green and Orange icon colors */
.text-green-checkmark { color: #22C55E; }
.text-orange-checkmark { color: #F59E0B; }

/* Right Image layout */
.why-right-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .why-right-side {
    width: 52%;
    align-items: flex-end;
  }
}

.why-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}

@media (min-width: 768px) {
  .why-image-wrapper {
    max-width: 520px;
  }
}

.why-above-element {
  position: relative;
  width: 100%;
  margin-bottom: -8rem; /* -mb-32 */
}

@media (min-width: 1280px) {
  .why-above-element {
    margin-left: -4rem; /* xl:-ml-16 */
    margin-bottom: -4.5rem; /* xl:-mb-18 */
  }
}

.why-above-img {
  width: 8rem; /* w-32 */
  height: 8rem;
  object-fit: contain;
}

.why-main-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform-origin: center;
}

@media (min-width: 1024px) {
  .why-main-img {
    transform-origin: right;
  }
}

@media (min-width: 1280px) {
  .why-main-img {
    transform: scale(1.25);
  }
}

/* Slide animation states */
.why-animate-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: all 1s ease-out;
}

.why-animate-right {
  opacity: 0;
  transform: translateX(48px);
  transition: all 1s ease-out;
}

.why-animate-up {
  opacity: 0;
  transform: translateY(48px);
  transition: all 1s ease-out;
}

.why-visible .why-animate-left,
.why-visible .why-animate-right,
.why-visible .why-animate-up {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- How It Works Section (working-section) --- */
.working-section {
  padding: 2rem 1rem 1rem 1rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  width: 100%;
}

@media (min-width: 640px) {
  .working-section {
    padding: 4rem 1rem 1.5rem 1rem;
  }
}

@media (min-width: 768px) {
  .working-section {
    padding: 4rem 1.5rem 2rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .working-section {
    padding: 4rem 2rem 3rem 2rem;
  }
}

.working-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Header */
.working-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.working-title {
  color: #05011d;
  font-size: 1.5rem; /* text-2xl */
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0;
}

@media (min-width: 640px) {
  .working-title {
    font-size: 1.875rem; /* text-3xl */
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .working-title {
    font-size: 2.25rem; /* text-4xl */
  }
}

@media (min-width: 1024px) {
  .working-title {
    font-size: 3rem; /* text-5xl */
  }
}

.text-orange {
  color: #F97316;
}

/* Carousel Wrapper */
.working-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 2.5rem 0;
}

/* Star Decorations */
.working-decor-star {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 5rem;
  height: 5rem;
}

.working-decor-star img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.left-star {
  top: 50%;
  transform: translateY(-50%);
  left: -6rem;
}

.right-star {
  top: 0;
  right: -3rem;
}

/* Hide star decorations on small screens to prevent layout break */
@media (max-width: 1536px) {
  .working-decor-star {
    display: none;
  }
}

/* DNA Connecting Line */
.working-dna-line {
  position: absolute;
  top: 42%;
  left: 0;
  width: 100%;
  height: 48px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* Carousel Scroll Area */
.working-carousel-scroll {
  position: relative;
  width: 100%;
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  user-select: none;
}

.working-carousel-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.working-carousel-scroll.grabbing {
  cursor: grabbing;
}

/* Carousel Track */
.working-carousel-track {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
}

@media (min-width: 640px) {
  .working-carousel-track {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .working-carousel-track {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .working-carousel-track {
    gap: 2.5rem;
  }
}

/* Carousel Item */
.working-carousel-item {
  width: 260px;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .working-carousel-item {
    width: 280px;
  }
}

@media (min-width: 768px) {
  .working-carousel-item {
    width: 300px;
  }
}

@media (min-width: 1024px) {
  .working-carousel-item {
    width: 320px;
  }
}

/* Step Marker */
.working-step-marker {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: #6366f1;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

@media (min-width: 640px) {
  .working-step-marker {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
    top: -1.25rem;
  }
}

@media (min-width: 768px) {
  .working-step-marker {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
    top: -1.5rem;
  }
}

/* Card Styling */
.working-card {
  width: 100%;
  background-color: #F7F6FE;
  border: 1px solid #e0e7ff;
  border-radius: 1.5rem;
  padding: 2.5rem 0.75rem 1rem 0.75rem;
  height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .working-card {
    border-radius: 1.75rem;
    padding-top: 3rem;
    height: 330px;
  }
}

@media (min-width: 768px) {
  .working-card {
    border-radius: 1.875rem;
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .working-card {
    height: 360px;
  }
}

/* Inset Border Shadow Effect */
.working-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 2px 8px rgba(99, 102, 241, 0.08);
  pointer-events: none;
  transition: box-shadow 0.3s ease;
}

.working-card:hover {
  border-color: #c7d2fe;
  background-color: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.15);
}

.working-card:hover::after {
  box-shadow: inset 0 2px 4px rgba(99, 102, 241, 0.04);
}

/* Inner Layout */
.working-card-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}

/* Card Image Wrap */
.working-card-img-wrap {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .working-card-img-wrap {
    width: 6rem;
    height: 6rem;
  }
}

@media (min-width: 768px) {
  .working-card-img-wrap {
    width: 8rem;
    height: 8rem;
  }
}

.working-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.working-carousel-item:hover .working-card-img-wrap img {
  transform: scale(1.08);
}

/* Card Content & Text */
.working-card-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  margin-top: 0.5rem;
}

.working-card-title {
  color: #05011d;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  padding: 0 0.25rem;
}

@media (min-width: 768px) {
  .working-card-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .working-card-title {
    font-size: 1.3125rem;
  }
}

.working-card-desc {
  color: #71717a;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .working-card-desc {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .working-card-desc {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .working-card-desc {
    font-size: 1.0625rem;
  }
}

/* Fade Edges */
.carousel-fade-left,
.carousel-fade-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2rem;
  z-index: 15;
  pointer-events: none;
}

@media (min-width: 640px) {
  .carousel-fade-left,
  .carousel-fade-right {
    width: 3rem;
  }
}

.carousel-fade-left {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8), transparent);
}

.carousel-fade-right {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0.8), transparent);
}

/* Animations and Intersection Visibility */
.working-animate-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.working-visible .working-animate-fade {
  opacity: 1;
  transform: translateY(0);
}

.working-carousel-wrapper.delay-200 {
  transition-delay: 200ms;
}

@media (min-width: 1280px) {
  /* No scroll on desktop */
  .working-carousel-scroll {
    overflow: visible;
    cursor: default;
    user-select: auto;
  }
  
  /* Display 5 cards statically in a row */
  .working-carousel-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  
  /* Let grid handle card width */
  .working-carousel-item {
    width: auto;
  }
  
  /* Hide all duplicate cards (Set 2 & 3) */
  .working-carousel-item:nth-child(n+6) {
    display: none;
  }
  
  /* Hide fade overlays since it doesn't scroll */
  .carousel-fade-left,
  .carousel-fade-right {
    display: none;
  }
}

@media (min-width: 1536px) {
  .working-carousel-track {
    gap: 3.5rem;
  }
}

/* --- Join Discord Section (discord-section) --- */
.discord-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 1rem auto;
  padding: 0 1rem;
}

.discord-container {
  width: 100%;
  background-color: rgba(147, 51, 234, 0.06);
  border-radius: 32px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border: 2px solid #8b5cf6;
  transition: all 1s ease-out;
}

.discord-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0), rgba(99, 102, 241, 0.1));
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.discord-container:hover .discord-hover-overlay {
  opacity: 1;
}

/* Left Side: Illustration */
.discord-left {
  width: 100%;
  max-width: 170px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.discord-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
}

.discord-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Middle: Text and Arrow */
.discord-middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
}

.discord-text-container {
  text-align: center;
  flex: 1;
  min-width: 0;
}

.discord-title {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.375rem;
  padding: 0 0.5rem;
  line-height: 1.3;
}

.discord-gradient-text {
  background: linear-gradient(to right, #4b3ee3, #b443ad, #e03a7f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.discord-subtitle {
  color: rgba(88, 28, 135, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  padding: 0 0.5rem;
}

/* Arrow (Hidden on mobile, visible on desktop) */
.discord-arrow-container {
  display: none;
  width: 180px;
  height: 90px;
  color: #a855f7;
  flex-shrink: 0;
  margin-right: -10px;
  transform: translateY(20px);
}

.discord-arrow-container svg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.discord-container:hover .discord-arrow-container svg {
  transform: scale(1.05);
}

/* Arrow animations */
@keyframes drawLine {
  0% {
    stroke-dashoffset: 200;
    opacity: 1;
  }
  40% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  85% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  90%, 100% {
    stroke-dashoffset: 200;
    opacity: 0;
  }
}

@keyframes drawHead {
  0%, 40% {
    stroke-dashoffset: 30;
    opacity: 0;
  }
  41% {
    opacity: 1;
  }
  60% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  85% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  90%, 100% {
    stroke-dashoffset: 30;
    opacity: 0;
  }
}

.arrow-line-draw {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 3.5s ease-in-out infinite;
}

.arrow-head-draw {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: drawHead 3.5s ease-in-out infinite;
}

/* Right Side: Button & Subtext */
.discord-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
}

.discord-button {
  width: 100%;
  background-color: #5865F2;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 19px 2rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.discord-button img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.discord-button:hover {
  background-color: #4752c4;
  box-shadow: 0 12px 25px rgba(88, 101, 242, 0.35);
  transform: translateY(-2px);
}

.discord-button:active {
  transform: scale(0.95);
}

.discord-footer-text {
  color: rgba(88, 28, 135, 0.5);
  font-size: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
  user-select: none;
}

/* Responsive Breakpoints */
@media (min-width: 640px) {
  .discord-title {
    font-size: 1.55rem;
  }
  
  .discord-subtitle {
    font-size: 0.98rem;
  }
}

@media (min-width: 768px) {
  .discord-section {
    padding: 0 1.5rem;
  }

  .discord-container {
    flex-direction: row;
    padding: 2rem 2rem 2rem 0.75rem;
    gap: 2rem;
  }

  .discord-left {
    width: 160px;
    max-width: none;
    justify-content: flex-start;
  }

  .discord-img-wrap {
    aspect-ratio: 4 / 3;
  }

  .discord-middle {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
  }

  .discord-text-container {
    text-align: left;
    margin-top: -4px;
  }

  .discord-right {
    width: auto;
    min-width: 290px;
  }
}

@media (min-width: 1024px) {
  .discord-section {
    padding: 0 2rem;
  }

  .discord-left {
    width: 190px;
  }

  .discord-title {
    font-size: 1.75rem;
  }

  .discord-subtitle {
    font-size: 1.1rem;
  }

  .discord-arrow-container {
    display: block;
  }

  .discord-right {
    min-width: 330px;
  }
  
  .discord-button {
    font-size: 1.125rem;
  }
}

@media (min-width: 1280px) {
  .discord-left {
    width: 300px;
  }

  .discord-title {
    font-size: 1.95rem;
  }

  .discord-subtitle {
    font-size: 1.25rem;
  }

  .discord-arrow-container {
    margin-right: -15px;
  }
}

/* Intersection Observer Animations */
.discord-animate-fade {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-visible .discord-animate-fade {
  opacity: 1;
  transform: translateY(0);
}

/* --- FAQ Section (faq-section) --- */
.faq-section {
  padding: 3rem 1rem 5rem 1rem;
  background: linear-gradient(to bottom, #ffffff, #FFF9F5);
  position: relative;
  overflow: visible;
  width: 100%;
}

.faq-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.faq-title {
  font-size: 1.875rem; /* 3xl */
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.2;
}

.faq-title .text-orange {
  color: #F97316;
  position: relative;
  display: inline-block;
}

.faq-decor-sparkle {
  position: absolute;
  top: -1rem;
  right: -2.5rem;
  color: #FFD1B9;
  font-size: 1.875rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

/* Left Side: Stickers */
.faq-left {
  display: none;
  justify-content: center;
  align-items: start;
  position: sticky;
  top: 7rem;
  z-index: 20;
}

.faq-stickers-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-sticker {
  position: absolute;
  object-fit: contain;
}

/* lg screen defaults */
.sticker-smile {
  top: 0%;
  left: 10%;
  width: 160px;
  height: 160px;
  z-index: 0;
  animation: floatSmile 3.8s ease-in-out infinite;
}

.sticker-box {
  top: 10%;
  left: 45%;
  width: 224px;
  height: 224px;
  z-index: 20;
  animation: floatBox 4.2s ease-in-out infinite;
}

.sticker-mark {
  bottom: 20%;
  left: 20%;
  width: 112px;
  height: 112px;
  z-index: 20;
  animation: floatMark 4.5s ease-in-out infinite;
}

.sticker-line {
  bottom: 10%;
  right: 5%;
  width: 192px;
  height: auto;
  opacity: 0.5;
  z-index: 10;
  pointer-events: none;
  animation: pulseSlow 3.5s ease-in-out infinite;
}

/* xl screen adjustments */
@media (min-width: 1280px) {
  .sticker-smile {
    top: 20%;
    left: 10%;
  }

  .sticker-box {
    top: 20%;
    left: 45%;
  }

  .sticker-mark {
    bottom: 15%;
    left: 25%;
  }

  .sticker-line {
    bottom: 18%;
    right: 5%;
  }
}

/* Sticker Animations */
@keyframes floatSmile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(-12px) rotate(12deg); }
}

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

@keyframes pulseSlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Right Side: Accordion */
.faq-right {
  width: 100%;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #ffffff;
  border-radius: 30px;
}

/* Color schemes for items */
.faq-item-purple {
  background-color: #FDF2FF;
}

.faq-item-orange {
  background-color: #FFF7ED;
}

.faq-item-green {
  background-color: #F0FDF4;
}

.faq-item-sky {
  background-color: #F0F9FF;
}

/* Item interactions */
.faq-item.active {
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
  transform: scale(1.02);
  border-radius: 40px 10px 40px 10px !important;
}

.faq-item:not(.active):hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

/* Trigger Button */
.faq-trigger {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
}

.faq-trigger-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-sticker-num {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-trigger:hover .faq-sticker-num {
  transform: rotate(12deg);
}

/* Sticker number colors */
.bg-purple-light {
  background-color: #E9D5FF;
  color: #6b21a8;
}

.bg-orange-light {
  background-color: #FED7AA;
  color: #9a3412;
}

.bg-green-light {
  background-color: #BBF7D0;
  color: #166534;
}

.bg-sky-light {
  background-color: #BAE6FD;
  color: #0369a1;
}

.faq-question {
  color: #334155;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  line-height: 1.3;
}

.faq-trigger-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.faq-item.active .faq-trigger-arrow {
  transform: rotate(180deg);
}

.faq-arrow-svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #334155;
}

/* Accordion Content */
.faq-content {
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  max-height: 0;
  opacity: 0;
}

.faq-item.active .faq-content {
  max-height: 300px;
  opacity: 1;
}

.faq-content-inner {
  padding: 0 1.5rem 1.5rem 5.5rem;
  position: relative;
}

.faq-content-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 4.5rem;
  width: 4px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}

.faq-answer {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* FAQ Footer Message */
.faq-footer {
  text-align: center;
  margin-top: 3rem;
}

.faq-footer-badge {
  display: inline-block;
  background: linear-gradient(to right, #FFF7ED, #FDF2FF);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.faq-footer-badge-text {
  color: #F97316;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}

/* Responsive Styles */
@media (min-width: 640px) {
  .faq-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 3rem;
  }

  .faq-question {
    font-size: 1.125rem;
  }

  .faq-answer {
    font-size: 1rem;
  }

  .faq-footer-badge-text {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
  }

  .faq-left {
    display: flex;
  }
}

@media (min-width: 1280px) {
  .faq-grid {
    gap: 5rem;
  }
}

/* Intersection Observer Animations */
.faq-animate-fade {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-visible .faq-animate-fade {
  opacity: 1;
  transform: translateY(0);
}

.delay-150 {
  transition-delay: 150ms;
}

.delay-300 {
  transition-delay: 300ms;
}

/* --- Try It Now Section (try-section) --- */
.try-section-outer {
  position: relative;
  width: 100%;
  z-index: 20;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .try-section-outer {
    padding-bottom: 5rem;
  }
}

/* Outer Glow Effects */
.try-glow-pink {
  position: absolute;
  top: -150px;
  left: -2.5rem;
  width: 300px;
  height: 300px;
  background-color: rgba(244, 114, 182, 0.25);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: -10;
  mix-blend-mode: multiply;
}

@media (min-width: 768px) {
  .try-glow-pink {
    left: -10rem;
    width: 500px;
    height: 500px;
    filter: blur(140px);
  }
}

.try-glow-yellow {
  position: absolute;
  top: -150px;
  right: -2.5rem;
  width: 300px;
  height: 300px;
  background-color: rgba(254, 240, 138, 0.25);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: -10;
  mix-blend-mode: multiply;
}

@media (min-width: 768px) {
  .try-glow-yellow {
    right: -10rem;
    width: 500px;
    height: 500px;
    filter: blur(140px);
  }
}

/* Main Section Wrapper */
.try-section {
  position: relative;
  width: calc(100% - 1rem);
  margin: 0 auto;
  padding: 3rem 1rem 6rem 1rem;
  border-radius: 50px;
}

@media (min-width: 640px) {
  .try-section {
    width: calc(100% - 2rem);
  }
}

@media (min-width: 768px) {
  .try-section {
    width: calc(100% - 3rem);
    padding-top: 7rem;
    padding-bottom: 8rem;
  }
}

@media (min-width: 1280px) {
  .try-section {
    width: calc(100% - 4rem);
  }
}

/* Background Decorations */
.try-bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.try-blob-purple {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 16rem;
  height: 16rem;
  background-color: #E9D5FF;
  border-radius: 9999px;
  filter: blur(64px);
  opacity: 0.4;
}

.try-blob-violet {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 20rem;
  height: 20rem;
  background-color: #C084FC;
  border-radius: 9999px;
  filter: blur(64px);
  opacity: 0.2;
}

/* Floating Balls */
.try-ball {
  position: absolute;
  height: auto;
}

.try-ball.ball-1 {
  top: 15%;
  left: 4%;
  width: 1rem;
  opacity: 0.4;
}

.try-ball.ball-2 {
  top: 18%;
  right: 16%;
  width: 1.5rem;
  opacity: 0.4;
}

.try-ball.ball-4 {
  top: 48%;
  right: 6%;
  width: 1rem;
  opacity: 0.45;
}

.try-ball.ball-5 {
  bottom: 30%;
  left: 6%;
  width: 1.5rem;
  opacity: 0.45;
}

.try-ball.ball-6 {
  bottom: 10%;
  right: 15%;
  width: 1.125rem;
  opacity: 0.45;
}

.try-ball.ball-3-1 {
  bottom: 5%;
  left: 25%;
  width: 1rem;
  opacity: 0.45;
}

.try-ball.ball-3-2 {
  top: 3%;
  left: 50%;
  width: 1rem;
  opacity: 0.4;
}

/* Container */
.try-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 640px) {
  .try-container {
    gap: 7rem;
  }
}

@media (min-width: 1024px) {
  .try-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

/* Left Column */
.try-left {
  width: 100%;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .try-left {
    width: 45%;
    margin-bottom: 0;
  }
}

.try-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.20);
  border: 1px solid #f3f4f6;
}

.try-badge-text {
  color: #1F2937;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.try-title {
  color: #1F2937;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .try-title {
    font-size: 3rem;
  }
}

.try-title-purple {
  color: #9333EA;
}

/* Why You Love Emotales */
.try-love {
  margin-bottom: 1.5rem;
  width: 100%;
}

.try-love-title {
  color: #1F2937;
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1;
}

.try-love-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .try-love-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.try-love-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.try-love-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.try-love-icon {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
}

.try-love-text {
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Emojis Selector Box */
.try-emojis-box {
  width: 100%;
  background-color: #ffffff;
  border-radius: 32px;
  padding: 1.5rem;
  box-shadow: 0 15px 50px -15px rgba(147, 51, 234, 0.15);
  border: 1px solid #faf5ff;
  position: relative;
  z-index: 20;
}

.try-emojis-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .try-emojis-row {
    gap: 3rem;
    padding: 0 1rem;
  }
}

.try-emoji-item {
  position: relative;
  cursor: pointer;
}

.try-emoji-img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  transition: transform 0.3s;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

.try-emoji-item:hover .try-emoji-img {
  transform: scale(1.15);
}

@media (min-width: 768px) {
  .try-emoji-img {
    width: 4rem;
    height: 4rem;
  }
}

@media (min-width: 1024px) {
  .try-emoji-img {
    width: 72px;
    height: 72px;
  }
}

.try-emoji-glow {
  position: absolute;
  inset: 0;
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s;
}

.try-emoji-item:hover .try-emoji-glow {
  opacity: 0.5;
}

.try-emoji-glow.bg-yellow {
  background-color: #fef08a;
}

.try-emoji-glow.bg-orange {
  background-color: #ffedd5;
}

.try-emoji-glow.bg-purple {
  background-color: #f3e8ff;
}

/* Button & Clicker Wrapper */
.try-button-wrap {
  position: relative;
  width: 100%;
}

.try-generate-btn {
  width: 100%;
  background: linear-gradient(to right, #9333EA, #7E22CE);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0.95rem;
  border-radius: 20px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
  z-index: 10;
  box-shadow: 0 8px 25px -8px rgba(147, 51, 234, 0.7);
}

.try-generate-btn:hover {
  opacity: 0.95;
  transform: scale(1.02);
}

.try-generate-btn:active {
  transform: scale(0.95);
}

.try-btn-star {
  width: 1.75rem;
  height: 1.75rem;
  transition: transform 0.5s;
}

.try-generate-btn:hover .try-btn-star {
  transform: rotate(180deg);
}

/* Hand Clicker */
.try-hand-clicker {
  position: absolute;
  top: 52%;
  right: 2%;
  z-index: 20;
  pointer-events: none;
  width: 7rem;
  height: 7rem;
}

@media (min-width: 640px) {
  .try-hand-clicker {
    width: 9rem;
    height: 9rem;
  }
}

@media (min-width: 1024px) {
  .try-hand-clicker {
    width: 11rem;
    height: 11rem;
  }
}

.try-hand-pointer {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.try-hand-lines {
  position: absolute;
  top: 11%;
  left: 17%;
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
}

.try-hand-line {
  position: absolute;
  inset: 0;
}

.try-hand-line span {
  position: absolute;
  top: 0;
  left: calc(50% - 1.5px);
  width: 3px;
  height: 10px;
  background-color: #facc15;
  border-radius: 9999px;
  opacity: 0;
  transform-origin: bottom;
}

/* Center Arrow */
.try-arrow-wrap {
  display: none;
  width: 10%;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .try-arrow-wrap {
    display: flex;
    transform: translateY(300px);
  }
}

.try-arrow {
  width: 3.5rem;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.05));
}

@media (min-width: 1024px) {
  .try-arrow {
    width: 8rem;
  }
}

/* Right Side Mockup */
.try-right {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

@media (min-width: 1024px) {
  .try-right {
    width: 45%;
    justify-content: flex-start;
    transform: translateY(100px);
  }
}

.try-mockup-wrapper {
  width: 100%;
  max-width: 270px;
  position: relative;
  transition: all 0.5s;
  padding-bottom: 9rem;
}

@media (min-width: 380px) {
  .try-mockup-wrapper {
    max-width: 310px;
  }
}

@media (min-width: 640px) {
  .try-mockup-wrapper {
    padding-bottom: 12rem;
  }
}

@media (min-width: 768px) {
  .try-mockup-wrapper {
    max-width: 340px;
  }
}

@media (min-width: 1024px) {
  .try-mockup-wrapper {
    max-width: 370px;
  }
}

@media (min-width: 1440px) {
  .try-mockup-wrapper {
    padding-bottom: 4rem;
  }
}

/* Mockup Container */
.try-mockup-container {
  position: relative;
  width: 100%;
  transition: opacity 0.3s;
}

.try-mockup-bg {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 36px;
  filter: drop-shadow(0 25px 50px -12px rgba(0, 0, 0, 0.25));
}

.try-mockup-content {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 44%;
  bottom: 24%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.try-story-text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 32%;
  padding-top: 0.75rem;
  overflow: visible;
  position: relative;
}

.try-story-badge {
  position: absolute;
  top: -17px;
  right: 0.875rem;
  color: #ffffff;
  font-weight: 700;
  user-select: none;
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
}

@media (min-width: 768px) {
  .try-story-badge {
    right: 1.125rem;
  }
}

#try-story-num {
  font-size: 14px;
}

@media (min-width: 350px) {
  #try-story-num {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  #try-story-num {
    font-size: 18.5px;
  }
}

.try-story-slash {
  font-size: 9.5px;
  color: rgba(255,255,255,0.75);
}

@media (min-width: 350px) {
  .try-story-slash {
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  .try-story-slash {
    font-size: 13.5px;
  }
}

.try-story-paragraph {
  color: #1F2937;
  font-weight: 600;
  font-size: 9px;
  line-height: 1.6;
  user-select: none;
  padding: 0 0.5rem;
  margin: 0;
}

@media (min-width: 350px) {
  .try-story-paragraph {
    font-size: 10px;
  }
}

@media (min-width: 380px) {
  .try-story-paragraph {
    font-size: 11.5px;
  }
}

@media (min-width: 768px) {
  .try-story-paragraph {
    font-size: 13px;
  }
}


/* Nav Buttons inside Mockup */
.try-nav-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
}

@media (min-width: 380px) {
  .try-nav-buttons {
    gap: 0.75rem;
  }
}

.try-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 9px;
  transition: all 0.2s;
  cursor: pointer;
  user-select: none;
  border: none;
}

@media (min-width: 350px) {
  .try-nav-btn {
    font-size: 10px;
  }
}

@media (min-width: 380px) {
  .try-nav-btn {
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 11.5px;
  }
}

@media (min-width: 768px) {
  .try-nav-btn {
    font-size: 13px;
  }
}

.try-prev-btn {
  border: 1px solid #E55858;
  color: #E55858;
  background-color: #ffffff;
  box-shadow: 0 4px 12px -4px rgba(229,88,88,0.15);
}

.try-prev-btn:hover {
  background-color: rgba(254, 242, 242, 0.3);
}

.try-prev-btn:active {
  transform: scale(0.95);
}

.try-next-btn {
  background-color: #E55858;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(229,88,88,0.3);
}

.try-next-btn:hover {
  background-color: #d13f3f;
}

.try-next-btn:active {
  transform: scale(0.95);
}

.try-nav-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.try-btn-arrow-svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media (min-width: 768px) {
  .try-btn-arrow-svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}

/* Callout Overlay (Arrow & Bubble) */
.try-callout-overlay {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  z-index: 30;
  transition: all 0.5s;
}

@media (min-width: 640px) {
  .try-callout-overlay {
    bottom: 35px;
    gap: 0.75rem;
  }
}

@media (min-width: 1440px) {
  .try-callout-overlay {
    left: 98%;
    top: 56%;
    bottom: auto;
    transform: translateY(-50%);
    flex-direction: row;
  }
}

.try-callout-arrow-desktop {
  display: none;
  rotate: 180deg;
  margin-top: 2rem;
  width: 7rem;
  height: 5rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

@media (min-width: 1440px) {
  .try-callout-arrow-desktop {
    display: block;
  }
}

.try-callout-arrow-mobile {
  display: block;
  width: 4rem;
  height: 13rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

@media (min-width: 640px) {
  .try-callout-arrow-mobile {
    width: 5.5rem;
    height: 17rem;
  }
}

@media (min-width: 1440px) {
  .try-callout-arrow-mobile {
    display: none;
  }
}

.try-callout-bubble {
  position: relative;
  transition: transform 0.3s;
  margin-left: 0.25rem;
}

.try-callout-bubble:hover {
  transform: scale(1.05);
}

.try-callout-bubble-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
}

.font-doodle {
  font-family: 'Patrick Hand', cursive, sans-serif;
}

.try-callout-text {
  position: relative;
  z-index: 10;
  color: #7B64E2;
  font-family: 'Patrick Hand', cursive, sans-serif;
  font-size: 12.5px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .try-callout-text {
    font-size: 16px;
    padding: 1rem 2rem;
  }
}

@media (min-width: 1440px) {
  .try-callout-text {
    font-size: 20px;
    padding: 1.25rem 2.5rem;
  }
}

/* Video Container */
.try-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 36px;
  overflow: hidden;
  filter: drop-shadow(0 25px 50px -12px rgba(0,0,0,0.25));
  aspect-ratio: 412 / 832;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.try-video-container.active {
  opacity: 1;
  pointer-events: auto;
}

.try-video-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.try-video-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.try-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  border-radius: 36px;
}

/* Slide animation states for story paragraph */
.try-story-paragraph.transition-all {
  transition: all 0.15s ease-in;
}
.try-story-paragraph.transition-all.duration-300 {
  transition: all 0.3s ease-out;
}
.try-story-paragraph.transition-none {
  transition: none !important;
}
.try-story-paragraph.opacity-0 {
  opacity: 0;
}
.try-story-paragraph.opacity-100 {
  opacity: 1;
}
.try-story-paragraph.-translate-x-6 {
  transform: translateX(-24px);
}
.try-story-paragraph.translate-x-6 {
  transform: translateX(24px);
}
.try-story-paragraph.-translate-x-6.blur-\[1px\] {
  transform: translateX(-24px);
  filter: blur(1px);
}
.try-story-paragraph.translate-x-6.blur-\[1px\] {
  transform: translateX(24px);
  filter: blur(1px);
}
.try-story-paragraph.translate-x-0.blur-0 {
  transform: translateX(0);
  filter: blur(0);
}

/* Animations Keyframes */
@keyframes tapHand {
  0%, 20% {
    transform: translateY(4px) scale(1);
    opacity: 0.95;
  }
  40% {
    transform: translateY(-24px) scale(0.96);
    opacity: 1;
  }
  45% {
    transform: translateY(-15px) scale(0.88);
    opacity: 1;
  }
  50% {
    transform: translateY(-24px) scale(0.96);
    opacity: 1;
  }
  70%, 100% {
    transform: translateY(4px) scale(1);
    opacity: 0.95;
  }
}

@keyframes pressButton {
  0%, 40% {
    transform: scale(1) translateY(0);
  }
  45% {
    transform: scale(0.97) translateY(2px);
  }
  50% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

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

@keyframes slowLeftRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(16px);
  }
}

@keyframes slowBlink {
  0%, 100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.45;
  }
}

@keyframes tapLines {
  0%, 44% {
    opacity: 0;
    transform: scaleY(0.3);
  }
  45% {
    opacity: 1;
    transform: scaleY(0.5);
  }
  49% {
    opacity: 1;
    transform: scaleY(1.3);
  }
  68%, 100% {
    opacity: 0;
    transform: scaleY(1.8);
  }
}

.animate-tap-hand-custom {
  animation: tapHand 3.0s infinite ease-in-out;
}

.animate-press-button-custom {
  animation: pressButton 3.0s infinite ease-in-out;
}

.animate-slow-up-down {
  animation: slowUpDown 5.5s infinite ease-in-out;
}

.animate-slow-left-right {
  animation: slowLeftRight 6s infinite ease-in-out;
}

.animate-slow-blink {
  animation: slowBlink 4.5s infinite ease-in-out;
}

.animate-tap-lines-custom {
  animation: tapLines 3.0s infinite ease-in-out;
}

/* Intersection Observer Animations */
.try-animate-fade {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.try-visible .try-animate-fade {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll To Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 0.75rem;
  cursor: pointer;
  background-color: #7c3aed;
  color: #ffffff;
  padding: 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  transition: all 0.3s;
  z-index: 50;
  border: none;
  
  /* Initial hidden state */
  opacity: 0;
  transform: scale(0.75);
  pointer-events: none;
}

.scroll-to-top-btn:hover {
  background-color: #6d28d9;
}

.scroll-to-top-btn.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.scroll-to-top-svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}


/* --- Terms & Privacy Styles --- */
.terms-outer {
  background-color: #FFFDFB;
  min-height: 100vh;
}

.terms-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 1rem 4rem 1rem; /* Clear fixed navbar */
}

@media (min-width: 768px) {
  .terms-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.terms-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .terms-header {
    margin-bottom: 4rem;
  }
}

.terms-title {
  font-size: 1.875rem; /* 30px */
  font-weight: 900;
  color: #05011d;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .terms-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .terms-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .terms-title {
    font-size: 3.75rem;
  }
}

.terms-intro {
  color: #4b5563;
  font-size: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .terms-intro {
    font-size: 1.25rem;
  }
}

.terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  position: relative;
}

@media (min-width: 1024px) {
  .terms-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
  }
}

/* Sidebar */
.terms-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .terms-sidebar {
    display: block;
    grid-column: span 4;
    position: sticky;
    top: 7rem;
    background-color: #FFFDFB;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(243, 244, 246, 0.8);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  }
}

@media (min-width: 1280px) {
  .terms-sidebar {
    grid-column: span 3;
  }
}

.terms-nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.terms-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terms-nav-btn {
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  background-color: transparent;
  color: #6b7280;
}

.terms-nav-btn:hover {
  color: #111827;
  background-color: #f9fafb;
}

.terms-nav-btn.active {
  background-color: #F3E8FF;
  color: #9333EA;
  font-weight: 600;
}

/* Content Panel */
.terms-content {
  grid-column: span 12;
}

@media (min-width: 1024px) {
  .terms-content {
    grid-column: span 8;
  }
}

@media (min-width: 1280px) {
  .terms-content {
    grid-column: span 9;
  }
}

.terms-content-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .terms-content-inner {
    gap: 3rem;
  }
}

/* Parent Summary Box */
.terms-summary-box {
  background-color: #FAF8FF;
  border: 1px solid #E9D5FF;
  border-radius: 1.5rem;
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .terms-summary-box {
    padding: 2rem;
    border-radius: 1.75rem;
  }
}

.terms-summary-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.terms-summary-icon {
  font-size: 1.125rem;
}

.terms-summary-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6B21A8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.terms-summary-list {
  list-style-type: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.terms-summary-list li {
  color: #581C87;
  font-size: 14px;
  line-height: 1.625;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .terms-summary-list li {
    font-size: 16px;
  }
}

.terms-summary-list li:last-child {
  margin-bottom: 0;
}

/* Section styling */
.terms-section {
  scroll-margin-top: 8rem;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 2.5rem;
}

.terms-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.terms-section-title {
  color: #05011d;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .terms-section-title {
    font-size: 1.5rem;
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .terms-section-title {
    font-size: 1.875rem;
  }
}

.terms-section-num {
  color: #9333EA;
  font-family: Georgia, Cambria, serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .terms-section-num {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .terms-section-num {
    font-size: 1.25rem;
  }
}

.terms-section p, .terms-section ul {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.625;
  margin: 0;
}

@media (min-width: 640px) {
  .terms-section p, .terms-section ul {
    font-size: 16px;
  }
}

.terms-section ul {
  list-style-type: disc;
  padding-left: 1.25rem;
}

.terms-section li {
  margin-bottom: 0.875rem;
}

.terms-section li:last-child {
  margin-bottom: 0;
}

.terms-section-sub {
  margin-bottom: 1.5rem;
}

.terms-section-sub:last-child {
  margin-bottom: 0;
}

.terms-section-subtitle {
  color: #030712;
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Note Card inside Content */
.terms-note-card {
  background-color: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: 1rem;
  padding: 1.25rem;
}

.terms-note-title {
  font-size: 12px;
  font-weight: 700;
  color: #C2410C;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}

.terms-note-text {
  color: #9A3412 !important;
  font-size: 14px !important;
  line-height: 1.625;
  font-weight: 500;
}

/* Tables inside Terms/Privacy pages */
.terms-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  min-width: 500px;
}

.terms-table th {
  background-color: #f9fafb;
  color: #374151;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.terms-table td {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  color: #4b5563;
  line-height: 1.5;
  vertical-align: top;
}

.terms-table tr:last-child td {
  border-bottom: none;
}

.terms-table td strong {
  color: #111827;
}

.terms-table-wrapper::-webkit-scrollbar {
  height: 6px;
}
.terms-table-wrapper::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

/* Badge tags inside content */
.terms-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.terms-badge-pill {
  font-size: 11px;
  font-weight: 700;
  color: #7c3aed;
  background-color: #f5f3ff;
  border: 1px solid #ddd6fe;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

/* -------------------------------BLOG CSS--------------------------------------- */

/* Blog Hero Banner */
.blog-hero-banner {
  background: linear-gradient(135deg, #7c3aed, #4c1d95); /* Purple gradient */
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(110, 0, 255, 0.2);
}

@media (min-width: 992px) {
  .blog-hero-banner {
    flex-direction: row;
    align-items: stretch;
  }
}

.blog-hero-image {
  width: 100%;
  height: 300px;
}

@media (min-width: 992px) {
  .blog-hero-image {
    width: 50%;
    height: auto;
  }
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-content {
  padding: 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .blog-hero-content {
    width: 50%;
    padding: 3.5rem 4rem;
  }
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.blog-badge {
  background-color: #facc15;
  color: #111827;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-time {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.blog-hero-title {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
  .blog-hero-title {
    font-size: 3rem;
  }
}

.blog-hero-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 95%;
}

@media (min-width: 992px) {
  .blog-hero-text {
    font-size: 1.125rem;
  }
}

.blog-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  color: #6e00ff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background-color: #f3f4f6;
  color: #5b00d6;
}

.bg-icon {
  position: absolute;
  color: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.bg-icon-megaphone {
  top: 15%;
  right: 35%;
  font-size: 5rem;
  transform: rotate(-15deg);
}

.bg-icon-plane {
  top: 10%;
  right: 10%;
  font-size: 6rem;
  transform: rotate(20deg);
}

/* Blog Filter Bar */
.blog-filter-bar {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  max-width: 1350px;
  padding: 1.5rem;
  border: 1px solid #e9d5ff; /* thin purple border */
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.04);
  background: linear-gradient(135deg, #fdfaff 0%, #f6eeff 100%);
}

.blog-filter-bar::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -60px;
  width: 240px;
  height: 240px;
  background: rgba(147, 51, 234, 0.07); /* Low opacity circle 1 */
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.blog-filter-bar::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 200px;
  height: 200px;
  background: rgba(168, 85, 247, 0.12); /* Low opacity circle 2 */
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .blog-filter-bar {
    padding: 2.5rem 3rem;
  }
}

.blog-filter-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.blog-search-container {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.blog-search-input {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 3rem;
  background-color: #ffffff;
  border: 2px solid #e9d5ff;
  border-radius: 9999px;
  font-size: 0.95rem;
  color: #4b5563;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.06);
}

.blog-search-input:focus {
  background-color: #ffffff;
  border-color: #c084fc;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.12), 0 0 0 4px rgba(168, 85, 247, 0.15);
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1rem;
}

.search-clear-icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  transition: color 0.2s;
}

.search-clear-icon:hover {
  color: #4b5563;
}

.search-clear-icon.show {
  display: block;
}

.blog-categories-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  position: relative;
}

.blog-categories-scroll {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.25rem 0;
}

.cat-tag {
  white-space: nowrap;
  background-color: #ffffff;
  color: #6d28d9;
  border: 2px solid #e9d5ff;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(147, 51, 234, 0.04);
}

.cat-tag:hover {
  background-color: #f3e8ff;
  color: #5b21b6;
  border-color: #c084fc;
  box-shadow: 0 4px 8px rgba(147, 51, 234, 0.08);
}

.cat-tag.active {
  background-color: #6d28d9;
  color: #ffffff;
  border-color: #6d28d9;
  box-shadow: 0 4px 10px rgba(109, 40, 217, 0.25);
}

.cat-tag.active:hover {
  background-color: #5b21b6;
  color: #ffffff;
  border-color: #5b21b6;
  box-shadow: 0 4px 12px rgba(91, 33, 182, 0.3);
}

.cat-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.cat-arrow:hover:not(:disabled) {
  background-color: #f9fafb;
  color: #111827;
  border-color: #d1d5db;
}

.cat-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

/* No Blogs Found Element */
.no-blogs-found {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 2rem auto;
  width: 100%;
}

.no-blogs-svg {
  width: 150px;
  height: 150px;
  animation: floatCloud 3s ease-in-out infinite;
}

.no-blogs-found h3 {
  font-size: 1.75rem;
  color: #5b21b6;
  margin-bottom: 0.5rem;
  margin-top: 0rem;
  font-family: 'Patrick Hand', cursive, sans-serif;
}

.no-blogs-found p {
  color: #6b7280;
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.5;
}

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

/* Blog Cards Grid */
.blog-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
  max-width: 1350px;
}

@media (min-width: 768px) {
  .blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(110, 0, 255, 0.1);
  border-color: #d8b4fe;
}

.blog-card:hover .blog-card-link {
  gap: 0.625rem;
  color: #4c1d95;
}

.blog-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
}

.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-xp {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #fef08a; /* yellow-200 */
  color: #854d0e; /* yellow-800 */
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.blog-card-xp-purple {
  background-color: #f3e8ff;
  color: #6d28d9;
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-category {
  color: #6d28d9;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.blog-card-desc {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #6d28d9;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: gap 0.2s;
}

.blog-card-link:hover {
  gap: 0.625rem;
  color: #4c1d95;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-bottom: 4rem;
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e9d5ff; /* light purple border */
  background-color: transparent;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-btn:hover:not(:disabled):not(.active) {
  border-color: #d8b4fe;
  background-color: #f3e8ff;
  color: #111827;
}

.page-btn.active {
  background-color: #6d28d9;
  border-color: #6d28d9;
  color: #ffffff;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Blog Wave Divider */
.blog-wave-divider {
  width: 100%;
  line-height: 0;
}

.blog-wave-divider svg {
  width: 100%;
  height: 200px;
  display: block;
}

/* Blog Detail Hero */
.blog-detail-hero {
  position: relative;
  width: 100%;
  height: 620px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  margin-top: 80px; /* Offset for fixed navbar */
}

.blog-detail-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    #ffffff 0%,
    rgba(255, 255, 255, 0.95) 15%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  z-index: 1;
}

.blog-detail-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.blog-detail-category {
  background-color: #f59e0b; /* warm amber/yellow */
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-detail-readtime {
  background-color: #e0f2fe; /* light blue */
  color: #0369a1; /* sky-700 */
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
}

.blog-detail-title {
  font-size: 3rem;
  font-weight: 800;
  color: #4c1d95; /* deep purple */
  line-height: 1.2;
  margin: 0;
}

.blog-detail-title .highlight {
  color: #b45309; /* warm gold */
}

/* Responsive details */
@media (max-width: 768px) {
  .blog-detail-hero {
    height: 580px;
    padding-bottom: 0.55rem;
  }
  .blog-detail-hero-content {
    margin-top: 1.5rem;
  }
  .blog-detail-meta {
    margin-bottom: 0.5rem;
  }
  .blog-detail-title {
    font-size: 2rem;
  }
}

 

/* Blog Detail Grid Layout (3 Columns) */
.blog-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 1rem;
}

@media (min-width: 1280px) {
  .blog-detail-grid {
    grid-template-columns: 320px 1fr 320px;
    gap: 2.5rem;
  }
}


/* Sidebar Styles */
.blog-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 1280px) {
  .blog-detail-sidebar {
    position: sticky;
    top: 120px;
    align-self: flex-start;
  }
}

/* Author Block */
.blog-author-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.blog-author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f3e8ff;
  box-shadow: 0 4px 10px rgba(110, 0, 255, 0.08);
}

.blog-author-info {
  display: flex;
  flex-direction: column;
}

.blog-author-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.blog-author-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.2;
}

.blog-author-role {
  font-size: 0.9rem;
  font-style: italic;
  color: #6b7280;
  margin-top: 0.1rem;
}

/* Table of Contents Block */
.blog-toc-card {
  background-color: #faf5ff; /* light lavender */
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid #f3e8ff;
}

.blog-toc-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #4c1d95;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-toc-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #4b5563;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.blog-toc-link:hover,
.blog-toc-link.active {
  color: #7c3aed;
}

.blog-toc-link .bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #b45309; /* golden brown bullet point */
  flex-shrink: 0;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-toc-link:hover .bullet,
.blog-toc-link.active .bullet {
  background-color: #7c3aed;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

/* Smooth scroll and heading margins to clear the fixed navbar */
html {
  scroll-behavior: smooth;
}

h2[id] {
  scroll-margin-top: 110px;
}

/* Right Sidebar Styles */
.blog-detail-sidebar-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (max-width: 1279px) {
  .blog-detail-sidebar-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
  }
  .blog-detail-sidebar-right > * {
    flex: 1 1 300px;
  }
}

@media (min-width: 1280px) {
  .blog-detail-sidebar-right {
    position: sticky;
    top: 120px;
    align-self: flex-start;
  }
}


/* Trending Card */
.blog-trending-card {
  background-color: #faf5ff; /* light lavender */
  border-radius: 24px;
  padding: 2rem 1.5rem;
  border: 1px solid #f3e8ff;
}

.blog-trending-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #4c1d95;
  margin-top: 0;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-trending-title i {
  color: #b45309; /* gold trend icon */
}

.blog-trending-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-trending-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.blog-trending-item:hover {
  transform: translateY(-2px);
}

.blog-trending-img-wrapper {
  width: 100%;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.blog-trending-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-trending-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.blog-trending-category {
  color: #b45309; /* gold/amber */
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-trending-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
  transition: color 0.2s;
}

.blog-trending-item:hover .blog-trending-item-title {
  color: #6d28d9;
}

/* Discord Card */
.blog-discord-card {
  background: linear-gradient(135deg, #5f5af5, #4f46e5); /* Discord blurple */
  border-radius: 24px;
  padding: 2.5rem 1.75rem;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blog-discord-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-discord-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1.75rem;
}

.blog-discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #ffffff;
  color: #5f5af5;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  color: #4f46e5;
}

/* Fact Callout Box */
.blog-fact-callout {
  position: relative;
  background-color: #fffaf0; /* warm peach/cream */
  border: 2px dashed #fdba74; /* dashed orange-peach border */
  border-radius: 24px;
  padding: 3rem 2rem 2.25rem 2rem;
  margin: 3.5rem 0;
  text-align: center;
}

.blog-fact-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border: 2px solid #fdba74;
  border-radius: 9999px;
  padding: 0.4rem 1.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #c2410c; /* dark orange-red */
  white-space: nowrap;
}

.blog-fact-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #7c2d12; /* deep copper/brown */
  line-height: 1.6;
  margin: 0;
}

/* Highlighted List Styles */
.blog-highlight-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.blog-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
}

.blog-highlight-list.connected .blog-highlight-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 36px;
  bottom: -1.75rem;
  border-left: 2px dashed #c4b5fd;
}

.blog-highlight-icon-wrapper {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.blog-highlight-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blog-highlight-text {
  font-size: 1.1rem;
  color: #4b5563; /* gray-600 */
  line-height: 1.7;
}

.blog-highlight-text strong {
  color: #111827; /* gray-900 */
  font-weight: 700;
}

/* Share the Magic Section */
.blog-share-section {
  border-top: 1px solid #ede9fe; /* light purple divider line */
  padding-top: 2rem;
  margin-top: 3.5rem;
  text-align: center;
}

.blog-share-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #4c1d95; /* purple */
  margin-bottom: 1.5rem;
}

.blog-share-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.blog-share-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #faf5ff; /* light lavender background circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(110, 0, 255, 0.04);
}

.blog-share-btn.share-link {
  color: #6d28d9; /* purple share icon */
}

.blog-share-btn.share-twitter {
  color: #1d9bf0; /* Twitter/X sky blue */
}

.blog-share-btn.share-facebook {
  color: #1877f2; /* Facebook blue */
}

.blog-share-btn:hover {
  transform: translateY(-3px);
  background-color: #f3e8ff; /* slightly darker lavender on hover */
  box-shadow: 0 6px 15px rgba(110, 0, 255, 0.1);
}

/* Next Blog Card Styles */
.blog-next-card-container {
  width: 100%;
  margin: 0 auto 3rem auto;
}

.blog-next-card {
  display: flex;
  background-color: #faf5ff; /* light lavender */
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 25px rgba(109, 40, 217, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #f3e8ff;
}

.blog-next-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(109, 40, 217, 0.1);
}

.blog-next-card-img-wrapper {
  flex: 1 1 50%;
  max-width: 50%;
  height: 420px;
}

.blog-next-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-next-card-content {
  flex: 1 1 50%;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.blog-next-tag {
  color: #b45309; /* gold/amber */
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-next-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #4c1d95; /* dark purple */
  margin: 0;
  line-height: 1.3;
}

.blog-next-desc {
  font-size: 0.95rem;
  color: #4b5563; /* gray-600 */
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
}

.blog-next-btn {
  display: inline-block;
  border: 2px solid #7c3aed;
  color: #7c3aed;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.blog-next-card:hover .blog-next-btn {
  background-color: #7c3aed;
  color: #ffffff;
}

/* Responsive adjustment for Next Card */
@media (max-width: 768px) {
  .blog-next-card {
    flex-direction: column;
  }
  
  .blog-next-card-img-wrapper {
    flex: 1 1 auto;
    max-width: 100%;
    height: 240px;
  }
  
  .blog-next-card-content {
    flex: 1 1 auto;
    padding: 2rem 1.5rem;
  }
  
  .blog-next-title {
    font-size: 1.5rem;
  }
}

.blog-blockquote {
  border-left: 4px solid #7c3aed;
  background-color: #faf5ff; /* light purple background */
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: #6b7280;
  font-size: 1.25rem;
  line-height: 1.6;
  border-radius: 0 16px 16px 0;
}

/* Bedtime Routine Transition Plan Section */
.blog-routine-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.blog-routine-card {
  background-color: #ffffff;
  border: 1px solid #e9d5ff; /* light purple border */
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-routine-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.08);
}

.blog-routine-day {
  color: #8b5cf6; /* purple header */
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.blog-routine-text {
  color: #4b5563; /* medium-dark gray */
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .blog-routine-card {
    padding: 1.25rem 1.5rem;
  }
  .blog-routine-day {
    font-size: 1.1rem;
  }
  .blog-routine-text {
    font-size: 0.95rem;
  }
}

/* Article content layout styling */
.blog-detail-content-area {
  line-height: 1.8;
  color: #374151;
  font-size: 1.1rem;
}

.blog-detail-lead {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-detail-content-area h2 {
  font-size: 1.75rem;
  color: #4c1d95;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-detail-content-area p {
  margin-bottom: 1.5rem;
}

/* Standard lists (bullet lists) in article */
.blog-detail-content-area ul:not([class]) {
  margin-left: 1.5rem;
  margin-bottom: 2rem;
  list-style-type: disc;
}

.blog-detail-content-area ul:not([class]) li {
  margin-bottom: 0.75rem;
}

.blog-detail-conclusion {
  margin-top: 2.5rem;
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Blog Call-to-Action (CTA) Box */
.blog-cta-box {
  background-color: #f5f3ff; /* light violet/purple */
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3.5rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-cta-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1f2937;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-cta-desc {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.6;
  max-width: 680px;
  margin-top: 0;
  margin-bottom: 2rem;
}

.blog-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.blog-cta-btn.btn-solid {
  background-color: #7c3aed; /* EmoTales brand purple */
  color: #ffffff;
  border: 1px solid #7c3aed;
}

.blog-cta-btn.btn-solid:hover {
  background-color: #6d28d9;
  border-color: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.blog-cta-btn.btn-outline {
  background-color: transparent;
  color: #7c3aed;
  border: 1.5px solid #7c3aed;
}

.blog-cta-btn.btn-outline:hover {
  background-color: rgba(124, 58, 237, 0.05);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .blog-cta-box {
    padding: 2rem 1.5rem;
    margin: 2.5rem 0 1.5rem 0;
  }
  
  .blog-cta-title {
    font-size: 1.25rem;
  }
  
  .blog-cta-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .blog-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .blog-cta-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}

/* Why EmoTales features grid */
.blog-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.blog-feature-card {
  background-color: #ffffff;
  border: 1px solid #e9d5ff; /* light purple border */
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.blog-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.08);
}

.blog-feature-header {
  color: #8b5cf6; /* purple header */
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-feature-header i {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.blog-feature-text {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}



@media (max-width: 768px) {
  .blog-features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .blog-feature-card {
    padding: 1.25rem 1.5rem;
  }
}

/* Blog Safety Box */
.blog-safety-box {
  background-color: #f0fdf4; /* Pale green */
  border-color: #bbf7d0 !important; /* light green border */
}

.blog-safety-title {
  color: #15803d !important; /* Dark green */
  font-size: 1.25rem;
}

.blog-safety-intro {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.6;
}

.blog-safety-list {
  padding-left: 1.25rem;
  margin-bottom: 0;
  list-style-type: disc;
}

.blog-safety-list li {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-safety-list li strong {
  color: #1f2937;
}