/* ===== 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%; } }

/* ===== Hamburger + mobile menu ===== */
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; padding: 0 11px; border-radius: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16); cursor: pointer; }
.nav-burger span { display: block; height: 2px; border-radius: 2px; background: #eef2ef; transition: transform .3s ease, opacity .2s ease; }
.nav-burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; top: 74px; left: 16px; right: 16px; z-index: 99;
  flex-direction: column; padding: 10px; border-radius: 18px; background: rgba(6,16,11,.97);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(198,255,46,.18); box-shadow: 0 30px 60px rgba(0,0,0,.55); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 16px; border-radius: 12px; color: #c7d3cb;
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; }
.mobile-menu a:hover, .mobile-menu a:active { background: rgba(198,255,46,.08); color: #c6ff2e; }
.mobile-menu a.mm-join { margin-top: 6px; text-align: center; color: #04120a; font-weight: 700;
  background: linear-gradient(135deg, #c6ff2e, #7bd626); }
@media (min-width: 961px) { .mobile-menu, .nav-burger { display: none !important; } }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav-burger { display: flex !important; }
  .nav-join { display: none !important; }
  .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; }
}
