* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #1a000d, #4d002c, #1a000d);
  color: #fff;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-text-size-adjust: 100%;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.sf-skip {
  position: absolute;
  left: -9999px;
  top: 0;
}
.sf-skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;
  padding: 0.5rem 1rem;
  background: #ff0077;
  color: #fff;
  border-radius: 8px;
}

.sf-shell {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(0.75rem, 3vw, 1.25rem);
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}

.sf-stack {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sf-card {
  width: 100%;
  padding: clamp(1.75rem, 5vw, 2.8rem) clamp(1.1rem, 4vw, 1.6rem);
  background: rgba(30, 0, 25, 0.88);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 0 40px rgba(255, 51, 153, 0.3);
  border: 1px solid rgba(255, 46, 152, 0.15);
}

.sf-card h1 {
  font-size: clamp(1.65rem, 6vw, 2.35rem);
  color: #ff2e98;
  margin: 0 0 14px;
  line-height: 1.15;
}

.sf-brand {
  color: #ffd0ea;
}

.sf-tagline {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  color: #ffd0ea;
  margin: 0 0 26px;
  line-height: 1.5;
  max-width: 36em;
  margin-inline: auto;
}

.sf-preview-wrap {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  margin-bottom: 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  margin-inline: -0.25rem;
  padding-inline: 0.25rem;
}

.sf-preview-wrap::-webkit-scrollbar {
  display: none;
}

.sf-preview {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.sf-ph {
  margin: 0;
  flex-shrink: 0;
}

.sf-preview img,
.sf-ph img {
  width: clamp(85px, 22vw, 105px);
  height: clamp(77px, 20vw, 95px);
  aspect-ratio: 105 / 95;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
  transition: transform 0.2s ease;
  border: 1px solid rgba(255, 46, 152, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.sf-preview img:hover {
  transform: scale(1.06);
}

.sf-features {
  text-align: left;
  font-size: clamp(0.95rem, 3vw, 1rem);
  color: #ffe3f7;
  margin: 24px auto;
  padding: 0 0 0 16px;
  max-width: 28em;
  list-style: none;
}

.sf-features li {
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
  line-height: 1.45;
}

.sf-features li::before {
  content: "🔥";
  position: absolute;
  left: 0;
  top: 0;
}

.sf-cta {
  display: inline-block;
  background: linear-gradient(90deg, #ff0077, #ff3cad);
  padding: 15px 32px;
  font-size: clamp(0.95rem, 3vw, 1rem);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.15s ease;
  min-height: 48px;
  line-height: 1.2;
  max-width: 100%;
  text-align: center;
}

.sf-cta--main {
  margin-top: 8px;
}

.sf-cta:hover {
  background: linear-gradient(90deg, #ff3cad, #ff0077);
  transform: translateY(-1px);
}

.sf-cta:active {
  transform: scale(0.98);
}

.sf-panel {
  padding: clamp(1.25rem, 4vw, 1.75rem);
  background: rgba(30, 0, 25, 0.75);
  border-radius: 20px;
  border: 1px solid rgba(255, 46, 152, 0.12);
  text-align: left;
}

.sf-panel--accent {
  background: rgba(45, 0, 32, 0.85);
  text-align: center;
}

.sf-panel-title {
  font-size: clamp(1.2rem, 4vw, 1.45rem);
  color: #ff2e98;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.sf-panel p {
  color: #ffe3f7;
  font-size: clamp(0.92rem, 3vw, 1rem);
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

.sf-panel-note {
  color: #ffd0ea;
  font-size: 0.92rem;
  margin: 1rem 0 0 !important;
}

.sf-panel-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

.sf-media {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 46, 152, 0.2);
}

.sf-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sf-media--icon {
  max-width: 120px;
  border-radius: 50%;
}

.sf-media--icon img {
  aspect-ratio: 1 / 1;
}

.sf-media--hero {
  margin-top: 1rem;
  max-height: min(42vh, 360px);
}

.sf-media--hero img {
  width: 100%;
  max-height: min(42vh, 360px);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 480 / 720;
}

.sf-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.sf-tags li {
  background: rgba(255, 46, 152, 0.12);
  border: 1px solid rgba(255, 46, 152, 0.28);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  color: #ffd0ea;
}

.sf-faq {
  border: 1px solid rgba(255, 46, 152, 0.18);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: rgba(20, 0, 15, 0.5);
}

.sf-faq summary {
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  color: #ffd0ea;
  list-style: none;
}

.sf-faq summary::-webkit-details-marker {
  display: none;
}

.sf-faq p {
  padding: 0 1rem 0.85rem;
  margin: 0;
  font-size: 0.92rem;
  color: #ffe3f7;
}

.sf-foot {
  text-align: center;
  font-size: 0.8rem;
  color: #c7a8c9;
  padding: 0.5rem 0 0.25rem;
}

.sf-foot p {
  margin: 0;
}

.sf-dock {
  display: none;
}

@media (max-width: 600px) {
  .sf-shell {
    padding-top: 0.65rem;
  }

  .sf-card,
  .sf-panel {
    border-radius: 18px;
  }

  .sf-panel-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sf-media--icon {
    margin: 0 auto;
    max-width: 100px;
  }

  .sf-cta,
  .sf-cta--main {
    display: block;
    width: 100%;
    padding: 14px 20px;
  }

  .sf-features {
    padding-left: 8px;
  }

  .sf-dock {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(26, 0, 13, 0.97);
    border-top: 1px solid rgba(255, 46, 152, 0.25);
    text-align: center;
    z-index: 50;
  }

  .sf-dock .sf-cta {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .sf-card .sf-cta--main {
    display: none;
  }
}

@media (min-width: 601px) {
  .sf-shell {
    align-items: center;
    padding-bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sf-preview img,
  .sf-cta { transition: none; }
}
