/************************
 * HOME - LANDING MODAL
 ************************/
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 14, 26, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 40px;
}

body.landing-modal-open {
  overflow: hidden;
  touch-action: none;
  position: fixed;
  width: 100%;
}

.landing-modal-content {
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.landing-modal-content h2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 2em;
}

.usertype-title {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  margin-top: 0rem;
}

.options-container {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  justify-content: center;
}

.option {
  flex: 1;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fafafa;
  max-width: 350px;
}

.adult-option {
  border-radius: 30px 0 0 30px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(245, 249, 255, 0.98) 100%
  );
  border: 1px solid rgba(37, 58, 101, 0.18);
  box-shadow:
    0 14px 32px rgba(8, 21, 38, 0.24),
    0 2px 8px rgba(8, 21, 38, 0.15);
}

.kids-option {
  border-radius: 0 30px 30px 0;
  background: linear-gradient(
    145deg,
    rgba(28, 71, 56, 0.96) 0%,
    rgba(34, 98, 72, 0.96) 55%,
    rgba(40, 122, 82, 0.96) 100%
  );
  box-shadow:
    0 14px 32px rgba(8, 21, 38, 0.26),
    0 2px 8px rgba(8, 21, 38, 0.16);
}

.kids-option.option h3,
.kids-option .option h3,
.kids-option p,
.kids-option li {
  color: #fff;
}

.option-image {
  width: 120px;
  height: 120px;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.option h3 {
  color: #333;
  margin: 15px 0;
  font-size: 1.4em;
}

.option > p {
  margin: 12px 0 8px;
}

.option ul {
  text-align: center;
  color: #555;
  line-height: 1.6;
  padding: 0;
  margin: 0 0 14px;
}

.option li {
  margin-bottom: 8px;
}

.option li::marker {
  color: var(--kerho-color);
  font-size: 0.8em;
  margin-right: 0;
}

.option-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  background: var(--app-color-1);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 9px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Nunito';
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.option-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 0 5px rgba(76, 175, 80, 0.1);
}

.adult-option .option-button {
  background: linear-gradient(135deg, var(--primary-blue-highlight), var(--primary-blue));
  color: #fff;
}

.option-button img {
  height: 16px;
  margin: 0;
  flex: 0 0 auto;
  position: relative;
  top: -3px;
  left: 3px;
}

.cookie-notice {
  margin-top: 25px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.cookie-notice a {
  color: #fff3bf;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-notice a:hover,
.cookie-notice a:focus {
  color: #ffffff;
}

@media (max-width: 768px) {
  .landing-modal-content {
    padding: 24px 16px;
    margin: 14px;
  }

  .options-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 22px;
  }

  .option {
    width: 100%;
    padding: 16px;
  }

  .adult-option {
    border-radius: 20px 20px 0 0;
    padding: 0 0 16px;
  }

  .kids-option {
    border-radius: 0 0 20px 20px;
    background: linear-gradient(
      145deg,
      rgba(28, 71, 56, 0.96) 0%,
      rgba(34, 98, 72, 0.96) 55%,
      rgba(40, 122, 82, 0.96) 100%
    );
    padding: 0 0 16px;
  }

  .option-image {
    width: 100px;
    height: 100px;
  }

  .landing-modal-content h2 {
    font-size: 1.45em;
    margin-bottom: 6px;
  }

  .landing-modal-content h4.usertype-title {
    font-size: 1rem;
    margin-bottom: 0.65rem;
    letter-spacing: 0.01em;
  }

  .option h3 {
    margin: 12px 0 10px;
    font-size: 1.2em;
  }

  .option > p {
    margin: 8px 0 4px;
  }

  .option ul {
    line-height: 1.4;
    margin: 0 0 10px;
  }

  .option li {
    margin-bottom: 4px;
  }
}

/************************
 * HOME - HERO
 ************************/
.bg-wrapper {
  min-height: 100vh;
  background-color: #fafafa;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}

.site-content {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  padding: 1.5rem 1.3rem !important;
  border-radius: 1rem;
  color: var(--primary-blue);
  text-align: center;
}

.wp-home-logo {
  max-width: 540px;
  margin: auto;
}

.wp-home-bombo-icon {
  width: 90px;
  display: block;
  margin: auto;
  margin-bottom: -2rem;
}

.wp-home-bombo-icon-start {
  display: inline-block;
  height: 80px;
  vertical-align: middle;
  margin-top: -10px;
}

.hero-content p,
.section p {
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons p {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

/************************
 * HOME - SECTIONS
 ************************/
.section {
  max-width: 1000px;
  margin: 1.8rem auto;
  padding: 1.5rem 1.3rem !important;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.section-title {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/************************
 * FEATURE - GENERAL
 ************************/
.feature-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background-color: var(--gradient-bg);
}

.feature-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  background-color: var(--gradient-bg);
}

/* Mobile: prevent background jump/zoom on scroll across pages */
@media (max-width: 900px) {
  .bg-wrapper {
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }

  .feature-background {
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: cover !important;
  }
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.85)
  );
  z-index: 1;
}

.feature-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  min-height: 400px;
}

.feature-left {
  flex: 0 0 60%;
  min-height: 300px;
}

.feature-right {
  flex: 0 0 40%;
  min-height: 300px;
}

.feature-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 32px;
}

