:root {
  --arsenal-red: #DB0007;
  --arsenal-navy: #063672;
  --arsenal-navy-dark: #021b39;
  --arsenal-gold: #9C824A;
  --white: #ffffff;
  --soft-white: #f5f7fb;
  --text-muted: #cdd8e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--arsenal-navy-dark);
  color: var(--white);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(219, 0, 7, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(2, 27, 57, 0.98), rgba(6, 54, 114, 0.92)),
    url("https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 17, 34, 0.56);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.top-bar {
  height: 12px;
  background: var(--arsenal-red);
  border-bottom: 2px solid var(--arsenal-gold);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 0 20px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.crest-text {
  width: 150px;
  height: 150px;
  border: 3px solid var(--arsenal-gold);
  border-radius: 50% 50% 46% 46%;
  background: linear-gradient(160deg, var(--arsenal-red), #9f0005);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.28);
  text-transform: uppercase;
}

.crest-text span,
.crest-text small {
  display: block;
  font-weight: 800;
  line-height: 1;
}

.crest-text span {
  color: var(--arsenal-gold);
  font-size: 18px;
}

.crest-text strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.crest-text small {
  font-size: 11px;
}

.social-mini,
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-mini a,
.footer-social a {
  width: 54px;
  height: 54px;
  border: 2px solid var(--arsenal-gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 23px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-mini a:hover,
.footer-social a:hover,
.social-links a:hover {
  background: var(--arsenal-red);
  transform: translateY(-2px);
}

.announcement {
  text-align: center;
  padding: 24px 0 70px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 18px;
  border: 1px solid var(--arsenal-gold);
  border-radius: 999px;
  color: var(--arsenal-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 13px;
}

h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

h1 span {
  color: var(--arsenal-red);
}

.intro {
  max-width: 760px;
  margin: 34px auto 32px;
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.42;
  color: var(--soft-white);
}

.date-card {
  max-width: 860px;
  margin: 0 auto 42px;
  border: 2px solid var(--arsenal-gold);
  border-radius: 22px;
  padding: 36px 28px;
  background: rgba(3, 32, 67, 0.78);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.date-card p {
  margin: 0 0 14px;
  color: var(--arsenal-gold);
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.date-card strong {
  display: block;
  font-size: clamp(52px, 10vw, 120px);
  line-height: 1;
  letter-spacing: 0.05em;
}

.date-card span {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  color: var(--soft-white);
}

.social-card {
  max-width: 980px;
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  align-items: center;
  text-align: left;
  border: 2px solid var(--arsenal-gold);
  border-radius: 22px;
  padding: 34px;
  background: rgba(3, 32, 67, 0.78);
}

.icon-badge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--arsenal-red);
  border: 3px solid var(--white);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 58px;
  margin: 0 auto;
}

.social-content h2 {
  margin: 0 0 10px;
  color: var(--arsenal-gold);
  text-transform: uppercase;
  font-size: 34px;
  letter-spacing: 0.08em;
}

.social-content p {
  margin: 0 0 26px;
  color: var(--soft-white);
  font-size: 20px;
  line-height: 1.42;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(156, 130, 74, 0.8);
  border-radius: 14px;
  padding: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links i {
  width: 44px;
  height: 44px;
  border: 2px solid var(--arsenal-gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
  flex: 0 0 auto;
}

.social-links span {
  display: grid;
  gap: 3px;
  color: var(--text-muted);
  font-size: 14px;
}

.social-links strong {
  color: var(--white);
  font-size: 16px;
}

.closing {
  color: var(--arsenal-gold);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.07em;
  font-size: 24px;
  line-height: 1.5;
}

.closing span {
  color: var(--white);
}

.info-strip {
  background: linear-gradient(90deg, #a80005, var(--arsenal-red), #a80005);
  border-top: 2px solid var(--arsenal-gold);
  border-bottom: 2px solid var(--arsenal-gold);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 32px 0;
}

.strip-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: left;
}

.strip-grid i {
  font-size: 38px;
  color: var(--arsenal-gold);
}

.strip-grid p {
  margin: 0;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.35;
}

.footer {
  background: var(--arsenal-navy-dark);
  padding: 42px 0 22px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer strong {
  font-size: 20px;
}

.footer p {
  color: var(--text-muted);
  line-height: 1.45;
}

.copyright {
  text-align: center;
  margin: 26px 0 0;
  color: var(--arsenal-gold);
}

@media (max-width: 820px) {
  .site-header,
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .crest-text {
    width: 126px;
    height: 126px;
  }

  .social-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 26px 18px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .strip-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid div {
    justify-content: flex-start;
  }

  .date-card {
    padding: 28px 18px;
  }

  .date-card p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .social-mini a,
  .footer-social a {
    width: 48px;
    height: 48px;
  }

  .intro {
    font-size: 17px;
  }

  .social-content h2 {
    font-size: 26px;
  }

  .social-content p {
    font-size: 17px;
  }

  .closing {
    font-size: 18px;
  }
}
.partner-logo {
  width: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.partner-logo a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.partner-logo img {
  max-height: 90px;
  width: auto;
  max-width: 180px;
  display: block;
}