/* Flixoo Live Landing Page */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.flixoo-live-page {
  --flixoo-black: #0A0A0A;
  --flixoo-yellow: #F5C518;
  --flixoo-yellow-bright: #F5EA16;
  --flixoo-yellow-soft: #FFF8E1;
  --flixoo-teal: #26A69A;
  --flixoo-teal-soft: #E8F6F8;
  --flixoo-purple: #9C27B0;
  --flixoo-purple-soft: #F3E8FF;
  --flixoo-green: #2E7D32;
  --flixoo-green-soft: #E8F5E9;
  --flixoo-green-cta: #C8E6C9;
  --flixoo-text: #1a1a1a;
  --flixoo-text-muted: #555;
  --flixoo-shadow: 0 4px 24px rgba(10, 10, 10, 0.08);
  --flixoo-radius: 18px;
  --flixoo-gutter: 24px;
  /* Matches AppHeader.web.tsx AppBarBox: 103px desktop, 70px at max-width 1150px */
  --flixoo-app-header-height: 103px;
  --flixoo-header-gap: var(--flixoo-app-header-height);
  --flixoo-font-display: "Syne", "Poppins", sans-serif;
  --flixoo-font-body: "DM Sans", "Poppins", sans-serif;
  --flixoo-phone-aspect: 1075 / 1926;
  background: #fff;
  color: var(--flixoo-text);
  scroll-behavior: smooth;
  padding-top: var(--flixoo-header-gap);
  font-family: var(--flixoo-font-body);
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

.flixoo-live-page * {
  box-sizing: border-box;
}

/* Scroll reveal animations */
.flixoo-reveal {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.flixoo-reveal-up {
  transform: translateY(32px);
}

.flixoo-reveal-left {
  transform: translateX(-32px);
}

.flixoo-reveal-right {
  transform: translateX(32px);
}

.flixoo-reveal-none {
  transform: none;
}

.flixoo-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .flixoo-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .flixoo-hero-accent::after,
  .flixoo-phone-glow,
  .flixoo-reaction-bubble,
  .flixoo-cta-pulse-wrap::before {
    animation: none !important;
  }
}

/* Section common */
.flixoo-section {
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(48px, 8vw, 80px);
  scroll-margin-top: calc(var(--flixoo-header-gap) + 24px);
}

.flixoo-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding-left: var(--flixoo-gutter);
  padding-right: var(--flixoo-gutter);
}

/* Shared icon circle */
.flixoo-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--flixoo-black);
  background: rgba(245, 197, 24, 0.35);
  border-radius: 50%;
}

.flixoo-icon-circle svg {
  display: block;
}

.flixoo-section-title {
  font-family: var(--flixoo-font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--flixoo-black);
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.flixoo-section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--flixoo-text-muted);
  text-align: center;
  margin: 0 auto 40px;
  max-width: 560px;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* Hero */
.flixoo-hero {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #FFFBF5 55%, #FFF8E8 100%);
  padding-top: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(24px, 4vw, 32px);
  overflow: hidden;
}

.flixoo-hero::before {
  display: none;
}

.flixoo-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.92fr 0.88fr;
  grid-template-areas: "left phone side";
  gap: clamp(20px, 2.5vw, 32px);
  align-items: center;
}

.flixoo-hero-col-left {
  grid-area: left;
}

.flixoo-hero-col-intro,
.flixoo-hero-col-actions {
  grid-area: left;
}

.flixoo-hero-col-phone {
  grid-area: phone;
  align-self: center;
}

.flixoo-hero-col-side {
  grid-area: side;
  align-self: center;
}

.flixoo-hero-col-phone.flixoo-hero-col {
  opacity: 1;
  transform: none;
}

.flixoo-hero-col {
  min-width: 0;
}

.flixoo-hero-actions {
  display: flex;
  flex-direction: column;
}

.flixoo-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--flixoo-black);
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(245, 197, 24, 0.35);
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.45);
}

.flixoo-hero-tagline-star {
  color: #C9A000;
  font-size: 0.75rem;
  line-height: 1;
}

.flixoo-hero-headline {
  font-family: var(--flixoo-font-display);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--flixoo-black);
  letter-spacing: -0.03em;
}