.feature-buttons {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: #fff;
  color: #333;
  border: 2px solid #ddd;
}

/************************
 * HERO - HOME
 ************************/
.hero.home {
  position: relative;
  text-align: center;
  padding: 3px 20px 30px;
  background: transparent;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero.home .hero-content {
  max-width: 720px;
  margin: auto;
}

.wp-home-bombo-icon {
width: 74px;
    max-width: 50%;
    margin-bottom: 8px;
}

.hero-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 10px;
}

.hero-subtext {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  font-style: normal;
}

.hero-alt-link {
  margin-top: -10px;
  margin-bottom: 0;
}

.hero-alt-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2b4e73;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(43, 78, 115, 0.14);
}

.hero-alt-link a:hover,
.hero-alt-link a:focus {
  color: #18314f;
  background: rgba(255, 255, 255, 0.82);
}

.hero-trust {
  display: none;
}

.hero-buttons {
  display: inline-flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-buttons .btn.disabled {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
}

.hero-buttons .btn:hover:not(.disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  width: 32px;
  height: auto;
}

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

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

.animate-blur.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  .hero.home {
    min-height: auto;
    padding: 40px 20px 50px;
  }

  .hero {
    padding: 60px 15px 40px;
  }

  .wp-home-bombo-icon {
    width: 70px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle,
  .hero-subtext {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

/************************
 * PREVIEW SLIDER
 ************************/
.preview-slider {
  position: relative;
  overflow: hidden;
  padding: 50px 20px;
  min-height: clamp(460px, 52vw, 580px);
}

.preview-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  min-height: inherit;
}

.preview-slide.is-active {
  display: block;
  opacity: 1;
}

.preview-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 0;
  width: 54px;
  height: 54px;
  font-size: 35px;
  cursor: pointer;
}

.preview-nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.preview-nav.prev {
  left: 16px;
}

.preview-nav.next {
  right: 16px;
}

@media (max-width: 768px) {
  .preview-nav {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .preview-nav.prev {
    left: 0;
  }

  .preview-nav.next {
    right: 0;
  }
}

.preview-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
}

.preview-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.preview-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 18px;
}

.preview-card {
  --preview-card-pad-x: 36px;
  min-height: 320px;
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: 1.1rem;
  padding: 30px var(--preview-card-pad-x) 24px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.72));
  background-position: left;
  backdrop-filter: blur(6px);
  border-radius: 22px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.preview-type-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.preview-media {
  align-self: center;
  padding-top: 8px;
}

.preview-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.preview-content {
  align-self: center;
}

.season-winter .preview-card {
  background-image: linear-gradient(135deg, rgba(12, 10, 8, 1), rgba(8, 5, 6, 0.48));
  background-position: left;
}

@media (max-width: 768px) {
  .preview-card {
    --preview-card-pad-x: 24px;
    grid-template-columns: 1fr;
    padding: 28px 18px 16px;
    gap: 16px;
    min-height: auto;
  }

  .preview-media {
    order: 1;
    padding-top: 8px;
  }

  .preview-content {
    order: 2;
  }

  .preview-info {
    justify-content: center;
    text-align: center;
    width: 100%;
    white-space: normal;
  }

  .preview-inner {
    padding: 20px 10px;
  }

  .preview-slide {
    min-height: auto;
  }

  .preview-bg::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.75) 100%
    );
  }
}

.preview-badge {
  display: inline-block;
  background: #ffd200;
  color: #000;
  padding: 6px 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.preview-title {
  font-size: 1.8rem;
  margin-bottom: 0;
  margin-top: 0.35rem;
  line-height: 1.16;
}

.preview-text {
  font-size: 0.9rem;
  margin-bottom: 10px;
  max-height: 80px;
}

.preview-info {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.preview-info--badge {
  background: none;
  color: rgba(255, 255, 255, 0.86);
  padding: 0;
  margin: 0.25rem 0 0;
  border-radius: 0;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  width: fit-content;
  max-width: 100%;
}

.preview-info-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
}

.preview-info-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.preview-access-note {
  margin: 10px 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.preview-access-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.preview-content .btn-kerho {
  min-height: unset;
  padding: 9px 24px;
  line-height: 1;
}

.preview-cta {
  margin-top: 6px;
}

.preview-date {
  font-size: 0.8rem;
  opacity: 0.75;
  font-style: italic;
  margin-top: 0.85rem;
}

.preview-type {
  display: inline-block;
  margin:auto;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  padding: 4px 10px;
  opacity: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3) !important;
  min-height: 10px;
  line-height: 1.1;
  border-radius: 999px;
}

.preview-type:hover {
  transform: none;
  background-position: 0% 50%;
  box-shadow: none;
}

.preview-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
  margin-bottom: 20px;
}

.preview-dot {
  width: 60px;
  height: 6px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.preview-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.preview-dot.is-active {
  background: linear-gradient(
    135deg,
    var(--kerho-color-start),
    var(--kerho-color-mid),
    var(--kerho-color-end)
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
}

.preview-corner-badge {
  position: absolute;
  top: 16px;
  left: var(--preview-card-pad-x);
  z-index: 3;
  background: linear-gradient(
    135deg,
    var(--kerho-color-start),
    var(--kerho-color-mid),
    var(--kerho-color-end)
  );
  background-size: 200% 200%;
  color: #fff;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .preview-slider {
    min-height: 640px;
  }

  .preview-corner-badge {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .preview-info--badge {
    width: fit-content;
    justify-content: center;
    text-align: center;
  }

  .preview-type-wrapper {
    justify-content: center;
  }
}

.preview-slider.is-single-slide .preview-nav,
.preview-slider.is-single-slide .preview-dots {
  display: none !important;
}

/************************
 * FRONT CTA (CONVERSION)
 ************************/
.front-top-wrap {
  margin: 0;
  padding: 0;
  background: transparent;
}

.front-conversion-bar {
  padding: 16px 20px 120px;
  background: linear-gradient(
    180deg,
    rgba(248, 251, 255, 0.98) 0%,
    rgba(241, 246, 251, 0.98) 100%
  );
}

.front-conversion-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px 28px;
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 252, 255, 0.98) 100%
  );
  border: 1px solid rgba(37, 58, 101, 0.18);
  box-shadow:
    0 14px 30px rgba(37, 58, 101, 0.14),
    0 2px 10px rgba(37, 58, 101, 0.1);
  text-align: center;
}

.front-conversion-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a6b91;
  font-weight: 700;
}

.front-conversion-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.front-conversion-copy {
  margin: 0 auto 20px;
  max-width: 720px;
  color: #3d4f63;
}

.front-conversion-icon {
  width: 62px;
  height: auto;
  display: block;
  margin: 4px auto 12px;
}

.front-conversion-cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}


/************************
 * FEATURE - VIDEOS
 ************************/
.feature-section.feature-videos {
  background: linear-gradient(
    145deg,
    rgba(33, 50, 84, 0.96) 0%,
    rgba(36, 72, 104, 0.96) 48%,
    rgba(30, 84, 103, 0.96) 100%
  );
}

.feature-section.feature-videos .feature-background {
  background-image: none;
  background: none;
}

.feature-section.feature-videos .feature-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 24, 44, 0.4) 0%,
    rgba(12, 24, 44, 0.22) 100%
  );
  z-index: 2;
}

.feature-section.feature-videos h2 {
  font-size: clamp(2rem, 4vw, 2.35rem);
  margin-bottom: 16px;
  color: #fff;
}

.feature-section.feature-videos .feature-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 32px;
}

.feature-section.feature-videos img {
  width: 100%;
  max-width: 430px;
  margin: 0 auto 0 0;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-section.feature-videos .feature-content {
  flex-direction: row;
  gap: 28px;
  padding-inline: clamp(16px, 4vw, 42px);
  box-sizing: border-box;
}

.feature-section.feature-videos .feature-left {
  flex: 0 0 42%;
  min-height: auto;
}

.feature-section.feature-videos .feature-right {
  flex: 0 0 58%;
  min-height: auto;
}

.feature-section.feature-videos .feature-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 10px;
  margin-bottom: 1rem;
}

.feature-section.feature-videos .feature-buttons .btn {
  font-size: 0.92rem;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
}

.feature-section.feature-videos .feature-buttons .btn-kerho {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.22);
}

/************************
 * FEATURE - GAMES
 ************************/
.feature-games .feature-content {
  flex-direction: row;
  gap: 28px;
  padding-inline: clamp(16px, 4vw, 42px);
  box-sizing: border-box;
}

.feature-games .feature-left {
  flex: 0 0 42%;
  min-height: auto;
}

.feature-games .feature-right {
  flex: 0 0 58%;
  min-height: auto;
}

.feature-games .feature-left .feature-image {
  max-width: 430px;
  margin: 0 auto 0 0;
}

.feature-games .feature-background {
  background-image: none;
  background: linear-gradient(
    145deg,
    rgba(24, 47, 77, 0.96) 0%,
    rgba(36, 83, 112, 0.96) 100%
  );
}

.feature-games .feature-overlay {
  background: linear-gradient(
    135deg,
    rgba(8, 18, 34, 0.34),
    rgba(8, 18, 34, 0.20)
  );
}

.feature-games h2,
.feature-games .feature-description {
  color: #fff;
}

.feature-games h2 {
  font-size: clamp(2.15rem, 4.4vw, 2.55rem);
}

.page-template-template-front-page .feature-games .front-games-peek {
  position: absolute;
  right: -18px;
  bottom: -10px;
  width: clamp(150px, 19vw, 260px);
  z-index: 2;
  pointer-events: none;
  user-select: none;
  transform-origin: bottom right;
  transform: translate3d(122%, 22%, 0) rotate(22deg) scale(0.96);
  opacity: 0.98;
  transition: transform 0.95s cubic-bezier(0.22, 0.8, 0.24, 1);
  will-change: transform;
}

.page-template-template-front-page .feature-games .front-games-peek img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(7, 18, 32, 0.26));
}

.page-template-template-front-page .feature-games .front-games-peek.is-visible {
  transform: translate3d(19%, 6%, 0) rotate(-6deg) scale(1);
}

@media (max-width: 900px) {
  .page-template-template-front-page .feature-games .front-games-peek {
    width: clamp(112px, 33vw, 176px);
    right: -16px;
    bottom: -8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-template-template-front-page .feature-games .front-games-peek {
    transition: none;
  }
}

/************************
 * FEATURE - NEWS
 ************************/
.feature-section.feature-news {
  background: linear-gradient(
    145deg,
    rgba(242, 247, 252, 0.98) 0%,
    rgba(232, 241, 249, 0.98) 100%
  );
}

.feature-section.feature-news .feature-background {
  background: none;
}

.feature-section.feature-news .feature-overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.56)
  );
}

.feature-section.feature-news .feature-content {
  flex-direction: row;
  gap: 28px;
  min-height: auto;
  max-width: 1040px;
  padding-inline: clamp(16px, 4vw, 42px);
  box-sizing: border-box;
}

.feature-section.feature-news .feature-left {
  flex: 0 0 42%;
}

.feature-section.feature-news .feature-right {
  flex: 0 0 58%;
  min-height: auto;
}

.feature-section.feature-news .feature-news-meta {
  display: block;
  margin-bottom: 8px;
}

.feature-section.feature-news .feature-kicker {
  display: inline-block;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1f3f63;
  background: rgba(31, 63, 99, 0.12);
}

.feature-section.feature-news h2 {
  color: #1f3349;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.16;
  margin-top: 0;
  margin-bottom: 14px;
}

.feature-section.feature-news .feature-news-title-link {
  color: inherit;
  text-decoration: none;
}

.feature-section.feature-news .feature-news-title-link:hover {
  color: var(--button-color-primary);
  text-decoration: none;
}


.feature-section.feature-news .feature-description {
  color: #2f465f;
  margin-bottom: 18px;
}

.feature-section.feature-news .feature-right img {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: 0;
  display: block;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(24, 48, 70, 0.2);
}

.feature-icon-mokki {
  width: min(100%, 420px);
  margin: 0 auto 14px;
}

.feature-icon-mokki img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(6, 22, 14, 0.32);
}

@media (max-width: 768px) {
  .front-top-wrap {
    padding: 0;
  }

  .front-conversion-bar {
    padding: 10px 14px 36px;
  }

  .front-conversion-inner {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .front-conversion-icon {
    width: 52px;
    margin-bottom: 10px;
  }

  .feature-section.feature-videos .feature-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-inline: 6px;
  }

  .feature-games .feature-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-inline: 6px;
  }

  .feature-section.feature-news .feature-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-inline: 6px;
  }

  .feature-section.feature-videos .feature-left,
  .feature-section.feature-videos .feature-right,
  .feature-games .feature-left,
  .feature-games .feature-right,
  .feature-section.feature-news .feature-left,
  .feature-section.feature-news .feature-right {
    flex: 0 0 auto;
    width: 100%;
  }

  .feature-section.feature-news .feature-right {
    order: -1;
  }

  .feature-section.feature-videos img,
  .feature-games .feature-left .feature-image,
  .feature-section.feature-news .feature-right img {
    max-width: 100%;
    margin-left: 0;
  }
}

/************************
 * FEATURE - MOKKI
 ************************/
.feature-section.feature-mokki {
  position: relative;
  background: linear-gradient(
    150deg,
    rgba(252, 253, 255, 0.98) 0%,
    rgba(242, 246, 250, 0.98) 100%
  );
}

.feature-section.feature-mokki .feature-background {
  display: none;
  position: absolute;
  inset: 0;
  background-image: url('../../images/home/feature-bombon-mokki.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  z-index: 1;
}

.feature-section.feature-mokki .feature-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.54) 100%
  );
  z-index: 2;
}

.feature-section.feature-mokki .feature-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 680px;
  text-align: center;
}

.feature-section.feature-mokki h2 {
  font-size: clamp(1.9rem, 3vw, 2.2rem);
    color: #1f3349;
}

.feature-section.feature-mokki .feature-description {
  color: #2f465f;
  margin-bottom: 20px;
}

.feature-section.feature-mokki .feature-buttons {
  justify-content: center;
}

/************************
 * FEATURE - KERHO
 ************************/
.feature-section.feature-kerho {
  text-align: center;
  color: #fff;
  background-color: var(--gradient-bg);
  min-height: 600px;
  align-content: center;
}

.feature-section.feature-kerho .feature-overlay {
  background: var(
    --feature-kerho-overlay,
    rgba(0, 0, 0, 0.68)
  );
}

.feature-section.feature-kerho .feature-background {
  background-attachment: scroll !important;
  background-position: var(--feature-kerho-bg-position, center);
}

.feature-section.feature-kerho .feature-content {
  flex-direction: column;
  max-width: 700px;
  gap: 0.55rem;
}

.feature-section.feature-kerho h2 {
  font-size: clamp(1.9rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.feature-section.feature-kerho .feature-description {
  color: #f0f0f0;
  margin-bottom: 0;
  margin-top: 0;
}

.feature-section.feature-kerho .feature-buttons {
  margin-top: 0.35rem;
}

.feature-section.feature-kerho .feature-icon img {
  width: 111px;
  filter: drop-shadow(9px 16px 15px rgba(0, 0, 0, 0.3));
  margin-bottom: -2rem;
}

.feature-section.feature-kerho .feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.feature-section.feature-kerho .feature-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

.feature-section.feature-kerho .feature-note {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Kerho CTA buttons: same lift + glow across front page, games page, and Kerho footer CTA. */
.page-template-template-front-page .feature-section.feature-kerho .btn-kerho,
.page-pelit .feature-section.feature-kerho .btn-kerho,
.kerho-cta-footer .btn-kerho {
  color: #fff;
  box-shadow:
    0 6px 14px rgba(8, 20, 40, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.page-template-template-front-page .feature-section.feature-kerho .btn-kerho:hover,
.page-template-template-front-page .feature-section.feature-kerho .btn-kerho:focus-visible,
.page-pelit .feature-section.feature-kerho .btn-kerho:hover,
.page-pelit .feature-section.feature-kerho .btn-kerho:focus-visible,
.kerho-cta-footer .btn-kerho:hover,
.kerho-cta-footer .btn-kerho:focus-visible {
  color: rgba(255, 255, 255, 0.88);
  transform: translateY(-2px);
  box-shadow:
    0 9px 20px rgba(8, 20, 40, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 0 12px rgba(111, 227, 193, 0.16);
}

.page-template-template-front-page #bombon-kerho {
  position: relative;
  scroll-margin-top: 20px;
  margin-bottom: 0 !important;
  min-height: 600px;
  align-content: center;
}

.feature-image {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/************************
 * NEWSLETTER
 ************************/
:root {
  --ml-primary: var(--primary-blue);
  --ml-primary-hover: var(--primary-blue-highlight);
}

.newsletter-section {
  padding: 4rem 1.5rem;
  background:
    linear-gradient(
      180deg,
      rgba(240, 245, 250, 0.9),
      rgba(255, 255, 255, 1)
    );
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.newsletter-content {
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-form {
  margin-top: 2rem;
}

.ml-form-title,
.ml-form-description {
  display: none !important;
}

.newsletter-section .ml-form-embedWrapper input[type="email"] {
  width: 100%;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  border: 2px solid rgba(37, 58, 101, 0.25) !important;
  font-size: 1rem !important;
  text-align: center;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-section .ml-form-embedWrapper input::placeholder {
  text-align: center;
  color: rgba(37, 58, 101, 0.6);
}

.newsletter-section .ml-form-embedWrapper input:focus {
  border-color: var(--ml-primary) !important;
  box-shadow: 0 0 0 4px rgba(37, 58, 101, 0.15);
}

.newsletter-section .ml-form-embedWrapper button {
  background: linear-gradient(
    135deg,
    var(--ml-primary),
    var(--ml-primary-hover)
  ) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 34px !important;
  font-size: 0.9rem !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-position 0.4s ease;
  background-size: 200% 200%;
  box-shadow: 0 10px 24px rgba(37, 58, 101, 0.35);
}

.newsletter-section .ml-form-embedWrapper button:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 16px 32px rgba(37, 58, 101, 0.45);
}

.newsletter-section .ml-form-embedWrapper {
  animation: ml-fade-up 0.6s ease both;
}

.newsletter-section .ml-form-successBody {
  padding: 2rem 1.5rem;
  border-radius: 20px;
  color: var(--primary-blue);
  text-align: center;
  animation: thankyou-fade-up 0.6s ease both;
}

.newsletter-section .ml-form-successBody h4,
.newsletter-section .ml-form-successBody p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.ml-form-embedContainer .ml-form-embedWrapper {
  background: transparent !important;
}

#mlb2-35928741.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  text-align: center;
}

.newsletter-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 1rem;
}

@keyframes ml-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes thankyou-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/************************
 * BMC
 ************************/
.bmc-section {
  padding: 80px 20px;
  background: #fff7e6;
}

.bmc-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bmc-left h2 {
  margin-bottom: 16px;
}

.bmc-description {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bmc-logo-link {
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bmc-logo-link img {
  max-width: 220px;
  height: auto;
  display: block;
  transition: transform 0.25s ease;
}

.bmc-logo-link:hover img {
  transform: scale(1.04) translateY(-3px);
}

.bmc-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
}

.bmc-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bmc-link-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .bmc-content {
    grid-template-columns: 1fr;
  }

  .bmc-right {
    order: -1;
  }

  .bmc-logo-link img {
    max-width: 180px;
  }
}

/************************
 * FEATURE - MOBILE
 ************************/
@media (max-width: 768px) {
  .feature-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .feature-buttons {
    justify-content: center;
  }
}

/************************
 * FEATURE - SCROLL ANIMATIONS
 ************************/
.feature-section {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
  overflow-x: hidden;
}

.feature-section.is-visible {
  opacity: 1;
  transform: none;
}

.feature-section.is-visible .feature-content > *:nth-child(1) { transition-delay: 0.1s; }
.feature-section.is-visible .feature-content > *:nth-child(2) { transition-delay: 0.2s; }
.feature-section.is-visible .feature-content > *:nth-child(3) { transition-delay: 0.3s; }
.feature-section.is-visible .feature-content > *:nth-child(4) { transition-delay: 0.4s; }

.animate-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.65s ease, transform 0.75s ease;
}

.animate-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.65s ease, transform 0.75s ease;
}

.animate-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.65s ease, transform 0.75s ease;
}

.animate-blur {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 1.05s ease,
    transform 1.2s cubic-bezier(0.22, 0.74, 0.22, 1),
    filter 1.2s cubic-bezier(0.22, 0.74, 0.22, 1);
}

.feature-section.is-visible .animate-left,
.feature-section.is-visible .animate-right,
.feature-section.is-visible .animate-up,
.feature-section.is-visible .animate-blur {
  transform: translate(0);
  opacity: 1;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .feature-section,
  .feature-content > * {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Hero + CTA erottelu (tilapäinen viimeistely) */
.page-template-template-front-page .hero.home {
  background:
    linear-gradient(
      170deg,
      rgba(246, 251, 255, 0.78) 0%,
      rgba(236, 245, 252, 0.78) 100%
    ),
    url('../../../bg/seasonal/home/bg-home-hero-section-winter.jpg') center/cover no-repeat !important;
  border-bottom: 1px solid rgba(37, 58, 101, 0.08);
}

.page-template-template-front-page .hero.home .hero-content {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 58, 101, 0.14);
  box-shadow:
    0 10px 26px rgba(18, 35, 60, 0.14),
    0 2px 8px rgba(18, 35, 60, 0.08);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: clamp(18px, 3vw, 30px) clamp(16px, 3.4vw, 34px) !important;
}

.page-template-template-front-page .hero.home .hero-title {
  color: #1f2f4a;
}

.page-template-template-front-page .hero.home .hero-subtitle,
.page-template-template-front-page .hero.home .hero-subtext {
  color: #2b3f5f;
}

.page-template-template-front-page .hero.home .hero-alt-link a {
  color: #24476d;
}

/* Yhtenäinen osiorytmi (tilapäinen säätö) */
.page-template-template-front-page {
  --front-section-padding-y: clamp(68px, 9vw, 98px);
  --front-feature-pad-y: clamp(54px, 7vw, 74px);
}

.page-template-template-front-page .hero.home {
  padding-top: var(--front-section-padding-y) !important;
  padding-bottom: var(--front-section-padding-y) !important;
  min-height: clamp(680px, 84vh, 980px) !important;
}

.page-template-template-front-page .front-conversion-bar {
  padding-top: calc(var(--front-section-padding-y) * 0.75) !important;
  padding-bottom: var(--front-section-padding-y) !important;
}

.page-template-template-front-page .preview-slider,
.page-template-template-front-page .feature-section {
  padding-top: var(--front-section-padding-y) !important;
  padding-bottom: var(--front-section-padding-y) !important;
}

/* Ennakkokatselu-slideriin hieman tiiviimpi korkeus */
.page-template-template-front-page .preview-slider {
  padding-top: clamp(24px, 3.2vw, 40px) !important;
  padding-bottom: clamp(24px, 3.2vw, 40px) !important;
}

.page-template-template-front-page .feature-section.feature-videos,
.page-template-template-front-page .feature-games,
.page-template-template-front-page .feature-section.feature-news {
  padding-top: var(--front-feature-pad-y) !important;
  padding-bottom: var(--front-feature-pad-y) !important;
}

.page-template-template-front-page .feature-section.feature-videos .feature-content,
.page-template-template-front-page .feature-games .feature-content,
.page-template-template-front-page .feature-section.feature-news .feature-content,
.page-template-template-front-page .feature-section.feature-mokki .feature-content {
  min-height: auto !important;
}

.page-template-template-front-page .feature-section.feature-videos,
.page-template-template-front-page .feature-games,
.page-template-template-front-page .feature-section.feature-news {
  min-height: 500px;
  align-content: center;
}

.page-template-template-front-page .feature-section.feature-mokki {
  min-height: clamp(260px, 30vw, 340px);
  align-content: center;
  padding-top: clamp(22px, 3vw, 32px) !important;
  padding-bottom: clamp(22px, 3vw, 32px) !important;
}

.page-template-template-front-page .feature-section.feature-videos .feature-left,
.page-template-template-front-page .feature-section.feature-videos .feature-right,
.page-template-template-front-page .feature-games .feature-left,
.page-template-template-front-page .feature-games .feature-right,
.page-template-template-front-page .feature-section.feature-news .feature-left,
.page-template-template-front-page .feature-section.feature-news .feature-right,
.page-template-template-front-page .feature-section.feature-mokki .feature-left,
.page-template-template-front-page .feature-section.feature-mokki .feature-right {
  min-height: auto !important;
}

.page-template-template-front-page .feature-section.feature-news {
  min-height: clamp(320px, 36vw, 420px);
  align-content: center;
  padding-top: clamp(30px, 4vw, 44px) !important;
  padding-bottom: clamp(30px, 4vw, 44px) !important;
}

/* Tiiviimpi otsikko -> kuvaus -rytmi etusivun feature-osioihin */
.page-template-template-front-page .feature-section.feature-videos h2,
.page-template-template-front-page .feature-games h2,
.page-template-template-front-page .feature-section.feature-mokki h2,
.page-template-template-front-page .feature-section.feature-kerho h2 {
  margin-top: 0;
  margin-bottom: 0;}

.page-template-template-front-page .feature-section.feature-videos .feature-description,
.page-template-template-front-page .feature-games .feature-description,
.page-template-template-front-page .feature-section.feature-mokki .feature-description,
.page-template-template-front-page .feature-section.feature-kerho .feature-description {
  margin-top: 0;
  margin-bottom: 1rem;
}

.page-template-template-front-page .feature-section.feature-kerho .feature-description {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-template-template-front-page .feature-section.feature-videos .feature-description,
  .page-template-template-front-page .feature-games .feature-description,
  .page-template-template-front-page .feature-section.feature-mokki .feature-description,
  .page-template-template-front-page .feature-section.feature-kerho .feature-description {
    margin-bottom: 0.9rem;
  }

  .page-template-template-front-page .feature-section.feature-videos .feature-buttons,
  .page-template-template-front-page .feature-games .feature-buttons,
  .page-template-template-front-page .feature-section.feature-mokki .feature-buttons,
  .page-template-template-front-page .feature-section.feature-kerho .feature-buttons {
    margin-top: 0.3rem;
    gap: 12px;
  }
}

/* Etusivun viimeisen CTA-osion ja footerin valkoinen hiusviiva pois */
.page-template-template-front-page main {
  background: #fafafa;
}

.btn-mokki-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    var(--app-green-color-start),
    var(--app-green-color-end)
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fafafa;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(16, 73, 42, 0.26);
}

.btn-mokki-app:hover {
  background-position: 100% 50%;
  color: var(--app-green-text-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(16, 73, 42, 0.32);
}

@media (max-width: 768px) {
  .page-template-template-front-page {
    --front-section-padding-y: 56px;
    --front-feature-pad-y: 46px;
  }

  .page-template-template-front-page .hero.home {
    min-height: clamp(460px, 72vh, 640px) !important;
  }

  .page-template-template-front-page .front-conversion-bar {
    padding-top: 40px !important;
  }

  .page-template-template-front-page .preview-slider {
    padding-top: calc(var(--front-section-padding-y) - 1.25rem) !important;
    padding-bottom: calc(var(--front-section-padding-y) - 1.25rem) !important;
  }

  .feature-section.feature-kerho,
  .page-template-template-front-page #bombon-kerho {
    min-height: clamp(400px, 60vh, 500px) !important;
    min-height: clamp(400px, 60svh, 500px) !important;
  }

}

/* Icon reveal: pehmea pop, tekstit pysyvat animate-up -linjassa */
.animate-pop {
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.2, 0.9, 0.3, 1.2);
  will-change: opacity, transform;
}

.animate-pop.visible,
.feature-section.is-visible .animate-pop {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero .wp-home-bombo-icon.animate-pop {
  transition-delay: 0.08s;
}

.feature-icon.animate-pop {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .animate-up,
  .animate-left,
  .animate-right,
  .animate-blur,
  .animate-pop {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
