/* 🇺🇸 ULTIMATE AMERICAN WARRIOR - MACHINE'S MASTERPIECE 🇺🇸 */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Russo+One&family=Orbitron:wght@400;700;900&display=swap');

:root {
  /* AMERICAN PATRIOT COLORS */
  --freedom-red: #DC143C;
  --liberty-blue: #002868;
  --eagle-white: #FFFFFF;
  --gold-star: #FFD700;
  --bronze-medal: #CD7F32;
  --steel-gray: #71797E;
  --gunmetal: #2C3539;
  --tactical-black: #0A0A0A;
  --camo-green: #355E3B;
  --desert-tan: #C19A6B;
  --blood-red: #8B0000;
  --victory-orange: #FF4500;
  
  /* GRADIENTS FOR MAXIMUM IMPACT */
  --american-gradient: linear-gradient(135deg, var(--freedom-red) 0%, var(--eagle-white) 50%, var(--liberty-blue) 100%);
  --warrior-gradient: linear-gradient(45deg, var(--tactical-black) 0%, var(--gunmetal) 50%, var(--steel-gray) 100%);
  --fire-gradient: linear-gradient(45deg, var(--victory-orange) 0%, var(--freedom-red) 50%, var(--blood-red) 100%);
  --gold-gradient: linear-gradient(45deg, var(--gold-star) 0%, var(--bronze-medal) 100%);
  
  /* TYPOGRAPHY - AMERICAN STRENGTH */
  --font-warrior: 'Bebas Neue', cursive;
  --font-tactical: 'Oswald', sans-serif;
  --font-command: 'Russo One', sans-serif;
  --font-tech: 'Orbitron', monospace;
  
  /* SHADOWS AND EFFECTS */
  --text-shadow-hero: 4px 4px 8px rgba(0, 0, 0, 0.8), 0 0 20px var(--freedom-red);
  --box-shadow-warrior: 0 20px 40px rgba(220, 20, 60, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
  --glow-american: 0 0 20px var(--freedom-red), 0 0 40px var(--liberty-blue), 0 0 60px var(--eagle-white);
}

/* RESET AND BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-tactical);
  background: var(--tactical-black);
  color: var(--eagle-white);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* AMERICAN FLAG ANIMATED BACKGROUND */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      var(--freedom-red) 0px,
      var(--freedom-red) 20px,
      var(--eagle-white) 20px,
      var(--eagle-white) 40px
    ),
    linear-gradient(
      90deg,
      var(--liberty-blue) 0%,
      var(--liberty-blue) 35%,
      transparent 35%
    );
  opacity: 0.03;
  z-index: -2;
  animation: flagWave 8s ease-in-out infinite;
}

@keyframes flagWave {
  0%, 100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(10px) scale(1.02); }
}

/* CAMO PATTERN OVERLAY */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, var(--camo-green) 15%, transparent 16%),
    radial-gradient(circle at 75% 75%, var(--desert-tan) 12%, transparent 13%),
    radial-gradient(circle at 50% 10%, var(--steel-gray) 8%, transparent 9%),
    radial-gradient(circle at 10% 80%, var(--gunmetal) 10%, transparent 11%);
  background-size: 120px 120px, 80px 80px, 60px 60px, 100px 100px;
  background-position: 0 0, 40px 40px, 80px 20px, 20px 60px;
  opacity: 0.08;
  z-index: -1;
  animation: camoShift 15s linear infinite;
}

@keyframes camoShift {
  0% { background-position: 0 0, 40px 40px, 80px 20px, 20px 60px; }
  100% { background-position: 120px 120px, 160px 160px, 200px 140px, 140px 180px; }
}

/* HEADER - TACTICAL COMMAND CENTER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px) saturate(180%);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 3px solid var(--freedom-red);
  box-shadow: 0 5px 30px rgba(220, 20, 60, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-family: var(--font-warrior);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--freedom-red);
  text-decoration: none;
  text-shadow: var(--text-shadow-hero);
  letter-spacing: 3px;
  position: relative;
}

.logo::before {
  content: '🇺🇸';
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  animation: pulse 2s infinite;
}

.logo::after {
  content: '⚔️';
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  animation: pulse 2s infinite reverse;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-link {
  color: var(--eagle-white);
  text-decoration: none;
  font-family: var(--font-tactical);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--american-gradient);
  opacity: 0;
  transform: skewX(-15deg);
  transition: all 0.3s ease;
  z-index: -1;
}

.nav-link:hover {
  color: var(--tactical-black);
  text-shadow: none;
  transform: translateY(-2px);
}

.nav-link:hover::before {
  opacity: 1;
}

/* HERO SECTION - AMERICAN DOMINANCE */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: 
    radial-gradient(circle at center, rgba(220, 20, 60, 0.1) 0%, transparent 70%),
    linear-gradient(135deg, rgba(0, 40, 104, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  text-align: center;
  padding: 0 2rem;
  overflow: hidden;
}

/* ANIMATED PARTICLES */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, var(--gold-star), transparent),
    radial-gradient(2px 2px at 40px 70px, var(--eagle-white), transparent),
    radial-gradient(1px 1px at 90px 40px, var(--freedom-red), transparent),
    radial-gradient(1px 1px at 130px 80px, var(--liberty-blue), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: sparkle 20s linear infinite;
  opacity: 0.6;
}

