@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');

:root {
  --arsenal-red: #DB0007;
  --arsenal-dark-red: #BA0208;
  --arsenal-gold: #9C824A;
  --arsenal-dark: #0D0F12;
  --arsenal-slate: #161B22;
  --arsenal-navy: #023474;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Custom Selection */
::selection {
  background-color: #DB0007;
  color: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #DB0007;
}

/* Section Title Underline (Mockup Style) */
.section-title {
  position: relative;
  display: inline-block;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: #DB0007;
  border-radius: 2px;
}

/* Dark Section Stadium Glow */
.hero-stadium-glow {
  background: radial-gradient(circle at 80% 20%, rgba(219, 0, 7, 0.15) 0%, rgba(13, 15, 18, 0.95) 70%), #0D0F12;
}

.history-stadium-glow {
  background: radial-gradient(circle at 20% 50%, rgba(219, 0, 7, 0.12) 0%, rgba(13, 15, 18, 0.98) 80%), #0D0F12;
}

/* Slide Transitions */
.hero-slide {
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.hidden-slide {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(0.99);
}
.hero-slide.active-slide {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 10;
  transform: scale(1);
}

/* Proportional Badges */
.badge-arsenal {
  background-color: #DB0007;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

/* Card Hover Elevation */
.card-hover {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.08);
}

/* Article Prose Typography */
.article-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2d3748;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.article-body blockquote {
  border-left: 4px solid #DB0007;
  padding-left: 1.25rem;
  font-style: italic;
  color: #4a5568;
  margin: 1.75rem 0;
  background-color: #fff5f5;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-radius: 0 0.75rem 0.75rem 0;
}

.article-body img {
  border-radius: 1rem;
  margin: 2rem auto;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-body ul {
  list-style-type: disc;
}

.article-body ol {
  list-style-type: decimal;
}

.article-body li {
  margin-bottom: 0.5rem;
}