.flixoo-hero-headline-line {
  display: block;
  margin-bottom: 8px;
}

.flixoo-hero-headline .accent-yellow,
.flixoo-hero-accent {
  color: var(--flixoo-yellow);
  background: none;
  padding: 0;
  border-radius: 0;
  display: block;
  position: relative;
  box-shadow: none;
}

.flixoo-hero-accent::after {
  display: none;
}

@keyframes flixoo-shimmer {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
}

.flixoo-hero-subtext {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--flixoo-text-muted);
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 420px;
}

.flixoo-hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-bottom: 24px;
}

.flixoo-hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.flixoo-hero-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.flixoo-hero-feature-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--flixoo-black);
  line-height: 1.3;
}

.flixoo-hero-feature-hint {
  font-size: 0.72rem;
  color: var(--flixoo-text-muted);
  line-height: 1.35;
}

.flixoo-hero-feature-icon {
  width: 34px;
  height: 34px;
  background: rgba(245, 197, 24, 0.4);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Landing page buttons */
.flixoo-live-page .custom-button {
  border-radius: 999px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.flixoo-live-page .custom-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 10, 10, 0.12);
}

.flixoo-live-page .custom-button:focus-visible {
  outline: 2px solid var(--flixoo-black);
  outline-offset: 3px;
}

.flixoo-live-page .custom-button.primary-yellow {
  background-color: var(--flixoo-yellow) !important;
  border-color: var(--flixoo-yellow) !important;
  color: var(--flixoo-black) !important;
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.4);
}

.flixoo-live-page .custom-button.primary-green {
  background-color: var(--flixoo-green-cta) !important;
  border-color: #A5D6A7 !important;
  color: var(--flixoo-green) !important;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.2);
}

.flixoo-live-page .custom-button.primary-green:hover {
  background-color: #A5D6A7 !important;
}

.flixoo-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.flixoo-hero-ctas .custom-button,
.flixoo-hero-cta-btn {
  min-width: 0 !important;
  flex: 1 1 auto;
  font-size: clamp(0.78rem, 1.1vw, 0.9rem) !important;
  padding: 10px 14px !important;
}

.flixoo-hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--flixoo-text-muted);
}

.flixoo-hero-avatars {
  display: flex;
}

.flixoo-hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.flixoo-hero-avatars img:first-child {
  margin-left: 0;
}

/* Phone mockup */
.flixoo-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.flixoo-phone-glow {
  position: absolute;
  width: min(340px, 82%);
  aspect-ratio: var(--flixoo-phone-aspect);
  border-radius: 48px;
  background: radial-gradient(ellipse, rgba(245, 197, 24, 0.35) 0%, rgba(245, 197, 24, 0.1) 45%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
  animation: flixoo-glow-pulse 4s ease-in-out infinite;
}

@keyframes flixoo-glow-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.flixoo-phone-device-screen {
  position: relative;
  border-radius: clamp(26px, 3.5vw, 34px);
  overflow: hidden;
  background: #000;
  aspect-ratio: var(--flixoo-phone-aspect);
  line-height: 0;
}

.flixoo-phone-reactions-lane {
  position: absolute;
  right: 4%;
  bottom: 14%;
  top: 20%;
  width: 28%;
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
}

.flixoo-reaction-bubble {
  position: absolute;
  right: 0;
  bottom: -8%;
  font-size: clamp(11px, 2vw, 15px);
  line-height: 1;
  opacity: 0;
  animation-name: flixoo-reaction-rise;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
  will-change: bottom, opacity, transform;
}

.flixoo-reaction-bubble--1 { right: 0%; }
.flixoo-reaction-bubble--2 { right: 16%; }
.flixoo-reaction-bubble--3 { right: 6%; }
.flixoo-reaction-bubble--4 { right: 22%; }

@keyframes flixoo-reaction-rise {
  0% {
    bottom: -8%;
    transform: scale(0.5);
    opacity: 0;
  }
  5% {
    transform: scale(1);
    opacity: 1;
  }
  85% {
    opacity: 0.9;
  }
  100% {
    bottom: 92%;
    transform: scale(0.88);
    opacity: 0;
  }
}

.flixoo-hero-banner-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.flixoo-hero-vector-black {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 90%);
  opacity: 0.12;
}

