:root {
  --bg-overlay: rgba(255, 255, 255, 0.4);
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --card-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --blur-radius: 12px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Pretendard', 'Noto Sans KR', system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, rgba(255, 181, 218, 0.35), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(255, 200, 124, 0.28), transparent 30%),
    linear-gradient(135deg, #ffe5ec, #fff0f6);
  color: var(--text-primary);
}

span {
  word-break: keep-all;
  font-size: 0.75rem;
  display: inline-flex;
}

.marquee {
  position: sticky;
  top: 0;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, var(--accent, #ff8fb1), #ffd1dc);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.marquee__group {
  display: flex;
  gap: 36px;
  padding: 10px 0;
}

.marquee__text {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 72px;
  min-height: calc(100vh - 60px);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.08);
}

.hero__background-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.8) 70%);
}

.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 60%);
  filter: blur(8px);
  inset: 0;
  margin: auto;
}

.hero__card {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  border-radius: 32px;
  padding: 32px 28px 36px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(var(--blur-radius));
  -webkit-backdrop-filter: blur(var(--blur-radius));
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 12px;
}

.hero__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.hero__avatar-link {
  display: inline-flex;
  padding: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 143, 177, 0.2), rgba(255, 195, 160, 0.3));
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.hero__avatar-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.hero__identity {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.hero__socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.hero__social {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  color: #111827;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin-left: 30px;
  margin-right: 30px;
}

.hero__social:hover,
.hero__social:focus-visible {
  background: linear-gradient(135deg, rgba(255, 143, 177, 0.2), rgba(255, 195, 160, 0.24));
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.hero__chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent, #ff8fb1), #ffb6c1);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero__name {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
}

.hero__bio {
  width: 100%;
  font-size: 1rem;
  color: #374151;
  margin: 4px 0 0;
  line-height: 1.6;
  white-space: pre-line;
  padding: 14px 16px;
  border-radius: 18px;

  background: linear-gradient(
    120deg,
    rgba(243, 244, 246, 0.9),
    rgba(229, 231, 235, 0.75)
  );

  border: 1px solid rgba(209, 213, 219, 0.6);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 10px 30px rgba(0, 0, 0, 0.06);
}

.hero__search {
  width: 100%;
  margin-top: 12px;
}

.hero__search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(209, 213, 219, 0.7);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 30px rgba(0, 0, 0, 0.06);
}

.hero__search-field input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  outline: none;
}

.hero__search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: #6b7280;
  text-decoration: none;
  font-weight: 700;
}

.hero__search-clear:hover,
.hero__search-clear:focus-visible {
  background: rgba(255, 143, 177, 0.12);
  color: #9a1b4d;
}

.hero__hashtags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hero__hashtags--inline {
  margin-top: 8px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
  color: #374151;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.hero__tag:hover,
.hero__tag:focus-visible {
  background: rgba(255, 143, 177, 0.15);
  color: #9a1b4d;
  transform: translateY(-1px);
}

.hero__tag--active {
  background: linear-gradient(135deg, rgba(255, 143, 177, 0.2), rgba(255, 195, 160, 0.25));
  color: #9a1b4d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 20px rgba(0, 0, 0, 0.06);
}

.hero__stats {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 143, 177, 0.1);
  color: #9a1b4d;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 10px 30px rgba(255, 143, 177, 0.16);
}

.hero__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 4px;
}

.hero__button {
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: var(--btn-radius, 14px);
  font-size: 1rem;
  font-weight: 700;
  background: #fff;
  color: var(--text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.2s ease, translate 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero__button-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__button:hover,
.hero__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.hero__button--primary {
  background: linear-gradient(135deg, var(--accent, #ff8fb1), #ffc3a0);
  color: #fff;
  border: none;
}

.hero__button .hero__icon {
  font-size: 1.1rem;
}

.hero__icon--image {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero__icon-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.hero__button-leading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__clicks {
  font-size: 0.9rem;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 77, 109, 0.18);
}

.hero__sale {
  font-size: 0.9rem;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 193, 7, 0.22);
}

.hero__best {
  font-size: 0.9rem;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(33, 150, 243, 0.22);
}

@media (max-width: 480px) {
  .hero__card {
    padding: 20px 18px 28px;
  }
  .hero__name {
    font-size: 1.4rem;
  }
}
