/* Realism Game Tuner Styles */

:root {
  --coh-gold: #c0a062;
  --coh-border: #8b7355;
  --coh-bg-dark: #1a1a1a;
  --coh-bg-medium: #2a2a2a;
  --coh-bg-light: #3a3a3a;
  --coh-text: #ffffff;
  --coh-accent: #ffd700;
  --coh-danger: #ff4040;
}

/* Base styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;  
  background: var(--coh-bg-dark);
  color: var(--coh-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Mobile: add margin-top for navbar space */
@media (max-width: 991.98px) {
  body {
    margin-top: 70px;
  }
}

/* Desktop: no padding since navbar is hidden */
@media (min-width: 992px) {
  body {
    padding-top: 0;
  }
}

.military-font {
  font-family: "Orbitron", monospace;
  font-weight: 700;
}

/* Hero section */

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/header.jpg") center/cover;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  z-index: 2;
  text-align: center;
  padding-bottom: 2rem;
  transition: all 0.3s ease;
  opacity: 0;
  animation: heroContentFadeIn 1.2s ease-out 0.3s both;
}

@keyframes heroContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero buttons fade-in effect */
.hero-buttons {
  opacity: 0;
  animation: heroButtonsFadeIn 1s ease-out 0.8s both;
}

@keyframes heroButtonsFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
  animation: logoGlow 3s ease-in-out infinite alternate;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.hero-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
          drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
  animation-play-state: paused;
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
      drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
  }
  to {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
      drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--coh-accent);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  animation: glow 2s ease-in-out infinite alternate;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.hero-title:hover {
  transform: scale(1.01);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 
               0 0 15px var(--coh-accent);
  animation-play-state: paused;
}

@keyframes glow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px var(--coh-accent);
  }
  to {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px var(--coh-accent),
      0 0 30px var(--coh-accent);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--coh-gold);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.hero-subtitle:hover {
  color: var(--coh-accent);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 
               0 0 15px var(--coh-accent);
}

/* Cards and components */

.military-card {
  background: var(--coh-bg-dark);
  border: 2px solid var(--coh-border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.military-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coh-gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
}

.military-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--coh-gold), transparent);
  transform: translateY(-100%);
  transition: transform 0.6s ease 0.2s;
  z-index: 1;
}

.military-card:hover::before {
  transform: translateX(100%);
}

.military-card:hover::after {
  transform: translateY(100%);
}

.military-card:hover {
  border-color: var(--coh-gold);
  box-shadow: 0 12px 35px rgba(192, 160, 98, 0.25), 
              0 0 30px rgba(192, 160, 98, 0.1);
  transform: translateY(-8px) scale(1.02);
}

/* Tactical grid overlay */
.military-card {
  background-image: 
    linear-gradient(rgba(192, 160, 98, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 160, 98, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 0 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.military-card:hover {
  background-image: 
    linear-gradient(rgba(192, 160, 98, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 160, 98, 0.1) 1px, transparent 1px);
}

.military-card h3 {
  color: var(--coh-accent);
  font-family: "Orbitron", monospace;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.military-card h4 {
  color: var(--coh-gold);
  font-family: "Orbitron", monospace;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Buttons */

.btn-military {
  background: var(--coh-bg-medium);
  border: 2px solid var(--coh-border);
  color: var(--coh-gold);
  padding: 12px 30px;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-military:hover {
  background: var(--coh-bg-light);
  border-color: var(--coh-gold);
  color: var(--coh-accent);
  box-shadow: 0 0 15px rgba(192, 160, 98, 0.3);
  transform: translateY(-2px);
}

.btn-military-primary {
  background: var(--coh-gold);
  color: var(--coh-bg-dark);
  border-color: var(--coh-gold);
}

.btn-military-primary:hover {
  background: var(--coh-accent);
  color: var(--coh-bg-dark);
  border-color: var(--coh-accent);
}

/* Typography */

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--coh-accent);
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.feature-icon {
  font-size: 3rem;
  color: var(--coh-gold);
  margin-bottom: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: inline-block;
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(192, 160, 98, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: -1;
}

.military-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--coh-accent);
  text-shadow: 0 0 15px var(--coh-accent);
}

.military-card:hover .feature-icon::before {
  width: 80px;
  height: 80px;
  opacity: 0.6;
}

/* ===== */
/* STATISTICS */
/* ===== */

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

.stat-item {
  background: var(--coh-bg-medium);
  border: 1px solid var(--coh-border);
  border-radius: 5px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--coh-gold);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--coh-accent);
  font-family: "Orbitron", monospace;
}

.stat-label {
  color: var(--coh-gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */

.navbar-military {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.98) 0%,
    rgba(42, 42, 42, 0.95) 100%
  ) !important;
  border-bottom: 3px solid var(--coh-gold);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(192, 160, 98, 0.1);
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: all 0.3s ease;
}

/* Hide main navbar on desktop, show only on mobile */
@media (min-width: 992px) {
  .navbar-military {
    display: none !important;
  }
  
  body {
    padding-top: 0 !important;
  }
}

.navbar-military::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--coh-accent),
    transparent
  );
}