.flixoo-hero-vector-transparent {
  position: absolute;
  left: 58%;
  top: 28%;
  width: 120px;
  opacity: 0.35;
  animation: flixoo-float 4s ease-in-out infinite;
}

.flixoo-hero-float-icon {
  position: absolute;
  width: 36px;
  height: 36px;
  opacity: 0.85;
}

.flixoo-hero-float-icon-1 {
  left: 12%;
  top: 18%;
  animation: flixoo-float 3.5s ease-in-out infinite;
}

.flixoo-hero-float-icon-2 {
  right: 10%;
  top: 24%;
  animation: flixoo-float 4.2s ease-in-out infinite 0.5s;
}

.flixoo-hero-float-icon-3 {
  right: 18%;
  bottom: 20%;
  animation: flixoo-float 3.8s ease-in-out infinite 1s;
}

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

.flixoo-phone-device {
  position: relative;
  width: clamp(220px, 30vw, 300px);
  margin: 0 auto;
  z-index: 1;
}

.flixoo-phone-device-shell {
  background: linear-gradient(160deg, #3a3a3a 0%, #0a0a0a 45%, #1c1c1c 100%);
  border-radius: clamp(34px, 4.5vw, 44px);
  padding: clamp(10px, 1.4vw, 14px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 3px #1a1a1a,
    0 28px 72px rgba(10, 10, 10, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
}

.flixoo-phone-device-shell::before {
  content: "";
  position: absolute;
  right: -3px;
  top: 22%;
  width: 3px;
  height: 48px;
  border-radius: 0 2px 2px 0;
  background: #2a2a2a;
  box-shadow: 0 52px 0 #2a2a2a;
}

.flixoo-phone-hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.flixoo-phone-overlay {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  height: 78%;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
}

.flixoo-phone-streamer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.flixoo-phone-live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #EC2024;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.flixoo-phone-live-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: flixoo-pulse 1.5s ease infinite;
}

@keyframes flixoo-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.flixoo-phone-viewers {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 12px;
  z-index: 2;
}

.flixoo-phone-chat {
  position: absolute;
  bottom: 100px;
  left: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.flixoo-phone-chat-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.flixoo-phone-chat-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.flixoo-phone-chat-bubble {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 8px;
  max-width: 85%;
}

.flixoo-phone-product {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.flixoo-phone-product-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #f0f0f0;
  object-fit: cover;
}

.flixoo-phone-product-info {
  flex: 1;
  min-width: 0;
}

.flixoo-phone-product-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--flixoo-text);
  margin: 0;
}

.flixoo-phone-product-price {
  font-size: 11px;
  font-weight: 700;
  color: var(--flixoo-text);
  margin: 2px 0 0;
}

.flixoo-phone-product-price del {
  font-size: 9px;
  color: #999;
  font-weight: 400;
  margin-left: 4px;
}

.flixoo-phone-buy-btn {
  background: var(--flixoo-yellow);
  color: #2E2E2E;
  font-size: 9px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 16px;
  border: none;
  white-space: nowrap;
  cursor: default;
}

/* Hero side cards */
.flixoo-hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flixoo-side-card {
  background: #FFF9ED;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(10, 10, 10, 0.05);
  border: 1px solid rgba(245, 197, 24, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flixoo-side-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
}

.flixoo-side-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--flixoo-black);
}

.flixoo-side-card-subtitle {
  font-size: 0.78rem;
  color: var(--flixoo-text-muted);
  margin: 0 0 14px;
}

.flixoo-delivery-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flixoo-delivery-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.flixoo-delivery-row--highlight {
  background: rgba(245, 197, 24, 0.45);
  border: 1px solid rgba(245, 197, 24, 0.35);
}

.flixoo-delivery-row-label {
  flex: 1;
  font-weight: 600;
  color: var(--flixoo-black);
}

.flixoo-delivery-row-time {
  font-weight: 600;
  color: var(--flixoo-text-muted);
  font-size: 0.82rem;
}

.flixoo-delivery-icon {
  width: 32px;
  height: 32px;
  background: rgba(245, 197, 24, 0.55);
  flex-shrink: 0;
}