@keyframes sparkle {
  0% { transform: translateY(0); }
  100% { transform: translateY(-200px); }
}

.hero-content {
  max-width: 1000px;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-family: var(--font-warrior);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  background: var(--american-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-shadow: var(--text-shadow-hero);
  animation: heroGlow 3s ease-in-out infinite alternate;
  position: relative;
}

@keyframes heroGlow {
  0% { filter: drop-shadow(0 0 20px var(--freedom-red)); }
  100% { filter: drop-shadow(0 0 40px var(--liberty-blue)) drop-shadow(0 0 60px var(--gold-star)); }
}

.hero-title::before {
  content: '★';
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: var(--gold-star);
  animation: rotate 4s linear infinite;
}

.hero-title::after {
  content: '★';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: var(--gold-star);
  animation: rotate 4s linear infinite reverse;
}

@keyframes rotate {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

.hero-tagline {
  font-family: var(--font-command);
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: var(--gold-star);
  margin-bottom: 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  animation: typewriter 4s steps(40) 1s both;
  border-right: 3px solid var(--gold-star);
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

@keyframes typewriter {
  0% { width: 0; }
  99% { border-right: 3px solid var(--gold-star); }
  100% { width: 100%; border-right: none; }
}

.hero-description {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin-bottom: 3rem;
  line-height: 1.8;
  color: var(--eagle-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 2s both;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ULTIMATE CTA BUTTON */
.cta-button {
  display: inline-block;
  padding: 1.5rem 4rem;
  background: var(--fire-gradient);
  color: var(--eagle-white);
  text-decoration: none;
  font-family: var(--font-warrior);
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold-star);
  box-shadow: var(--box-shadow-warrior);
  animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 
    0 30px 60px rgba(220, 20, 60, 0.6),
    0 0 50px var(--gold-star),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  text-shadow: 0 0 20px var(--eagle-white);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button::after {
  content: '🚀';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  animation: rocket 1s ease-in-out infinite alternate;
}

@keyframes rocket {
  0% { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-50%) translateX(5px); }
}

/* SECTION STYLING - MILITARY PRECISION */
.section {
  padding: 6rem 0;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: var(--font-warrior);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  margin-bottom: 4rem;
  background: var(--american-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-family: var(--font-command);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gold-star);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* MISSION SECTION - AMERICAN VALUES */
.mission {
  background: 
    linear-gradient(rgba(0, 40, 104, 0.1), rgba(220, 20, 60, 0.1)),
    radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  position: relative;
}

.mission::before {
  content: '🦅';
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 8rem;
  opacity: 0.1;
  animation: soar 10s ease-in-out infinite;
}

@keyframes soar {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.mission-card {
  background: rgba(10, 10, 10, 0.9);
  padding: 3rem 2rem;
  border-radius: 0;
  border: 2px solid var(--freedom-red);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--american-gradient);
}

.mission-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.mission-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(220, 20, 60, 0.4),
    0 0 30px rgba(255, 215, 0, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  border-color: var(--gold-star);
}

.mission-card:hover::after {
  left: 100%;
}

.mission-card h3 {
  color: var(--gold-star);
  font-family: var(--font-warrior);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.mission-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--eagle-white);
}

/* LEADERSHIP SECTION - COMMANDER IN CHIEF */
.leadership {
  background: 
    linear-gradient(rgba(220, 20, 60, 0.1), rgba(0, 40, 104, 0.1)),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  position: relative;
}

.leadership::before {
  content: '⚔️';
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 8rem;
  opacity: 0.1;
  animation: weaponSpin 8s linear infinite;
}

@keyframes weaponSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.leader-profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

.leader-image {
  width: 100%;
  max-width: 500px;
  height: 500px;
  background: var(--american-gradient);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: var(--tactical-black);
  position: relative;
  overflow: hidden;
  border: 5px solid var(--gold-star);
  box-shadow: var(--box-shadow-warrior);
}

.leader-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.1) 10px,
      rgba(255, 255, 255, 0.1) 20px
    );
  animation: march 2s linear infinite;
}

@keyframes march {
  0% { transform: translateX(-20px); }
  100% { transform: translateX(20px); }
}

.leader-info h3 {
  font-family: var(--font-warrior);
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.leader-title {
  color: var(--gold-star);
  font-family: var(--font-command);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.leader-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(10, 10, 10, 0.8);
  border: 2px solid var(--liberty-blue);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--american-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
  border-color: var(--gold-star);
}

.stat-item:hover::before {
  opacity: 0.1;
}

.stat-number {
  font-family: var(--font-warrior);
  font-size: 2.5rem;
  color: var(--freedom-red);
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
}

.stat-label {
  color: var(--eagle-white);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

/* COMMUNITY SECTION - UNITED WE STAND */
.community {
  background: 
    linear-gradient(rgba(0, 40, 104, 0.15), rgba(220, 20, 60, 0.15)),
    radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  position: relative;
}

.community::before {
  content: '🇺🇸';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  opacity: 0.05;
  animation: flagWave 6s ease-in-out infinite;
}

/* CONTESTS SECTION - BATTLE ARENA */
.contests {
  background: 
    linear-gradient(rgba(255, 69, 0, 0.2), rgba(139, 0, 0, 0.2)),
    radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
  position: relative;
}

.contest-teaser {
  text-align: center;
  padding: 5rem 3rem;
  background: rgba(10, 10, 10, 0.9);
  border: 3px solid var(--victory-orange);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.contest-teaser::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(
      from 0deg,
      var(--freedom-red),
      var(--victory-orange),
      var(--gold-star),
      var(--freedom-red)
    );
  animation: battleSpin 4s linear infinite;
  opacity: 0.1;
}

@keyframes battleSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contest-title {
  font-family: var(--font-warrior);
  font-size: clamp(2.5rem, 6vw, 4rem);
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  z-index: 2;
  animation: battleCry 2s ease-in-out infinite alternate;
}

@keyframes battleCry {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.coming-soon {
  font-family: var(--font-command);
  font-size: 2rem;
  color: var(--gold-star);
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  animation: comingSoonPulse 1.5s ease-in-out infinite;
}

@keyframes comingSoonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* SOCIAL LINKS - COMMAND CENTER */
.social-links {
  background: rgba(10, 10, 10, 0.95);
  border-top: 3px solid var(--freedom-red);
  border-bottom: 3px solid var(--liberty-blue);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.social-card {
  background: var(--warrior-gradient);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid var(--steel-gray);
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--american-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--gold-star);
  box-shadow: 
    0 20px 40px rgba(220, 20, 60, 0.4),
    0 0 30px rgba(255, 215, 0, 0.3);
}

.social-card:hover::before {
  opacity: 0.1;
}

.social-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--gold-star);
  position: relative;
  z-index: 2;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.social-card h4 {
  color: var(--freedom-red);
  font-family: var(--font-warrior);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.social-link {
  color: var(--eagle-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--gold-star);
  text-shadow: 0 0 10px var(--gold-star);
}

/* FOOTER - FINAL SALUTE */
.footer {
  background: var(--tactical-black);
  padding: 4rem 0 2rem;
  border-top: 5px solid var(--american-gradient);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--american-gradient);
  animation: patriotPulse 3s ease-in-out infinite;
}

@keyframes patriotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.footer-content {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-warrior);
  font-size: 3rem;
  background: var(--american-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.footer-tagline {
  color: var(--gold-star);
  font-family: var(--font-command);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--eagle-white);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--freedom-red);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--freedom-red);
  text-shadow: 0 0 10px var(--freedom-red);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 2px solid var(--gunmetal);
  padding-top: 2rem;
  text-align: center;
  color: var(--steel-gray);
  font-size: 1rem;
}

/* RESPONSIVE DESIGN - MOBILE WARRIORS */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-title::before,
  .hero-title::after {
    display: none;
  }
  
  .leader-profile {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .leader-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
    letter-spacing: 2px;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-freedom { color: var(--freedom-red); }
.text-liberty { color: var(--liberty-blue); }
.text-eagle { color: var(--eagle-white); }
.text-gold { color: var(--gold-star); }

.bg-tactical { background-color: var(--tactical-black); }
.bg-gunmetal { background-color: var(--gunmetal); }
.bg-warrior { background: var(--warrior-gradient); }

.font-warrior { font-family: var(--font-warrior); }
.font-tactical { font-family: var(--font-tactical); }
.font-command { font-family: var(--font-command); }
.font-tech { font-family: var(--font-tech); }

.uppercase { text-transform: uppercase; }
.bold { font-weight: 700; }
.extra-bold { font-weight: 900; }

/* SPECIAL EFFECTS */
.pulse { animation: pulse 2s infinite; }
.glow { box-shadow: var(--glow-american); }
.american-text { 
  background: var(--american-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* SCROLL ANIMATIONS */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}