:root {
  --bg: #fffaf5;
  --panel: #ffffff;
  --panel-alt: #fff4eb;
  --primary: #f17224;
  --primary-deep: #d95d14;
  --primary-soft: rgba(241, 114, 36, 0.12);
  --text: #171717;
  --muted: #5f5f5f;
  --line: rgba(23, 23, 23, 0.08);
  --shadow: 0 28px 60px rgba(19, 18, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Inter, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(241, 114, 36, 0.12), transparent 32%),
    linear-gradient(180deg, #fffdfb 0%, var(--bg) 100%);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  display: flex;
  justify-content: center;
  padding: 28px 20px 14px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 28px 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
  border: 2px solid rgba(241, 114, 36, 0.4);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(241, 114, 36, 0.15);
}

.logo {
  width: auto;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(241, 114, 36, 0.35));
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text-main {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-text-sub {
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(241, 114, 36, 0.3);
}

.hero {
  text-align: center;
  padding: 46px 20px 30px;
}

.hero-eyebrow {
  margin: 0 0 12px;
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-title span {
  display: block;
  background: linear-gradient(120deg, var(--primary) 0%, #ff8c42 50%, var(--primary-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-tagline {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 40px auto;
}

.wrestlers {
  display: grid;
  gap: 32px;
}

.wrestler-card {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 360px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: transform 0.45s ease, box-shadow 0.35s ease, opacity 0.45s ease;
}

.wrestler-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wrestler-card:hover {
  box-shadow: 0 30px 72px rgba(17, 17, 17, 0.12);
}

.wrestler-card:nth-child(even) {
  flex-direction: row-reverse;
}

.wrestler-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--primary) 0%, #ffb067 100%);
}

.wrestler-card:nth-child(even)::before {
  inset: 0 0 0 auto;
}

.wrestler-visual {
  position: relative;
  width: 44%;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background:
    linear-gradient(135deg, #fdf3ea 0%, #f4efe9 100%);
}

.wrestler-image-wrap {
  position: relative;
  width: 100%;
  padding: 28px 28px 18px;
}

.wrestler-image-wrap::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 110px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, rgba(241, 114, 36, 0.08), rgba(241, 114, 36, 0));
}

.wrestler-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.1) contrast(1.05);
  border-radius: 26px 26px 0 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.03), rgba(241, 114, 36, 0.08));
}

.profile-no {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: clamp(3.4rem, 6vw, 7rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(241, 114, 36, 0.18);
  z-index: 2;
  text-shadow: 0 6px 18px rgba(241, 114, 36, 0.08);
}

.wrestler-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 36px 28px;
  background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
}

.aka-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(241, 114, 36, 0.18);
  color: var(--primary-deep);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.aka-bar .aka-label {
  color: var(--text);
  opacity: 0.7;
}

.wrestler-name {
  margin: 18px 0 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.role-tag {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-banner {
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  box-shadow: 0 18px 28px rgba(241, 114, 36, 0.2);
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 16px 18px;
  margin: 26px 0 0;
}

.meta-item {
  position: relative;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.meta-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.meta-value {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
}

@media (max-width: 880px) {
  .page-shell {
    width: min(100% - 22px, 720px);
    margin: 24px auto 40px;
  }

  .wrestler-card,
  .wrestler-card:nth-child(even) {
    flex-direction: column;
  }

  .wrestler-visual {
    width: 100%;
  }

  .wrestler-image-wrap {
    padding: 18px 18px 10px;
  }

  .profile-no {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 18px 12px 8px;
  }

  .logo-wrap {
    gap: 12px;
    padding: 10px 18px 10px 10px;
  }

  .logo {
    height: 46px;
  }

  .logo-text-main {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .logo-text-sub {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
  }

  .hero {
    padding: 34px 16px 24px;
  }

  .hero-eyebrow {
    letter-spacing: 0.2em;
  }

  .hero-tagline {
    letter-spacing: 0.1em;
  }

  .wrestler-card {
    border-radius: 24px;
  }

  .wrestler-details {
    padding: 22px 18px 24px;
  }

  .meta-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .aka-bar {
    letter-spacing: 0.12em;
    padding-inline: 12px;
  }

  .role-tag {
    letter-spacing: 0.06em;
  }
}