.flixoo-explore-categories {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.2);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--flixoo-black);
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.flixoo-explore-categories:hover {
  background: rgba(245, 197, 24, 0.38);
  border-color: rgba(245, 197, 24, 0.55);
  transform: translateY(-1px);
  text-decoration: none;
}

.flixoo-side-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--flixoo-text);
}

.flixoo-delivery-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 0%, var(--flixoo-yellow-soft) 100%);
  border: 1px solid rgba(245, 197, 24, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flixoo-delivery-chip:last-child {
  margin-bottom: 0;
}

.flixoo-delivery-chip:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.25);
}

.flixoo-delivery-chip-text {
  flex: 1;
  min-width: 0;
}

.flixoo-delivery-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.85rem;
}

.flixoo-delivery-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.flixoo-delivery-icon {
  width: 36px;
  height: 36px;
  background: rgba(245, 197, 24, 0.5);
  flex-shrink: 0;
}

.flixoo-delivery-label {
  font-weight: 600;
  color: var(--flixoo-text);
}

.flixoo-delivery-time {
  color: var(--flixoo-text-muted);
  font-size: 0.8rem;
}

.flixoo-live-cats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px 10px;
  margin-top: 4px;
}

.flixoo-live-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--flixoo-text);
  background: none;
  border: none;
  padding: 4px 2px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease;
}

.flixoo-live-cat:hover {
  transform: translateY(-2px);
}

.flixoo-live-cat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--flixoo-black);
  text-align: center;
  line-height: 1.25;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flixoo-live-cat-shimmer .flixoo-live-cat-circle {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: flixoo-shimmer 1.4s ease infinite;
  border: none;
}

.flixoo-live-cat-shimmer-label {
  width: 56px;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: flixoo-shimmer 1.4s ease infinite;
}

.flixoo-live-cat-circle {
  width: clamp(58px, 5.5vw, 68px);
  height: clamp(58px, 5.5vw, 68px);
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(245, 197, 24, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(245, 197, 24, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.flixoo-live-cat:hover .flixoo-live-cat-circle {
  border-color: var(--flixoo-yellow);
  box-shadow: 0 6px 16px rgba(245, 197, 24, 0.28);
}

.flixoo-live-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flixoo-live-cat:hover .flixoo-live-cat-circle {
  transform: scale(1.08);
  background: rgba(245, 234, 22, 0.4);
}

/* Trust bar */
.flixoo-trust-bar {
  background: #FFF8E1;
  border-top: 1px solid rgba(245, 197, 24, 0.2);
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
  padding: 22px 0;
}

.flixoo-trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 3vw, 48px);
  max-width: 1100px;
  margin: 0 auto;
}

.flixoo-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--flixoo-text);
  transition: transform 0.2s ease;
}

.flixoo-trust-item:hover {
  transform: translateY(-2px);
}

.flixoo-trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 197, 24, 0.45);
  color: var(--flixoo-black);
}

/* Three ways */
.flixoo-three-ways {
  background: #fff;
  padding-top: clamp(72px, 10vw, 112px);
}

.flixoo-three-ways-title {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.flixoo-three-highlight {
  position: relative;
  display: inline-block;
  color: var(--flixoo-yellow);
  text-decoration: underline;
  text-decoration-color: var(--flixoo-yellow);
  text-decoration-thickness: 6px;
  text-underline-offset: 5px;
}

.flixoo-three-highlight::after {
  display: none;
}

.flixoo-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  align-items: stretch;
}

.flixoo-three-grid > .flixoo-reveal {
  height: 100%;
}

.flixoo-way-card {
  background: #FFF9F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10, 10, 10, 0.06);
  border: 1px solid rgba(245, 197, 24, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.flixoo-way-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.1);
}

.flixoo-way-card-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: clamp(380px, 34vw, 420px);
  overflow: hidden;
}

.flixoo-way-card-body {
  position: relative;
  z-index: 2;
  flex: 1 1 56%;
  min-width: 0;
  max-width: 58%;
  padding: clamp(22px, 2.8vw, 30px) clamp(16px, 2vw, 22px);
  display: flex;
  flex-direction: column;
}