.navbar-military::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--coh-accent),
    transparent
  );
}

.navbar-military.scrolled {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.99) 0%,
    rgba(42, 42, 42, 0.98) 100%
  ) !important;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7), 0 0 40px rgba(192, 160, 98, 0.2);
}

.navbar-brand {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--coh-accent) !important;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.navbar-brand:hover {
  transform: scale(1.05);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px var(--coh-accent);
}

.navbar-logo {
  height: 40px;
  width: auto;
  margin-right: 12px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
  transform: scale(1.1);
}

.nav-link {
  color: var(--coh-gold) !important;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  padding: 0.75rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(192, 160, 98, 0.1),
    transparent
  );
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.nav-link:hover {
  color: var(--coh-accent) !important;
  background: rgba(192, 160, 98, 0.1);
  text-shadow: 0 0 8px var(--coh-accent);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--coh-accent) !important;
  background: rgba(192, 160, 98, 0.15);
  text-shadow: 0 0 8px var(--coh-accent);
  box-shadow: inset 0 0 10px rgba(192, 160, 98, 0.3);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--coh-gold),
    var(--coh-accent),
    var(--coh-gold)
  );
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.navbar-toggler {
  border: 2px solid var(--coh-gold);
  border-radius: 4px;
  padding: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-toggler:hover {
  border-color: var(--coh-accent);
  box-shadow: 0 0 10px rgba(192, 160, 98, 0.3);
}

.navbar-toggler:focus {
  box-shadow: 0 0 15px rgba(192, 160, 98, 0.5);
}

.navbar-toggler.active {
  border-color: var(--coh-accent);
  box-shadow: 0 0 15px rgba(192, 160, 98, 0.5);
}

.navbar-toggler.active .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 215, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24l18-18'/%3e%3c/svg%3e");
  transform: rotate(90deg);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 215, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

/* Mobile-only navbar collapse styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    border-top: 1px solid rgba(192, 160, 98, 0.2) !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translateY(-20px) !important;
    transition: all 0.3s ease-in-out !important;
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    display: block !important;
  }

  .navbar-collapse.show {
    max-height: 500px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    margin-top: 1rem !important;
    padding-top: 1rem !important;
  }

  .navbar-collapse .nav-link {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    transition: all 0.2s ease-out !important;
  }

  .navbar-collapse.show .nav-link {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .navbar-collapse.show .nav-link:nth-child(1) {
    transition-delay: 0.05s !important;
  }
  .navbar-collapse.show .nav-link:nth-child(2) {
    transition-delay: 0.1s !important;
  }
  .navbar-collapse.show .nav-link:nth-child(3) {
    transition-delay: 0.15s !important;
  }
  .navbar-collapse.show .nav-link:nth-child(4) {
    transition-delay: 0.2s !important;
  }
  .navbar-collapse.show .nav-link:nth-child(5) {
    transition-delay: 0.25s !important;
  }
  .navbar-collapse.show .nav-link:nth-child(6) {
    transition-delay: 0.3s !important;
  }

  /* Ensure active state works on mobile */
  .navbar-collapse .nav-link.active {
    color: var(--coh-accent) !important;
    background: rgba(192, 160, 98, 0.15) !important;
    text-shadow: 0 0 8px var(--coh-accent) !important;
    box-shadow: inset 0 0 10px rgba(192, 160, 98, 0.3) !important;
  }

  .navbar-collapse .nav-link.active::after {
    width: 80% !important;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    max-height: none;
    overflow: visible;
    opacity: 1;
    transform: none;
    transition: none;
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
  }

  .navbar-collapse.show {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  .navbar-collapse .nav-link {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .navbar-collapse.show .nav-link {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== */
/* TABLES */
/* ===== */

.table-military {
  background: var(--coh-bg-dark);
  border: 1px solid var(--coh-border);
  border-radius: 5px;
  overflow: hidden;
}

.table-military thead th {
  background: var(--coh-bg-medium);
  color: var(--coh-accent);
  border-bottom: 2px solid var(--coh-border);
  font-family: "Orbitron", monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-military tbody td {
  background: var(--coh-bg-dark);
  color: var(--coh-text);
  border-bottom: 1px solid var(--coh-border);
}

.table-military tbody tr:hover {
  background: var(--coh-bg-medium);
}

/* ===== */
/* FOOTER */
/* ===== */

.footer-military {
  background: var(--coh-bg-dark);
  border-top: 2px solid var(--coh-border);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  text-align: center;
}

.footer-military h5 {
  color: var(--coh-accent);
  font-family: "Orbitron", monospace;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-military a {
  color: var(--coh-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-military a:hover {
  color: var(--coh-accent);
}

.footer-military .col-lg-4 {
  text-align: center;
}

.footer-military .list-unstyled {
  text-align: center;
}

.footer-military .list-unstyled li {
  margin-bottom: 0.5rem;
}

/* ===== */
/* RATE FAVORITE GIF */
/* ===== */

.rate-favorite-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}

.rate-favorite-gif {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rate-favorite-gif:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile responsive for rate-favorite GIF */
@media (max-width: 768px) {
  .rate-favorite-gif {
    max-width: 90%;
  }

  .rate-favorite-container {
    margin: 1rem 0;
  }
}

@media (max-width: 576px) {
  .rate-favorite-gif {
    max-width: 85%;
  }

  .rate-favorite-container {
    margin: 0.75rem 0;
  }
}

/* ===== */
/* RELIC LOGO */
/* ===== */

.relic-logo-container {
  margin-top: 1.5rem;
  padding: 1rem 0;
}

.relic-logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.relic-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7));
}

/* Mobile responsive for Relic logo */
@media (max-width: 768px) {
  .relic-logo {
    height: 35px;
  }

  .relic-logo-container {
    margin-top: 1rem;
    padding: 0.75rem 0;
  }
}

@media (max-width: 576px) {
  .relic-logo {
    height: 30px;
  }

  .relic-logo-container {
    margin-top: 0.75rem;
    padding: 0.5rem 0;
  }
}

/* ===== */
/* SUPPORT LINKS */
/* ===== */

.support-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-links-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.support-link {
  display: flex;
  align-items: center;
  color: var(--coh-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.support-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 160, 98, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.support-link:hover::before {
  left: 100%;
}

.support-link i {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  width: 24px;
  text-align: center;
}

.support-link span {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.support-link:hover {
  color: var(--coh-accent);
  background: rgba(192, 160, 98, 0.1);
  border-color: var(--coh-gold);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(192, 160, 98, 0.2);
}

.support-link:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px currentColor);
}

/* Discord specific styling */
.discord-link:hover {
  color: #5865f2;
  background: rgba(88, 101, 242, 0.1);
  border-color: #5865f2;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-link:hover i {
  color: #5865f2;
  filter: drop-shadow(0 0 8px #5865f2);
}

/* Steam specific styling */
.steam-link:hover {
  color: #1b2838;
  background: rgba(27, 40, 56, 0.2);
  border-color: #1b2838;
  box-shadow: 0 4px 15px rgba(27, 40, 56, 0.4);
}

.steam-link:hover i {
  color: #1b2838;
  filter: drop-shadow(0 0 8px #1b2838);
}

/* Documentation and Bug Reports styling */
.support-link:not(.discord-link):not(.steam-link):hover {
  color: var(--coh-accent);
  background: rgba(192, 160, 98, 0.1);
  border-color: var(--coh-gold);
  box-shadow: 0 4px 15px rgba(192, 160, 98, 0.2);
}

.support-link:not(.discord-link):not(.steam-link):hover i {
  color: var(--coh-accent);
  filter: drop-shadow(0 0 8px var(--coh-accent));
}

/* Mobile responsive */
@media (max-width: 768px) {
  .support-links-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .support-link {
    justify-content: center;
    padding: 0.5rem;
  }

  .support-link i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
  }

  .support-link span {
    font-size: 0.8rem;
  }
}

/* ===== */
/* GAME MODE CARDS */
/* ===== */

.gamemode-card {
  background: var(--coh-bg-dark);
  border: 2px solid var(--coh-border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.gamemode-card:hover {
  border-color: var(--coh-gold);
  box-shadow: 0 8px 25px rgba(192, 160, 98, 0.2);
}

.gamemode-title {
  color: var(--coh-accent);
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.gamemode-description {
  color: var(--coh-text);
  margin-bottom: 1rem;
}

.gamemode-features {
  list-style: none;
  padding: 0;
}

.gamemode-features li {
  color: var(--coh-gold);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.gamemode-features li:before {
  content: "▶";
  color: var(--coh-accent);
  position: absolute;
  left: 0;
}

/* ===== */
/* RESOURCE ICONS */
/* ===== */

.resource-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== */
/* CUSTOM ANIMATIONS */
/* ===== */

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 5px var(--coh-gold), 0 0 10px var(--coh-gold),
      0 0 15px var(--coh-gold);
  }
  50% {
    box-shadow: 0 0 10px var(--coh-gold), 0 0 20px var(--coh-gold),
      0 0 30px var(--coh-gold);
  }
}

@keyframes slide-in-left {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-up {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: var(--coh-gold);
  }
}

/* ===== */
/* ENHANCED HOVER EFFECTS */
/* ===== */

.btn-military {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-military::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 160, 98, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-military:hover::before {
  left: 100%;
}

.btn-military:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(192, 160, 98, 0.4), 
              0 0 20px rgba(192, 160, 98, 0.2);
  border-color: var(--coh-accent);
  text-shadow: 0 0 8px var(--coh-accent);
}

.btn-military:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 6px 20px rgba(192, 160, 98, 0.3);
  transition: all 0.1s ease;
}

/* Tactical button press effect */
.btn-military:active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(192, 160, 98, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: tactical-pulse 0.3s ease-out;
}

@keyframes tactical-pulse {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

.card-military:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--coh-gold);
}

.feature-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(192, 160, 98, 0.2);
}

/* ===== */
/* ENHANCED NAVIGATION */
/* ===== */

.navbar-brand {
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--coh-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

/* ===== */
/* ENHANCED HERO SECTION */
/* ===== */

.hero-logo {
  animation: pulse-glow 2s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
          drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
}

.hero-title {
  animation: slide-in-left 1s ease-out;
  transition: all 0.3s ease;
}

.hero-title:hover {
  transform: scale(1.01);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 
               0 0 15px var(--coh-accent);
}

.hero-subtitle {
  animation: slide-in-right 1s ease-out 0.3s both;
  transition: all 0.3s ease;
}

.hero-subtitle:hover {
  color: var(--coh-accent);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 
               0 0 15px var(--coh-accent);
}

.hero-buttons {
  animation: fade-in-up 1s ease-out 0.6s both;
}

/* Tactical HUD elements */
.hero-section {
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(192, 160, 98, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 160, 98, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: tactical-scan 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes tactical-scan {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 50px 50px, 50px 50px;
  }
}

/* Command center indicators removed per user request */

/* Steam stats */

.steam-stats {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: steamStatsFadeIn 1s ease-out 0.5s both;
}

@keyframes steamStatsFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.steam-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.steam-stat-item {
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid var(--coh-gold);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.steam-stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 160, 98, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.steam-stat-item:hover::before {
  left: 100%;
}

.steam-stat-item:hover {
  border-color: var(--coh-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(192, 160, 98, 0.3);
}

.steam-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--coh-accent);
  font-family: "Orbitron", monospace;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.steam-stat-item:hover .steam-stat-number {
  transform: scale(1.1);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px var(--coh-accent);
}

.steam-stat-label {
  color: var(--coh-gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.steam-stat-item:hover .steam-stat-label {
  color: var(--coh-accent);
}

/* Loading spinner */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--coh-gold);
}

.loading-spinner i {
  animation: spin 1s linear infinite;
}

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

/* Mobile responsive for Steam stats */
@media (max-width: 768px) {
  .steam-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .steam-stat-item {
    padding: 1rem 0.5rem;
  }

  .steam-stat-number {
    font-size: 1.5rem;
  }

  .steam-stat-label {
    font-size: 0.8rem;
  }

  /* Disable tactical cursor on mobile */
  .tactical-cursor {
    display: none;
  }

  /* Reduce animation intensity on mobile */
  .military-card:hover {
    transform: translateY(-4px) scale(1.01);
  }

  .btn-military:hover {
    transform: translateY(-2px) scale(1.01);
  }

  /* Adjust status indicators for mobile */
  .status-indicator {
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .steam-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Further reduce animations on small screens */
  .hero-logo:hover {
    transform: scale(1.02);
  }

  .military-card:hover {
    transform: translateY(-2px);
  }

  /* Hide status indicators on very small screens */
  .status-indicator {
    display: none;
  }
}

/* ===== */
/* ENHANCED FEATURES SECTION */
/* ===== */

.feature-icon {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--coh-accent);
}

.feature-card:hover .feature-title {
  color: var(--coh-gold);
}

/* ===== */
/* ENHANCED GAMEMODES SECTION */
/* ===== */

.gamemode-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gamemode-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 160, 98, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.gamemode-card:hover::before {
  left: 100%;
}

.gamemode-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(192, 160, 98, 0.2);
}

/* ===== */
/* ENHANCED STATISTICS SECTION */
/* ===== */

.stat-card {
  transition: all 0.3s ease;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-number {
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  color: var(--coh-accent);
  transform: scale(1.1);
}

/* ===== */
/* ENHANCED FOOTER */
/* ===== */

.footer-link {
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: var(--coh-gold);
  transition: width 0.3s ease;
}

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

.footer-link:hover {
  color: var(--coh-gold);
  transform: translateX(5px);
}

/* ===== */
/* ENHANCED RESPONSIVE DESIGN */
/* ===== */

@media (max-width: 768px) {
  .hero-logo {
    max-width: 200px;
    height: auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .feature-card {
    margin-bottom: 1.5rem;
  }

  .gamemode-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-logo {
    max-width: 150px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-military {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ===== */
/* ENHANCED SCROLL ANIMATIONS */
/* ===== */

.scroll-animate {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate {
  opacity: 1;
}

/* Staggered animation delays for multiple elements */
.scroll-animate:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate:nth-child(5) { transition-delay: 0.5s; }

/* Tactical reveal animations */
.tactical-reveal {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tactical-reveal.animate {
  opacity: 1;
  transform: scale(1);
}

/* Command center slide-in */
.command-slide {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.command-slide.animate {
  opacity: 1;
}

/* Mission briefing fade */
.mission-fade {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mission-fade.animate {
  opacity: 1;
}

/* ===== */
/* ENHANCED LOADING STATES */
/* ===== */

.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ===== */
/* ENHANCED CUSTOM SCROLLBAR */
/* ===== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--coh-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--coh-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--coh-accent);
}

/* ===== */
/* ENHANCED SELECTION COLORS */
/* ===== */

::selection {
  background: var(--coh-gold);
  color: var(--coh-bg-dark);
}

::-moz-selection {
  background: var(--coh-gold);
  color: var(--coh-bg-dark);
}

/* ===== */
/* ENHANCED FOCUS STATES */
/* ===== */

.btn-military:focus,
.nav-link:focus,
.footer-link:focus {
  outline: 2px solid var(--coh-gold);
  outline-offset: 2px;
}

/* ===== */
/* TACTICAL CURSOR */
/* ===== */

.tactical-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--coh-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease;
  background: rgba(192, 160, 98, 0.1);
  backdrop-filter: blur(2px);
}

.tactical-cursor.active {
  width: 40px;
  height: 40px;
  border-color: var(--coh-accent);
  background: rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 20px var(--coh-accent);
}

.cursor-hover {
  position: relative;
}

/* ===== */
/* TACTICAL RIPPLE EFFECT */
/* ===== */

.tactical-ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 160, 98, 0.3) 0%, transparent 70%);
  transform: scale(0);
  animation: tactical-ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes tactical-ripple-animation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* ===== */
/* STATUS INDICATORS */
/* ===== */

.status-indicator {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: var(--coh-bg-dark);
  border: 2px solid var(--coh-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  color: var(--coh-accent);
  font-size: 0.8rem;
  z-index: 1040;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(192, 160, 98, 0.3);
  opacity: 1;
  visibility: visible;
  animation: statusIndicatorFadeIn 0.5s ease-out;
}

/* Hide status indicators on mobile */
@media (max-width: 991.98px) {
  .status-indicator {
    display: none !important;
  }
}

@keyframes statusIndicatorFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.status-indicator:hover {
  transform: scale(1.1);
  border-color: var(--coh-accent);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

/* ===== */
/* SECTION NAVIGATION MENU */
/* ===== */

.section-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.section-nav.show {
  opacity: 1;
  visibility: visible;
}

.section-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid var(--coh-border);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.section-nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(192, 160, 98, 0.1), transparent);
  transition: left 0.5s ease;
}

.section-nav-item:hover::before {
  left: 100%;
}

.section-nav-item:hover {
  border-color: var(--coh-gold);
  background: rgba(42, 42, 42, 0.95);
  transform: translateX(-5px);
  box-shadow: 0 4px 15px rgba(192, 160, 98, 0.2);
}

.section-nav-item.active {
  border-color: var(--coh-accent);
  background: rgba(192, 160, 98, 0.1);
  box-shadow: 0 0 20px rgba(192, 160, 98, 0.3);
}

.nav-number {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--coh-gold);
  min-width: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-label {
  font-size: 0.8rem;
  color: var(--coh-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.section-nav-item:hover .nav-number {
  color: var(--coh-accent);
  transform: scale(1.1);
}

.section-nav-item:hover .nav-label {
  color: var(--coh-accent);
}

.section-nav-item.active .nav-number {
  color: var(--coh-accent);
  text-shadow: 0 0 8px var(--coh-accent);
}

.section-nav-item.active .nav-label {
  color: var(--coh-accent);
}

/* Hide on mobile */
@media (max-width: 991.98px) {
  .section-nav {
    display: none;
  }
}

/* ===== */
/* ENHANCED ACCESSIBILITY */
/* ===== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .tactical-cursor {
    display: none;
  }
}

/* ===== */
/* CUSTOM CONTEXT MENU */
/* ===== */

.custom-context-menu {
  position: fixed;
  background: var(--coh-bg-dark);
  border: 2px solid var(--coh-gold);
  border-radius: 8px;
  padding: 0.5rem 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 30px rgba(192, 160, 98, 0.3);
  backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 150px;
  font-family: "Orbitron", monospace;
  overflow: hidden;
}

.custom-context-menu.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.custom-context-menu::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coh-gold), transparent);
  transform: translateX(-100%);
  animation: contextMenuSweep 0.6s ease-out 0.1s both;
  z-index: 1;
}

@keyframes contextMenuSweep {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.context-menu-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--coh-gold);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.context-menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(192, 160, 98, 0.1), transparent);
  transition: left 0.3s ease;
}

.context-menu-item:hover::before {
  left: 100%;
}

.context-menu-item:hover {
  background: rgba(192, 160, 98, 0.1);
  color: var(--coh-accent);
  text-shadow: 0 0 8px var(--coh-accent);
  transform: translateX(5px);
}

.context-menu-item:active {
  background: rgba(192, 160, 98, 0.2);
  transform: translateX(3px) scale(0.98);
}

.context-menu-item i {
  margin-right: 0.75rem;
  font-size: 1rem;
  width: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.context-menu-item:hover i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px currentColor);
}

.context-menu-item.disabled {
  color: var(--coh-border);
  cursor: not-allowed;
  opacity: 0.5;
}

.context-menu-item.disabled:hover {
  background: none;
  color: var(--coh-border);
  text-shadow: none;
  transform: none;
}

.context-menu-item.disabled:hover::before {
  left: -100%;
}

.context-menu-item.disabled:hover i {
  transform: none;
  filter: none;
}

/* Context menu separator */
.context-menu-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--coh-border), transparent);
  margin: 0.25rem 0;
}

/* Discord specific styling in context menu */
.context-menu-item[data-action="discord"]:hover {
  color: #5865f2;
  background: rgba(88, 101, 242, 0.1);
  border-color: #5865f2;
}

.context-menu-item[data-action="discord"]:hover i {
  color: #5865f2;
  filter: drop-shadow(0 0 5px #5865f2);
}

/* Steam specific styling in context menu */
.context-menu-item[data-action="steam"]:hover {
  color: #1b2838;
  background: rgba(27, 40, 56, 0.2);
}

.context-menu-item[data-action="steam"]:hover i {
  color: #1b2838;
  filter: drop-shadow(0 0 5px #1b2838);
}

/* Steam Workshop specific styling */
.context-menu-item[data-action="steam-workshop"]:hover {
  color: var(--coh-accent);
  background: rgba(192, 160, 98, 0.1);
}

.context-menu-item[data-action="steam-workshop"]:hover i {
  color: var(--coh-accent);
  filter: drop-shadow(0 0 5px var(--coh-accent));
}

/* ===== */
/* ENHANCED PRINT STYLES */
/* ===== */

@media print {
  .navbar,
  .footer,
  .btn-military {
    display: none;
  }

  .hero-section {
    background: none !important;
    color: black !important;
  }

  .card-military {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }
}

/* ===== */
/* HERO SECTION DIVIDER */
/* ===== */

.hero-section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--coh-gold);
  box-shadow: 0 0 20px rgba(192, 160, 98, 0.3);
}

.hero-section-divider::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--coh-accent),
    transparent
  );
}

.hero-section-divider::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--coh-accent),
    transparent
  );
}

/* ===== */
/* SECTION DIVIDERS & HEADERS */
/* ===== */

.section-divider {
  position: relative;
  border-top: 3px solid var(--coh-gold);
  border-bottom: 3px solid var(--coh-gold);
  margin-top: 2rem;
  margin-bottom: 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Full screen sections */
.fullscreen-section {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

/* Mobile responsiveness for fullscreen sections */
@media (max-width: 768px) {
  .fullscreen-section {
    min-height: auto;
    height: auto;
    padding: 3rem 0;
  }
  
  .section-divider {
    min-height: auto;
    padding: 2rem 0;
  }
}

.section-divider::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--coh-accent),
    transparent
  );
}

.section-divider::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--coh-accent),
    transparent
  );
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--coh-gold),
    var(--coh-accent),
    var(--coh-gold),
    transparent
  );
  margin: 0 2rem;
  position: relative;
}

.section-line::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 6px;
  background: var(--coh-accent);
  border-radius: 2px;
}

.section-title {
  white-space: nowrap;
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, var(--coh-accent), var(--coh-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  padding: 0 1rem;
}

/* ===== */
/* ENHANCED SECTION VISIBILITY */
/* ===== */

.section-divider {
  box-shadow: 0 0 20px rgba(192, 160, 98, 0.3);
}

.section-header {
  animation: fade-in-up 0.8s ease-out;
}

.section-line {
  animation: expand-line 1s ease-out 0.3s both;
}

@keyframes expand-line {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

/* ===== */
/* RESPONSIVE SECTION HEADERS */
/* ===== */

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    gap: 1rem;
  }

  .section-line {
    width: 100%;
    margin: 0;
    height: 2px;
  }

  .section-line::before {
    display: none;
  }

  .section-title {
    font-size: 2rem;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }

  .section-divider {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .section-line {
    height: 2px;
  }

  .section-line::before {
    display: none;
  }
}