/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Tactical Root Variable Definitions */
:root {
  --color-apbn-green: #1B4332;
  --color-apbn-navy: #14213D;
  --color-apbn-gold: #D4AF37;
}

/* Base Body Modifications */
body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/* Notice Marquee Keyframe */
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.animate-marquee {
  display: inline-block;
  animation: marquee 28s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

/* Custom Tactical Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #14213D;
}

::-webkit-scrollbar-thumb {
  background: #1B4332;
  border-radius: 4px;
  border: 1px solid #D4AF37;
}

::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}

/* Dynamic Font Scaling Utilities for Accessibility */
html.font-sm { font-size: 14px; }
html.font-base { font-size: 16px; }
html.font-lg { font-size: 18px; }