.flixoo-way-card-visual {
  position: relative;
  flex: 0 0 44%;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.flixoo-way-card--seller .flixoo-way-card-visual {
  flex-basis: 46%;
}

.flixoo-way-card--buyer .flixoo-way-card-visual {
  flex-basis: 44%;
}

.flixoo-way-card--creator .flixoo-way-card-visual {
  flex-basis: 46%;
}

.flixoo-way-card-visual-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #FFF9F0 0%,
    rgba(255, 249, 240, 0.75) 10%,
    rgba(255, 249, 240, 0.25) 24%,
    transparent 40%
  );
  pointer-events: none;
  z-index: 2;
}

.flixoo-way-card--creator .flixoo-way-card-visual-fade {
  background: linear-gradient(
    to right,
    #FFF9F0 0%,
    rgba(255, 249, 240, 0.75) 10%,
    rgba(255, 249, 240, 0.25) 24%,
    transparent 40%
  );
}

.flixoo-way-card-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: auto;
  height: 96%;
  max-width: 118%;
  object-fit: contain;
  object-position: bottom right;
  margin: 0;
  opacity: 1;
  -webkit-mask-image: linear-gradient(to left, #000 72%, transparent 100%);
  mask-image: linear-gradient(to left, #000 72%, transparent 100%);
  transition: transform 0.4s ease;
  filter: none;
}

.flixoo-way-card--seller .flixoo-way-card-photo {
  height: 100%;
  max-width: 125%;
  right: -4%;
  object-position: bottom right;
}

.flixoo-way-card--buyer .flixoo-way-card-photo {
  height: 98%;
  max-width: 115%;
  right: -2%;
  object-position: bottom center;
  -webkit-mask-image: linear-gradient(to left, #000 68%, transparent 100%);
  mask-image: linear-gradient(to left, #000 68%, transparent 100%);
}

.flixoo-way-card--creator .flixoo-way-card-photo {
  height: 102%;
  max-width: 128%;
  right: -6%;
  bottom: -2px;
  object-position: bottom right;
}

.flixoo-way-card:hover .flixoo-way-card-photo {
  transform: scale(1.03);
}

.flixoo-way-role {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.flixoo-way-card--seller .flixoo-way-role,
.flixoo-way-card--buyer .flixoo-way-role {
  color: #C9A000;
}

.flixoo-way-card--creator .flixoo-way-role {
  color: var(--flixoo-green);
}

.flixoo-way-title {
  font-family: var(--flixoo-font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--flixoo-black);
  line-height: 1.2;
}

.flixoo-way-desc {
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  color: var(--flixoo-text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
}

.flixoo-way-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.flixoo-way-bullets li {
  font-size: clamp(0.78rem, 1.1vw, 0.85rem);
  color: var(--flixoo-text-muted);
  padding: 5px 0 5px 26px;
  position: relative;
  line-height: 1.45;
}

.flixoo-way-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
  line-height: 1;
  border-radius: 50%;
}

.flixoo-way-card--seller .flixoo-way-bullets li::before,
.flixoo-way-card--buyer .flixoo-way-bullets li::before {
  color: var(--flixoo-black);
  background: rgba(245, 197, 24, 0.55);
}

.flixoo-way-card--creator .flixoo-way-bullets li::before {
  color: var(--flixoo-green);
  background: rgba(200, 230, 201, 0.85);
}

.flixoo-way-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  min-width: 0 !important;
  white-space: nowrap;
  text-align: left;
  line-height: 1.3 !important;
  padding: 10px 18px !important;
}

.flixoo-way-cta-label {
  display: inline-block;
}

.flixoo-way-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

/* Categories */
.flixoo-categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(24px, 3vw, 32px) clamp(16px, 2vw, 24px);
  max-width: 1080px;
  margin: 0 auto;
}

.flixoo-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--flixoo-text);
  transition: transform 0.25s ease;
  background: none;
  border: none;
  padding: 10px 6px;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  border-radius: var(--flixoo-radius);
  position: relative;
}

.flixoo-category-item:focus-visible {
  outline: 2px solid var(--flixoo-yellow);
  outline-offset: 4px;
}

.flixoo-category-item:hover {
  transform: translateY(-6px) scale(1.03);
}

