:root {
  --primary-red: #8a1c1c;
  --gold: #c5a059;
  --dark-bg: #0f1115;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--dark-bg);
  color: #e5e5e5;
  overflow-x: hidden;
}

h1,
h2,
h3,
.serif-font {
  font-family: 'Merriweather', serif;
}

.hero-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('/images/bg-img.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.search-panel {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
    url(/images/commander.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gold {
  color: var(--gold);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-red), #a32222);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(138, 28, 28, 0.4);
}

.card-hover {
  transition: all 0.4s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.fade-in {
  animation: fadeIn 1.5s ease-in-out;
}

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

.ribbon {
  background: repeating-linear-gradient(
    45deg,
    #000,
    #000 10px,
    #ff9800 10px,
    #ff9800 20px
  );
}

td a {
  color: blue;
}

td a:hover {
  color: red;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}
