:root {
  --bg: #f2f5ff;
  --ink: #0f215d;
  --ink-soft: #4f639a;
  --brand: #102e91;
  --brand-2: #1e4dc4;
  --line: rgba(16, 46, 145, 0.2);
  --paper: #ffffff;
  --paper-soft: #f7f9ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(30, 77, 196, 0.18), transparent 33%),
    radial-gradient(circle at 84% 100%, rgba(70, 102, 211, 0.18), transparent 30%),
    linear-gradient(160deg, #f9fbff 0%, #edf3ff 50%, #e9f0ff 100%);
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.page-wrap {
  width: min(780px, calc(100% - 2rem));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.84);
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-link {
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
}

.lang-switch {
  display: inline-flex;
  gap: 0.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.18rem;
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #223f9f;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.26rem 0.54rem;
  cursor: pointer;
}

.lang-btn.active {
  background: #dbe6ff;
}

main {
  padding: 1.3rem 0 3rem;
}

.poster {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(16, 46, 145, 0.34);
  border-radius: 0;
  background:
    linear-gradient(175deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 100%);
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 18px 34px rgba(16, 46, 145, 0.12);
  animation: poster-in 560ms ease-out;
  max-width: 700px;
  margin-inline: auto;
}

.poster-glow {
  position: absolute;
  right: -120px;
  top: -70px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 77, 196, 0.28), transparent 68%);
  pointer-events: none;
}

.edition,
h1 {
  text-align: center;
  text-transform: uppercase;
}

.edition {
  margin: 0 0 0.1rem;
  letter-spacing: 0.08em;
  color: #000000;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  font-family: "Bebas Neue", sans-serif;
}

h1 {
  margin: 0.18rem auto 0;
  max-width: 22ch;
  line-height: 0.94;
  letter-spacing: 0.01em;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.95rem, 5.8vw, 4.1rem);
  color: #0e287e;
}

.hero-strip {
  margin: 0.45rem auto 0.7rem;
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem;
}

.hero-strip span {
  display: inline-flex;
  align-items: center;
  color: #000000;
  font-weight: 800;
  font-size: clamp(0.94rem, 1.8vw, 1.26rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0;
}

.poster-visual {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 0.6rem;
  align-items: center;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  padding: 0.6rem 0;
}

.logo-panel {
  border: 1px solid rgba(16, 46, 145, 0.16);
  border-radius: 0;
  background: linear-gradient(150deg, #13308f, #2049b9);
  padding: 0.6rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.club-logo {
  width: min(620px, 100%);
  justify-self: center;
  display: block;
}

.kanji {
  width: 100px;
  height: auto;
  opacity: 0.8;
  filter: contrast(1.12);
  justify-self: center;
}

.facts-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.fact-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0.2rem 0;
  box-shadow: none;
}

.fact-card h2 {
  margin: 0 0 0.4rem;
  color: #14348f;
  letter-spacing: 0.045em;
  line-height: 0.98;
  font-size: clamp(1.1rem, 1.9vw, 1.6rem);
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}

.fact-card p {
  margin: 0;
  color: #334f9b;
  line-height: 1.4;
}

.fact-card strong {
  color: #173794;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fact-row {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.5rem;
  align-items: start;
  margin: 0.34rem 0;
}

.fact-text {
  min-width: 0;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.mini-icon {
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
}

.fact-card a {
  color: #2046b8;
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.poster-supporters {
  margin-top: 0.65rem;
  padding: 0.65rem 0.65rem 0.55rem;
  border-top: 1px dashed rgba(20, 52, 148, 0.2);
  width: 100%;
}

.poster-supporters h3 {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5f72ac;
  font-weight: 800;
}

.poster-supporters-logos {
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.poster-supporters-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.82;
}

.supporter-item {
  min-height: 76px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.24rem;
  border: 1px solid rgba(19, 50, 139, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  padding: 0.35rem;
}

.supporter-item p {
  margin: 0;
  text-align: center;
  color: #4d63a6;
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 700;
}

.download-box {
  margin-top: 0;
  margin-bottom: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(18, 48, 149, 0.1);
  max-width: 700px;
  margin-inline: auto;
}

.download-box h2 {
  margin: 0;
  color: var(--brand);
}

.download-box p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
}

.download-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.download-btn {
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(140deg, #17389d, #2a59cf);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.download-btn.ghost {
  color: #153796;
  background: #ebf1ff;
  border-color: rgba(24, 57, 153, 0.24);
}

.download-btn:hover,
.download-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(25, 56, 153, 0.24);
}

.footer {
  color: #6376af;
  border-top: 1px solid var(--line);
  padding: 0.92rem 0 1.3rem;
}

@keyframes poster-in {
  from {
    transform: translateY(12px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .poster-visual,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    margin-bottom: 0.8rem;
  }

  .kanji {
    width: 94px;
    justify-self: center;
  }

  .poster-supporters-logos img {
    height: 38px;
  }

  .poster-supporters-logos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .topbar-inner {
    min-height: 64px;
  }

  .poster {
    padding: 1rem;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .poster,
  .download-btn {
    animation: none;
    transition: none;
  }
}