.flixoo-category-circle {
  width: clamp(88px, 10vw, 108px);
  height: clamp(88px, 10vw, 108px);
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(245, 197, 24, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  box-shadow: 0 4px 16px rgba(10, 10, 10, 0.06);
}

.flixoo-category-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0) 0%, rgba(245, 197, 24, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.flixoo-category-item:hover .flixoo-category-circle::after {
  opacity: 1;
}

.flixoo-category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flixoo-category-item:hover .flixoo-category-circle {
  border-color: var(--flixoo-yellow);
  box-shadow: 0 4px 16px rgba(245, 234, 22, 0.35);
}

.flixoo-category-label {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  color: var(--flixoo-black);
}

.flixoo-category-item.view-all .flixoo-category-circle {
  background: var(--flixoo-yellow-soft);
  color: var(--flixoo-black);
  border: 2px dashed var(--flixoo-yellow);
  box-shadow: inset 0 0 0 2px rgba(245, 197, 24, 0.15);
}

.flixoo-category-item.view-all:hover .flixoo-category-circle {
  background: rgba(245, 197, 24, 0.25);
  border-style: solid;
}

.flixoo-category-shimmer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.flixoo-category-shimmer-circle {
  width: clamp(88px, 10vw, 108px);
  height: clamp(88px, 10vw, 108px);
  border-radius: 50%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: flixoo-shimmer 1.4s ease infinite;
}

.flixoo-category-shimmer-label {
  width: 72px;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: flixoo-shimmer 1.4s ease infinite;
}

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

/* Stats bar */
.flixoo-stats-bar {
  background:
    linear-gradient(135deg, rgba(245, 197, 24, 0.15) 25%, transparent 25%, transparent 50%, rgba(245, 197, 24, 0.08) 50%, rgba(245, 197, 24, 0.08) 75%, transparent 75%),
    linear-gradient(135deg, var(--flixoo-yellow) 0%, #FFE066 50%, var(--flixoo-yellow-bright) 100%);
  background-size: 40px 40px, 100% 100%;
  padding: clamp(40px, 6vw, 56px) 0;
}

.flixoo-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 3vw, 32px);
  max-width: 1100px;
  margin: 0 auto;
}

.flixoo-stat-item {
  text-align: center;
  min-width: 0;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: var(--flixoo-radius);
  backdrop-filter: blur(4px);
  transition: transform 0.25s ease;
}

.flixoo-stat-item:hover {
  transform: translateY(-4px);
}

.flixoo-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  background: rgba(10, 10, 10, 0.08);
  color: var(--flixoo-black);
}

.flixoo-stat-value {
  display: block;
  font-family: var(--flixoo-font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--flixoo-black);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.flixoo-stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2E2E2E;
  opacity: 0.85;
  margin-top: 4px;
}

/* Why choose */
.flixoo-why-section {
  background: #fff;
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.flixoo-why-title {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.flixoo-brand-highlight {
  color: var(--flixoo-yellow);
}

.flixoo-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
  align-items: stretch;
}

.flixoo-why-grid > .flixoo-reveal {
  height: 100%;
}

.flixoo-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: clamp(18px, 2.2vw, 22px) clamp(14px, 1.8vw, 18px);
  background: #FFFBF0;
  border-radius: 16px;
  border: 1px solid rgba(245, 197, 24, 0.14);
  box-shadow: 0 2px 12px rgba(10, 10, 10, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.flixoo-why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
}

.flixoo-why-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  flex-shrink: 0;
  background: rgba(245, 197, 24, 0.45);
  color: var(--flixoo-black);
}

.flixoo-why-copy {
  min-width: 0;
}

.flixoo-why-item-title {
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--flixoo-black);
  line-height: 1.35;
}

.flixoo-why-desc {
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  color: var(--flixoo-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Final CTA */
.flixoo-final-cta {
  position: relative;
  background: #fff;
  padding-top: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(56px, 8vw, 88px);
  overflow: visible;
}

.flixoo-final-banner {
  position: relative;
  background: linear-gradient(135deg, #FFF8E1 0%, #FFF3CC 55%, #FFECB3 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(245, 197, 24, 0.22);
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.15);
}

.flixoo-final-banner-wave {
  position: absolute;
  left: -40px;
  bottom: -30px;
  width: 220px;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.flixoo-final-banner-wave::before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 140px;
  height: 80px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.2);
}

.flixoo-final-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 48px);
}

