* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-rendering: optimizeSpeed;
  background:
    radial-gradient(circle at 20% 10%, rgba(145, 85, 52, 0.28), transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(110, 16, 95, 0.30), transparent 45%),
    linear-gradient(180deg, #111113 0%, #050506 100%);
  color: #f2efe8;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 28px 16px 44px;
}

.container {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 20px 14px 10px;
  border-radius: 28px;
  background: rgba(15, 15, 18, 0.72);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.30);
}

.hero-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.hero-banner {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(233, 222, 200, 0.28);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
  contain: paint;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tagline {
  width: 100%;
  max-width: 460px;
  margin: 10px auto 4px;
  padding: 0 6px;
  font-size: clamp(11px, 3vw, 17px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: #f4e9d7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.description {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  color: #d5d1ca;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
  margin-top: 6px;
  margin-bottom: 2px;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  overflow-wrap: break-word;
}

.scroll-hint {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -6px;
  margin-bottom: 2px;
  color: rgba(244, 233, 215, 0.78);
  animation: scroll-hint-bounce 1.45s ease-in-out infinite;
}

.scroll-hint svg {
  width: 22px;
  height: 22px;
  display: block;
}

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.65; }
  50% { transform: translateY(7px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint { animation: none; opacity: 0.85; }
}

.links-area {
  align-self: stretch;
  width: 100%;
  padding: 4px 0 48px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.link-card {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 0;
  height: auto;
  background-color: #e9dec8;
  border-radius: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  padding: 10px 14px;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: inherit;
}

.link-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.link-card:active {
  transform: scale(0.96);
}

.link-card--disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.88;
}

.link-card--disabled:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.link-card--disabled:active {
  transform: none;
}

.link-card img {
  width: 75px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  margin-right: 12px;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.btn-headline {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  color: #111111;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.btn-text {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #111111;
  line-height: 1.35;
}

.btn-subtext {
  font-weight: 500;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  color: #3a3a3a;
  line-height: 1.4;
}

.btn-cta {
  color: #111111;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.35;
}

.selling-fast-badge--soon {
  text-transform: none;
}

.selling-fast-badge {
  position: absolute;
  top: -7px;
  right: -4px;
  background-color: #fff8f8;
  color: #b30000;
  border: 1px solid #d10000;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15px;
  line-height: 1.15;
  padding: 5px 8px;
  transform: rotate(-4deg);
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

@media (max-width: 390px) {
  .hero-tagline { letter-spacing: 0.08em; font-size: clamp(10px, 3.5vw, 14px); }
  .description { font-size: 13px; }
  .btn-headline { font-size: 12px; gap: 3px; }
  .btn-subtext { font-size: 11px; }
  .btn-cta { font-size: 9px; letter-spacing: 0.08em; }
  .link-card { padding: 10px 12px; }
  .link-card img { width: 70px; max-height: 42px; margin-right: 10px; }
  .selling-fast-badge { font-size: 8px; padding: 4px 7px; }
}
