/* ===== Ruhr Strikers — base styles & animations ===== */
html, body {
  margin: 0; padding: 0;
  background: #040605; color: #eef2ef;
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}
* { box-sizing: border-box; }
::selection { background: #c6ff2e; color: #04120a; }
a { color: #c6ff2e; text-decoration: none; }
a:hover { color: #eaffb0; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #080c0a; }
::-webkit-scrollbar-thumb { background: linear-gradient(#1f5c3c, #0c3521); border-radius: 20px; }

@keyframes rsSpin { to { transform: rotate(360deg); } }
@keyframes rsFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes rsFloatSlow { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-30px) rotate(2deg); } }
@keyframes rsMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes rsPulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes rsBeam { 0% { transform: translateX(-30%) rotate(8deg); opacity: 0; } 30% { opacity: .5; } 100% { transform: translateX(60%) rotate(8deg); opacity: 0; } }
@keyframes rsFog { 0% { transform: translateX(0); } 100% { transform: translateX(-25%); } }
@keyframes rsGrad { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes rsRise { 0% { transform: translateY(110vh) scale(.6); opacity: 0; } 10% { opacity: .9; } 100% { transform: translateY(-10vh) scale(1); opacity: 0; } }
@keyframes rsSeam { to { transform: rotate(360deg); } }
@keyframes rsShine { 0% { left: -60%; } 60%,100% { left: 130%; } }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  .two-col { grid-template-columns: 1fr !important; }
  .three-col { grid-template-columns: 1fr 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .plans-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .gallery-cols { columns: 2 !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .nav-links { display: none !important; }
}
@media (max-width: 560px) {
  section { padding-left: 22px !important; padding-right: 22px !important; }
  nav { padding-left: 22px !important; padding-right: 22px !important; }
  .three-col { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .team-grid { grid-template-columns: 1fr !important; }
  .plans-grid { grid-template-columns: 1fr !important; }
  .gallery-cols { columns: 1 !important; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