.flixoo-final-banner-copy {
  text-align: left;
  max-width: 520px;
}

.flixoo-final-title {
  font-family: var(--flixoo-font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--flixoo-black);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.flixoo-final-subtext {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--flixoo-text-muted);
  margin: 0 0 22px;
  line-height: 1.6;
}

.flixoo-cta-pulse-wrap {
  position: relative;
  display: inline-block;
  padding: 6px;
}

.flixoo-cta-pulse-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--flixoo-yellow);
  animation: flixoo-pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

.flixoo-final-signup-btn {
  position: relative;
  z-index: 2;
  min-width: 180px !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35) !important;
}

.flixoo-final-cta .flixoo-final-signup-btn.primary-yellow {
  background-color: var(--flixoo-yellow) !important;
  border-color: var(--flixoo-yellow) !important;
  color: var(--flixoo-black) !important;
}

.flixoo-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 0;
  overflow: visible;
}

@keyframes flixoo-pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 0; }
}

.flixoo-final-portraits-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 0;
}

.flixoo-final-portraits-decor {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(100%, 420px);
  height: 85%;
  background:
    radial-gradient(circle at 20% 40%, rgba(245, 197, 24, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 55% 65%, rgba(245, 197, 24, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(245, 197, 24, 0.15) 0%, transparent 38%);
  pointer-events: none;
  z-index: 0;
}

.flixoo-final-portraits {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.flixoo-final-portrait {
  position: relative;
  width: clamp(72px, 7.8vw, 102px);
  flex-shrink: 0;
}

.flixoo-final-portrait + .flixoo-final-portrait {
  margin-left: clamp(-12px, -1.4vw, -8px);
}

.flixoo-final-portrait-frame {
  width: 100%;
  aspect-ratio: 3 / 4.4;
  border-radius: 999px 999px 16px 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #F5C518 0%, #E6B800 100%);
  padding: 5px 5px 0;
  box-shadow: 0 8px 22px rgba(10, 10, 10, 0.14);
}

.flixoo-final-portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 999px 999px 12px 12px;
  background: #fff;
}

.flixoo-final-portrait-live {
  position: absolute;
  right: 6px;
  bottom: 8px;
  left: auto;
  transform: none;
  background: #E53935;
  color: #fff;
  font-size: clamp(0.48rem, 0.7vw, 0.58rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.flixoo-app-download {
  margin-top: clamp(24px, 3.5vw, 36px);
}

.flixoo-app-download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 32px);
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3.5vw, 36px);
  background: linear-gradient(135deg, #FFFBF0 0%, #FFF6DC 100%);
  border: 1px solid rgba(245, 197, 24, 0.28);
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.12);
}

.flixoo-app-download-copy {
  text-align: left;
  min-width: 0;
}

.flixoo-app-download-title {
  font-family: var(--flixoo-font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 800;
  color: var(--flixoo-black);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.flixoo-app-download-subtitle {
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  color: var(--flixoo-text-muted);
  margin: 0;
  line-height: 1.5;
  max-width: 320px;
}

.flixoo-app-badges {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  flex-shrink: 0;
}

.flixoo-app-badge {
  display: inline-block;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.flixoo-app-badge:hover {
  transform: translateY(-2px) scale(1.02);
  opacity: 0.95;
}

.flixoo-app-badge:focus-visible {
  outline: 2px solid var(--flixoo-yellow);
  outline-offset: 4px;
  border-radius: 8px;
}

.flixoo-app-badge img {
  height: clamp(44px, 5vw, 50px);
  width: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(10, 10, 10, 0.12);
}

/* Responsive */
@media (max-width: 1150px) {
  .flixoo-live-page {
    --flixoo-app-header-height: 70px;
    --flixoo-header-gap: var(--flixoo-app-header-height);
  }
}

@media (max-width: 1200px) {
  .flixoo-hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "left phone"
      "side side";
    gap: clamp(20px, 3vw, 32px);
  }

  .flixoo-phone-device {
    width: clamp(220px, 38vw, 280px);
  }
}

@media (max-width: 1024px) {
  .flixoo-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "phone"
      "side";
  }

  .flixoo-hero-side {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .flixoo-hero-side .flixoo-side-card {
    flex: 1;
    min-width: 260px;
  }

  .flixoo-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .flixoo-final-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .flixoo-final-banner-copy {
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }

  .flixoo-final-actions {
    justify-content: center;
  }

  .flixoo-final-portraits-wrap {
    justify-content: center;
    margin-top: 8px;
  }

  .flixoo-final-portraits-decor {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: min(100%, 360px);
  }

  .flixoo-final-portraits {
    justify-content: center;
  }

  .flixoo-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .flixoo-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .flixoo-live-page {
    --flixoo-gutter: 16px;
  }

  .flixoo-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "phone"
      "side";
    text-align: center;
  }

  .flixoo-hero-left {
    text-align: center;
  }

  .flixoo-hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .flixoo-hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .flixoo-hero-features {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .flixoo-hero-ctas {
    justify-content: center;
  }

  .flixoo-hero-ctas .custom-button,
  .flixoo-hero-cta-btn {
    flex: 1 1 100%;
    max-width: 280px;
  }

  .flixoo-hero-social-proof {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .flixoo-hero-social-proof span {
    flex: 1 1 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .flixoo-hero-side {
    flex-direction: column;
    text-align: left;
  }

  .flixoo-phone-wrap {
    min-height: auto;
    padding: 8px 0 16px;
  }

  .flixoo-phone-device {
    width: min(280px, 78vw);
  }

  .flixoo-hero-banner-decor {
    display: none;
  }

  .flixoo-live-cats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 8px;
  }

  .flixoo-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  .flixoo-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flixoo-stats-grid .flixoo-stat-item:last-child {
    grid-column: 1 / -1;
    max-width: 220px;
    margin: 0 auto;
    width: 100%;
  }

  .flixoo-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    justify-items: start;
    padding: 0 8px;
  }

  .flixoo-trust-item {
    font-size: 0.8rem;
  }

  .flixoo-why-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .flixoo-final-banner-inner {
    padding: 28px 20px;
  }

  .flixoo-final-portrait {
    width: clamp(60px, 16vw, 76px);
  }

  .flixoo-three-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .flixoo-way-card-inner {
    flex-direction: row;
    min-height: 380px;
  }

  .flixoo-way-card-body {
    max-width: 58%;
    flex: 1 1 56%;
  }

  .flixoo-way-card-visual {
    flex: 0 0 42%;
  }

  .flixoo-way-card--seller .flixoo-way-card-photo,
  .flixoo-way-card--buyer .flixoo-way-card-photo,
  .flixoo-way-card--creator .flixoo-way-card-photo {
    height: 96%;
    max-width: 120%;
  }

  .flixoo-app-download-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .flixoo-app-download-copy {
    text-align: center;
  }

  .flixoo-app-download-subtitle {
    max-width: none;
    margin: 0 auto;
  }

  .flixoo-app-badges {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .flixoo-hero-headline {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
  }

  .flixoo-hero-accent {
    display: block;
    padding: 0;
  }

  .flixoo-hero-features {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .flixoo-phone-device {
    width: min(260px, 88vw);
  }

  .flixoo-trust-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .flixoo-trust-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }

  .flixoo-section {
    padding-top: clamp(40px, 10vw, 56px);
    padding-bottom: clamp(40px, 10vw, 56px);
  }

  .flixoo-delivery-chip {
    border-radius: 16px;
  }
}

@media (max-width: 600px) {
  .flixoo-live-page {
    --flixoo-gutter: 12px;
  }

  .flixoo-final-portrait {
    width: 56px;
  }
}

/* Footer polish when on Flixoo Live route */
body.flixoo-live-active .flixoo-live-page ~ span section {
  border-top: 3px solid var(--flixoo-yellow, #F5C518);
}

body.flixoo-live-active .flixoo-live-page ~ span .footerButtonStyle {
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
}

body.flixoo-live-active .flixoo-live-page ~ span .footerButtonStyle:hover,
body.flixoo-live-active .flixoo-live-page ~ span .footerButtonStyle:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: var(--flixoo-yellow, #F5C518);
  text-underline-offset: 4px;
}
