:root {
  --cream: #f0ede7;
  --paper: #f8f6f1;
  --ink: #121211;
  --muted: #696761;
  --red: #ed493d;
  --green: #27b765;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  display: grid;
  margin: 0;
  padding: clamp(14px, 3vw, 42px);
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, #4b2927 0, transparent 27%),
    radial-gradient(circle at 85% 80%, #202d3d 0, transparent 28%),
    repeating-linear-gradient(135deg, transparent 0 8px, rgba(255, 255, 255, 0.018) 8px 9px),
    #111214;
  font-family: Arial, Helvetica, sans-serif;
  place-items: center;
}

a {
  color: inherit;
  text-decoration: none;
}

.poster {
  position: relative;
  width: min(100%, 1040px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 48%, rgba(237, 73, 61, 0.08), transparent 30%),
    var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}

.poster::before {
  position: absolute;
  top: 0;
  left: clamp(26px, 5vw, 60px);
  z-index: 3;
  width: clamp(90px, 14vw, 150px);
  height: 8px;
  background: var(--red);
  content: "";
}

.jersey-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(26px, 4vw, 44px) clamp(14px, 3vw, 30px) clamp(20px, 3vw, 30px);
  background:
    linear-gradient(145deg, rgba(237, 73, 61, 0.12), transparent 28%),
    repeating-linear-gradient(-45deg, transparent 0 8px, rgba(255, 255, 255, 0.025) 8px 9px),
    #17181b;
}

.jersey-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(8px, 1.5vw, 14px);
  background: #e9e6e1;
  box-shadow: 0 12px 30px rgba(20, 20, 18, 0.09);
}

.jersey-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36%;
  height: 6px;
  background: var(--red);
  content: "";
}

.jersey-card-two::after {
  right: auto;
  left: 0;
  background: #1551c9;
}

.jersey-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 350ms ease;
}

.jersey-card:hover img {
  transform: scale(1.018);
}

.message {
  padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 60px) clamp(42px, 6vw, 70px);
  background:
    radial-gradient(circle at 100% 45%, rgba(237, 73, 61, 0.1), transparent 32%),
    var(--paper);
}

.message p {
  position: relative;
  margin: 0;
  padding: clamp(25px, 3.8vw, 45px) clamp(0px, 1vw, 12px);
  border-top: 2px solid var(--ink);
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-size: clamp(25px, 4.3vw, 50px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.message p:last-child {
  color: var(--red);
  border-bottom: 2px solid var(--ink);
}

.contact-bar {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  min-height: 120px;
  align-items: stretch;
  color: white;
  background: var(--ink);
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px);
  min-width: 0;
  padding: 22px;
  font-family: "Arial Black", Impact, Arial, sans-serif;
  font-size: clamp(14px, 2vw, 21px);
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: background 180ms ease, color 180ms ease;
}

.contact-item:first-child:hover {
  color: white;
  background: var(--green);
}

.contact-item:last-child:hover {
  color: white;
  background: var(--red);
}

.contact-item svg {
  width: clamp(32px, 5vw, 48px);
  height: clamp(32px, 5vw, 48px);
  flex: 0 0 auto;
  fill: currentColor;
}

.contact-item .icon-detail {
  fill: var(--ink);
}

.contact-item .icon-line {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.contact-item:hover .icon-detail {
  fill: var(--green);
}

.contact-item:last-child:hover .icon-line {
  stroke: var(--red);
}

.contact-divider {
  width: 1px;
  height: 48px;
  align-self: center;
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 620px) {
  body {
    padding: 0;
    background: var(--paper);
  }

  .poster {
    min-height: 100vh;
    border-radius: 0;
  }

  .jersey-gallery {
    gap: 8px;
    padding: 24px 8px 8px;
  }

  .jersey-card {
    border-radius: 10px;
  }

  .message p {
    font-size: clamp(22px, 7.2vw, 36px);
  }

  .contact-bar {
    min-height: 94px;
  }

  .contact-item {
    flex-direction: column;
    gap: 6px;
    padding: 14px 8px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
