:root {
  --primary: #ff3e00;
  --secondary: #00d8ff;
  --accent: #ffcc00;
  --bg-dark: #0a0a12;
  --panel-bg: rgba(20, 20, 30, 0.98);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --critical: #ff0033;
  --safe: #00ff66;
  --brutalist-gray: #2a2a2a;
  --industrial-rust: #8b4513;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body { font-family: 'Rajdhani', sans-serif; color: var(--text-primary); background: var(--bg-dark); overflow-x: hidden; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Orbitron', sans-serif; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }

/* FACTION504 Brutalist/Cyberpunk Logo - NAVBAR VERSION */
.faction-logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  text-decoration: none;
  position: relative;
  color: #1a1a1a;
  background: linear-gradient(135deg, #e0e0e0 0%, #999 50%, #e0e0e0 100%);
  padding: 0.2rem 0.6rem;
  border: 2px solid #000;
  box-shadow: 
    3px 3px 0px #000,
    inset 0 0 20px rgba(0,0,0,0.2);
  text-transform: uppercase;
  transform: skew(-5deg);
  transition: all 0.2s ease;
}

.faction-logo::before {
  content: '▣';
  margin-right: 8px;
  color: var(--critical);
  font-size: 1.4rem;
  animation: blink 2s infinite;
}

.faction-logo:hover {
  transform: skew(-5deg) translate(-2px, -2px);
  box-shadow: 
    5px 5px 0px #000,
    inset 0 0 30px rgba(255,62,0,0.2);
}

.faction-logo .f-number {
  color: var(--critical);
  font-weight: 900;
  letter-spacing: 1px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* SPORTY FACTION504 LOGO - FOOTER VERSION (UFC/ESPN/Madden inspired) */
.faction-logo-sporty {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px; /* Fixed: Added spacing to prevent C/T touching */
  position: relative;
  display: inline-block;
  transform: skew(-12deg) scale(1.1);
  color: #f5f5f5; /* Drop-ceiling white - soft, diffused */
  text-shadow: 
    0 0 15px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(255, 255, 255, 0.2),
    0 0 45px rgba(255, 255, 255, 0.1); /* Low humming glow effect */
  border-bottom: 3px solid var(--primary);
  padding-bottom: 2px; /* Fixed: Moved underline up (reduced from 8px) */
  line-height: 0.9; /* Tighten text to match border proximity */
}

.faction-logo-sporty .f-number {
  color: var(--primary);
  font-style: normal;
  letter-spacing: 2px; /* Matched spacing */
  position: relative;
  display: inline-block;
  transform: skew(-5deg);
  text-shadow: 0 0 10px rgba(255, 62, 0, 0.4); /* Subtle glow for the 504 */
}

.faction-logo-sporty::after {
  content: '®';
  position: absolute;
  top: -5px;
  right: -15px;
  font-size: 0.8rem;
  -webkit-text-fill-color: var(--text-secondary);
  font-weight: 400;
  transform: skew(12deg);
  opacity: 0.7;
}

.faction-est {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 12px; /* Slightly increased for better separation */
  transform: skew(-12deg);
  font-weight: 600;
}

@keyframes metallicShine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Navigation */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background: rgba(10, 10, 20, 0.95); backdrop-filter: blur(10px); border-bottom: 2px solid var(--primary); position: fixed; width: 100%; top: 0; z-index: 1000; }
.logo-text { font-family: 'Orbitron', sans-serif; font-size: 2rem; display: flex; gap: 0.5rem; font-weight: 900; letter-spacing: 2px; text-decoration: none; }
.iron-text { background: linear-gradient(120deg, #444 0%, #aaa 40%, #fff 50%, #aaa 60%, #444 100%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: ironShine 4s ease-in-out infinite; }
.swarm-text { background: linear-gradient(180deg, #d8c97c 0%, #a78d42 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4), 0 0 6px rgba(191, 167, 79, 0.2); letter-spacing: 3px; }
.menu { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.menu-item { color: var(--text-primary); text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 0.5rem; }
.menu-item i { color: var(--accent); }
.menu-item:hover { color: var(--accent); }
.menu-btn { display: none; font-size: 2rem; cursor: pointer; color: #fff; }

/* Hero */
.hero-section { position: relative; height: 100vh; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.video-background { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; transform: translate(-50%, -50%); z-index: -1; filter: brightness(0.4) contrast(1.2); }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(10, 10, 18, 0.3) 0%, rgba(10, 10, 18, 0.6) 50%, rgba(10, 10, 18, 1) 100%); }
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 1000px; padding: 2rem; margin-top: 60px; }
.hero-pretitle { font-family: 'Orbitron', sans-serif; font-size: 2rem; color: #ffffff; letter-spacing: 12px; margin-bottom: 0.5rem; text-transform: uppercase; font-weight: 400; }
.hero-title { font-size: clamp(4rem, 12vw, 9rem); font-weight: 900; line-height: 0.9; margin-bottom: 2rem; text-shadow: 0 0 40px rgba(255, 62, 0, 0.6); }
.hero-description { font-size: 1.3rem; max-width: 600px; margin: 0 auto 3rem; color: var(--text-secondary); font-weight: 300; }
.btn-primary, .btn-secondary { padding: 18px 40px; font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%); transition: all 0.3s ease; border: none; margin: 0 10px; }
.btn-primary { background: linear-gradient(135deg, var(--primary), #ff6600); color: white; box-shadow: 0 0 30px rgba(255, 62, 0, 0.4); }
.btn-secondary { background: transparent; border: 2px solid var(--secondary); color: var(--secondary); }
.btn-secondary:hover { background: rgba(0, 216, 255, 0.1); }

/* Mobile text-only button */
@media (max-width: 968px) {
  .btn-secondary {
    background: transparent;
    border: none;
    clip-path: none;
    padding: 10px;
    font-size: 1rem;
    text-decoration: underline;
    text-decoration-color: rgba(0, 216, 255, 0.5);
    text-underline-offset: 4px;
    color: var(--secondary);
    box-shadow: none;
  }
  .btn-secondary:hover {
    background: transparent;
    color: var(--accent);
    text-decoration-color: var(--accent);
  }
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .btn-primary {
    margin: 0;
  }
}

/* Live Feed */
.live-feed-section { background: #050508; border-top: 1px solid var(--primary); border-bottom: 1px solid var(--primary); overflow: hidden; }
.feed-header { background: rgba(255, 62, 0, 0.1); padding: 10px 20px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255, 62, 0, 0.3); }
.live-indicator { width: 10px; height: 10px; background: var(--critical); border-radius: 50%; animation: pulse 2s infinite; }
.feed-ticker { display: flex; animation: scroll 40s linear infinite; white-space: nowrap; padding: 15px 0; }
.feed-item { display: inline-flex; align-items: center; gap: 15px; padding: 0 40px; border-right: 1px solid rgba(255, 255, 255, 0.1); }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 50px; padding: 0 20px; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; display: inline-block; position: relative; color: #ffffff; }
.strobe-underline::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary), var(--primary)); background-size: 300% 100%; animation: strobe 4s linear infinite; }
@keyframes strobe { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }

/* Map Section */
.map-section { padding: 100px 20px; background: linear-gradient(to bottom, #0a0a12, #050510); position: relative; }

.map-wrapper { max-width: 1400px; margin: 0 auto; border: 2px solid var(--secondary); border-radius: 10px; overflow: hidden; box-shadow: 0 0 60px rgba(0, 216, 255, 0.2); height: 700px; position: relative; }

/* Leaflet Map */
#tactical-map { width: 100%; height: 100%; background: #050510; position: relative; z-index: 1; }

/* Terrain Canvas - Fixed position over map, synced via JS */
.terrain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 500; /* Above tiles (200), below markers (600+) and UI (1000) */
}

/* Maximize Button */
.map-control-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(10, 10, 20, 0.9);
  border: 2px solid var(--secondary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  font-size: 1.2rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(0, 216, 255, 0.3);
  text-decoration: none;
}

.map-control-btn:hover {
  background: var(--secondary);
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--secondary);
}

/* Custom Marker Styles */
.base-marker {
  background: transparent;
  border: none;
}
.base-icon {
  width: 36px;
  height: 36px;
  background: rgba(10, 10, 20, 0.9);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
  animation: markerPulse 3s infinite;
}
.base-icon.critical {
  border-color: var(--critical);
  color: var(--critical);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.5);
}
.base-icon.friendly {
  border-color: var(--safe);
  color: var(--safe);
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
}
@keyframes markerPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Leaderboard Section */
.leaderboard-section { padding: 80px 20px; background: linear-gradient(to bottom, #050510, #0a0a12); }
.leaderboard-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.leaderboard-panel { background: rgba(20, 20, 30, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; overflow: hidden; backdrop-filter: blur(10px); }
.leaderboard-header { background: linear-gradient(135deg, rgba(255, 62, 0, 0.2), rgba(255, 62, 0, 0.05)); padding: 20px; border-bottom: 2px solid var(--primary); display: flex; align-items: center; gap: 15px; }
.leaderboard-icon { width: 50px; height: 50px; background: rgba(255, 62, 0, 0.2); border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); box-shadow: 0 0 15px rgba(255, 62, 0, 0.3); }
.leaderboard-title { font-size: 1.4rem; margin: 0; color: #fff; }
.leaderboard-subtitle { color: var(--text-secondary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }
.leaderboard-list { list-style: none; padding: 0; }
.leaderboard-item { display: grid; grid-template-columns: 50px 1fr auto; align-items: center; padding: 15px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s ease; }
.leaderboard-item:hover { background: rgba(255, 62, 0, 0.1); border-left: 3px solid var(--primary); padding-left: 17px; }
.rank { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--accent); text-align: center; text-shadow: 0 0 10px rgba(255, 204, 0, 0.3); }
.rank.top3 { color: var(--primary); font-size: 1.8rem; }
.player-info { display: flex; flex-direction: column; }
.player-name { font-weight: 700; font-size: 1.1rem; color: #fff; display: flex; align-items: center; gap: 8px; }
.player-faction { font-size: 0.85rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }
.faction-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.faction-red { background: #ff0033; box-shadow: 0 0 8px #ff0033; }
.faction-blue { background: #00d8ff; box-shadow: 0 0 8px #00d8ff; }
.faction-purple { background: #aa00ff; box-shadow: 0 0 8px #aa00ff; }
.player-stats { text-align: right; }
.stat-value { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; color: var(--secondary); font-weight: 700; }
.stat-label { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }
.squad-item { padding: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: center; gap: 15px; }
.squad-item:hover { background: rgba(0, 216, 255, 0.05); }
.squad-rank { font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 900; color: var(--secondary); min-width: 40px; text-align: center; }
.squad-emblem { width: 60px; height: 60px; background: rgba(255, 255, 255, 0.05); border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--accent); }
.squad-info { flex: 1; }
.squad-name { font-weight: 700; font-size: 1.2rem; color: #fff; margin-bottom: 4px; }
.squad-tag { font-size: 0.8rem; color: var(--text-secondary); letter-spacing: 1px; }
.squad-members { display: flex; margin-top: 5px; }
.member-avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); border: 2px solid #000; margin-left: -8px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: #000; font-weight: 900; }
.member-avatar:first-child { margin-left: 0; }
.squad-score { text-align: right; }
.score-value { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; color: var(--accent); font-weight: 700; }

/* News Section with Images */
.news-section { padding: 100px 20px; background: #0f0f1a; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }

.news-card { 
  background: rgba(20, 20, 30, 0.6); 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  border-radius: 12px; 
  overflow: hidden; 
  cursor: pointer; 
  transition: all 0.3s ease; 
  position: relative;
}

.news-card:hover { 
  transform: translateY(-5px); 
  border-color: var(--secondary); 
  box-shadow: 0 10px 30px rgba(0, 216, 255, 0.2); 
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-image { 
  width: 100%; 
  height: 220px; 
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,10,18,0.8) 100%);
}

.news-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  border-radius: 4px;
  z-index: 2;
}

.news-content { padding: 1.5rem; }
.news-title { font-size: 1.3rem; margin-bottom: 0.5rem; color: #ffffff; line-height: 1.4; }
.news-excerpt { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; }
.news-meta { display: flex; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.85rem; color: var(--text-secondary); }

/* Overlay */
#contentOverlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(5, 5, 10, 0.98); z-index: 9999; display: none; flex-direction: column; overflow-y: auto; }
#contentOverlay.active { display: flex; }
.overlay-header { position: sticky; top: 0; background: rgba(10, 10, 20, 0.95); border-bottom: 2px solid var(--primary); padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; z-index: 10; }
.close-btn { font-size: 2.5rem; cursor: pointer; color: var(--text-secondary); transition: all 0.3s ease; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; }
.close-btn:hover { color: var(--primary); transform: rotate(90deg); }
.overlay-content { padding: 2rem; max-width: 900px; margin: 0 auto; width: 100%; }
.video-container { width: 100%; margin: 2rem 0; border-radius: 10px; overflow: hidden; border: 2px solid rgba(255, 255, 255, 0.1); }
.video-player { width: 100%; height: auto; max-height: 70vh; display: block; background: #000; }
.article-body { font-size: 1.1rem; line-height: 1.8; }
.article-body h3 { color: var(--secondary); margin: 2rem 0 1rem; font-size: 1.5rem; }
.article-body p { margin-bottom: 1.5rem; color: var(--text-secondary); }
.article-body img, .article-body video { width: 100%; max-width: 800px; height: auto; border-radius: 8px; margin: 2rem auto; display: block; border: 1px solid rgba(255, 255, 255, 0.1); }

/* Enlist Section */
.enlist-section { padding: 100px 20px; background: radial-gradient(ellipse at center, #151520 0%, #0a0a12 100%); }
.funding-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.funding-amount { font-size: 5rem; font-weight: 900; color: var(--accent); font-family: 'Orbitron', sans-serif; text-shadow: 0 0 30px rgba(255, 204, 0, 0.3); margin: 20px 0; }
.progress-container { background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; padding: 5px; margin: 40px auto; max-width: 800px; }
.progress-bar { height: 40px; background: linear-gradient(90deg, var(--primary), var(--accent)); background-size: 300% 100%; animation: strobe 5s linear infinite; border-radius: 6px; transition: width 2s ease-out; display: flex; align-items: center; justify-content: flex-end; padding-right: 15px; }
.tiers-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }
.tier-card { background: rgba(20, 20, 30, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 15px; padding: 40px 30px; position: relative; transition: all 0.4s ease; }
.tier-card.featured { border-color: var(--accent); transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 204, 0, 0.2); }
.tier-badge { position: absolute; top: 20px; right: 20px; background: var(--accent); color: #000; padding: 5px 15px; font-family: 'Orbitron', sans-serif; font-size: 0.7rem; font-weight: 900; text-transform: uppercase; }
.tier-name { font-size: 2rem; margin-bottom: 10px; }
.tier-price { font-size: 3rem; font-weight: 700; color: var(--secondary); font-family: 'Orbitron', sans-serif; }
.tier-features { list-style: none; margin: 30px 0; text-align: left; }
.tier-features li { padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: center; gap: 10px; }
.tier-btn { width: 100%; padding: 15px; background: transparent; border: 2px solid var(--secondary); color: var(--secondary); font-family: 'Orbitron', sans-serif; font-weight: 700; text-transform: uppercase; cursor: pointer; clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%); transition: all 0.3s ease; }
.tier-btn:hover { background: var(--secondary); color: #000; }

/* Footer - Simplified with Sporty Logo */
footer { 
  background: #020205; 
  border-top: 2px solid var(--primary); 
  padding: 60px 20px 30px; 
  text-align: center; 
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 10px,
    rgba(255, 62, 0, 0.3) 10px,
    rgba(255, 62, 0, 0.3) 20px
  );
}

.footer-logo-container {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-links { display: flex; justify-content: center; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); text-decoration: none; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.social-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 40px; }
.social-links a { color: var(--text-secondary); font-size: 1.5rem; transition: all 0.3s ease; }
.social-links a:hover { color: var(--primary); transform: translateY(-3px); }

/* Mobile */
@media (max-width: 968px) {
  .leaderboard-container { grid-template-columns: 1fr; }
  .menu { position: fixed; top: 70px; right: -100%; width: 280px; height: calc(100vh - 70px); background: rgba(10, 10, 20, 0.98); flex-direction: column; padding: 2rem; transition: right 0.3s ease; border-left: 2px solid var(--primary); }
  .menu.show { right: 0; }
  .menu-btn { display: block; }
  .hero-title { font-size: 3rem; }
  .map-wrapper { height: 400px; }
  .funding-amount { font-size: 3rem; }
  .tier-card.featured { transform: scale(1); order: -1; }
  .faction-logo { font-size: 1.4rem; }
  .faction-logo-sporty { letter-spacing: 1px; font-size: 2rem; }
  .news-grid { grid-template-columns: 1fr; }
}

@keyframes ironShine { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }