/* Redmoor Theme for redmoor.html */
body.redmoor-theme {
  background: linear-gradient(180deg, #2a0c0c 0%, #1a0000 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  color: #fff;
  font-family: 'Bookman', serif;
  margin: 0;
  padding: 0;
}

.redmoor-theme .navbar-redmoor {
  background: linear-gradient(90deg, #1a1a1a 0%, #ff3333 100%);
  box-shadow: 0 0 15px rgba(255, 51, 51, 0.7);
}

.redmoor-theme .navbar-redmoor .navbar-brand,
.redmoor-theme .navbar-redmoor .nav-link {
  color: #fff;
  font-family: 'Luminari', fantasy;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 5px rgba(255, 51, 51, 0.5);
}

.redmoor-theme .navbar-redmoor .navbar-brand:hover,
.redmoor-theme .navbar-redmoor .nav-link:hover {
  color: #ff6666;
}

.redmoor-theme .navbar-redmoor .nav-link.active {
  color: #ff3333;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 51, 51, 0.7);
}

.redmoor-theme .container {
  padding: 20px;
  background: rgba(20, 0, 0, 0.9);
  margin: 20px auto;
  border: 3px solid #ff3333;
  box-shadow: 0 0 20px rgba(255, 51, 51, 0.8), inset 0 0 10px rgba(255, 51, 51, 0.3);
  border-radius: 10px;
}

.redmoor-theme .redmoor-banner {
  position: relative;
  margin-bottom: 20px;
  border: 2px solid #ff3333;
  box-shadow: 0 0 15px rgba(255, 51, 51, 0.7);
  border-radius: 5px;
  overflow: hidden;
}

.redmoor-theme .redmoor-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.redmoor-theme .redmoor-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 51, 51, 0.2);
  z-index: 1;
}

.redmoor-theme h1 {
  color: #ff3333;
  font-family: 'Luminari', fantasy;
  font-size: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 51, 51, 0.7);
}

.redmoor-theme p {
  color: #fff;
  font-family: 'Bookman', serif;
  font-size: 1.2rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.redmoor-theme .btn-lore {
  display: inline-block;
  background: rgba(255, 51, 51, 0.3);
  color: #ff3333;
  font-family: 'Nosifer', cursive;
  font-size: 1.2rem;
  padding: 10px 20px;
  border: 2px solid #ff3333;
  border-radius: 5px;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 51, 51, 0.7);
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.redmoor-theme .btn-lore:hover {
  background: rgba(255, 51, 51, 0.5);
  box-shadow: 0 0 15px rgba(255, 51, 51, 0.8);
  transform: translateY(-2px);
  color: #ff6666;
}

.redmoor-theme .lore-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.redmoor-theme .section-divider {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff3333 50%, transparent);
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.7);
  margin: 40px 0;
}

.redmoor-theme .deity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.redmoor-theme .deity-card {
  background: rgba(20, 0, 0, 0.8);
  padding: 15px;
  border: 2px solid #ff3333;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
  text-align: center;
}

.redmoor-theme .deity-card h3 {
  color: #ff3333;
  font-family: 'Luminari', fantasy;
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 51, 51, 0.7);
  margin-bottom: 5px;
}

.redmoor-theme .deity-card h4 {
  color: #ffffff;
  font-family: 'Bookman', serif;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 10px;
}

.redmoor-theme .deity-card p {
  color: #ffffff;
  font-family: 'Bookman', serif;
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .redmoor-theme .deity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .redmoor-theme .deity-grid {
    grid-template-columns: 1fr;
  }
}

.redmoor-theme .lore-section {
  background: rgba(20, 0, 0, 0.8);
  padding: 15px;
  margin: 20px 0;
  border: 2px solid #ff3333;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.redmoor-theme .lore-section h2 {
  color: #ff3333;
  font-family: 'Luminari', fantasy;
  font-size: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 51, 51, 0.7);
}
/* Red Theme for index.html, Roll_Tables/index.html */
body.red-theme {
  background: linear-gradient(180deg, #2a0c0c 0%, #1a0000 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  color: #fff;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.red-theme .navbar-red {
  background: linear-gradient(90deg, #1a1a1a 0%, #ff3333 100%);
  box-shadow: 0 2px 10px rgba(255, 51, 51, 0.5);
}

.red-theme .navbar-red .navbar-brand,
.red-theme .navbar-red .nav-link {
  color: #fff;
  font-family: 'Luminari', fantasy;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.red-theme .navbar-red .nav-link:hover {
  color: #ff6666;
}

.red-theme .navbar-red .nav-link.active {
  color: #ff3333;
  font-weight: bold;
}

.red-theme .container {
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  margin: 20px auto;
}

.red-theme h1 {
  color: #ff3333;
  font-family: 'Luminari', fantasy;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 51, 51, 0.7);
  font-size: 2.5rem;
}

.red-theme h3 {
  color: #ff3333;
  font-family: 'Luminari', fantasy;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.red-theme p {
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.red-theme .campaign-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.red-theme .campaign-link {
  background: rgba(255, 51, 51, 0.5);
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  padding: 15px 30px;
  border: 2px solid #ff3333;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.red-theme .campaign-link::before {
  content: attr(data-icon);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  opacity: var(--icon-opacity, 0);
  transition: opacity 0.3s;
}

.red-theme .campaign-link:hover {
  background: rgba(255, 51, 51, 0.8);
  box-shadow: 0 0 20px rgba(255, 51, 51, 0.9);
  transform: translateY(-5px);
  color: #fff;
}

.red-theme .tavern-section {
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.5);
  border-top: 2px solid #ff3333;
  border-bottom: 2px solid #ff3333;
}

.red-theme .tavern-section .lead {
  color: #ff6666;
  font-family: 'Courier New', monospace;
  font-size: 1.4rem;
}

/* Hero Section for index.html */
.hero-section {
  background: url('images/ravenwood.jpg') center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 51, 51, 0.2);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Luminari', fantasy;
  font-size: 4rem;
  color: #ff3333;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  color: #ff6666;
}

/* Slayer's Inc. Theme for slayersinc.html, character.html, flux.html, loot.html */
body.slayersinc-theme {
  background: #1a1a1a;
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.slayersinc-theme .navbar-slayersinc {
  background: linear-gradient(90deg, #1a1a1a 0%, #00ffcc 100%);
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
}

.slayersinc-theme .navbar-slayersinc .navbar-brand,
.slayersinc-theme .navbar-slayersinc .nav-link {
  color: #fff;
  font-family: 'Luminari', fantasy;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.slayersinc-theme .navbar-slayersinc .nav-link:hover {
  color: #99ffeb;
}

.slayersinc-theme .navbar-slayersinc .nav-link.active {
  color: #00ffcc;
  font-weight: bold;
}

.slayersinc-theme .container {
  padding: 30px;
  background: rgba(0, 0, 0, 0.7);
  margin: 20px auto;
  border: 2px solid #00ffcc;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.slayersinc-theme h1, .slayersinc-theme h2, .slayersinc-theme h3 {
  color: #00ffcc;
  font-family: 'Luminari', fantasy;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 255, 204, 0.5);
}

.slayersinc-theme h4, .slayersinc-theme h5 {
  color: #00ffcc;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.slayersinc-theme p {
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.slayersinc-theme .character-img-oval {
  width: 400px;
  height: 300px;
  object-fit: contain;
  background-color: #1a1a1a;
  border-radius: 10px;
  border: 2px solid #00ffcc;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
  margin-bottom: 25px;
}

.slayersinc-theme .btn-character {
  background: rgba(0, 255, 204, 0.2);
  color: #00ffcc;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  padding: 8px 15px;
  border: 1px solid #00ffcc;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, box-shadow 0.3s;
}

.slayersinc-theme .btn-character:hover {
  background: rgba(0, 255, 204, 0.4);
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.7);
}

.slayersinc-theme .loot-button {
  background: #00ffcc; /* Keep the bright cyan background */
  color: #1a1a1a; /* Dark gray text for high contrast */
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: bold; /* Bolder text for emphasis */
  padding: 10px 20px;
  border: 2px solid #00ffcc;
  border-radius: 5px;
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); /* Subtle shadow for readability */
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.7);
  transition: background 0.3s, box-shadow 0.3s, color 0.3s;
}

.slayersinc-theme .loot-button:hover {
  background: #00ccaa; /* Slightly darker cyan on hover */
  color: #000; /* Black text on hover for maximum contrast */
  box-shadow: 0 0 20px rgba(0, 255, 204, 1);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7); /* Slightly stronger shadow on hover */
}

.slayersinc-theme .loot-section {
  padding: 30px 0; /* Increased for spacing */
}

.slayersinc-theme .loot-entry {
  background: rgba(0, 0, 0, 0.8);
  padding: 15px;
  border: 1px solid #00ffcc;
  border-radius: 5px;
  margin-bottom: 20px;
  max-height: 600px; /* Scrollable for future entries */
  overflow-y: auto;
}

.slayersinc-theme .list-group-item {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: 'Courier New', monospace;
  border: 1px solid #00ffcc;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.slayersinc-theme .loot-table {
  background: rgba(0, 255, 204, 0.1); /* Subtle green background */
  border: 1px solid #00ffcc;
  margin-bottom: 20px;
}

.slayersinc-theme .loot-table thead {
  background: #00ffcc;
  color: #1a1a1a;
  text-shadow: none;
}

.slayersinc-theme .loot-table th, .slayersinc-theme .loot-table td {
  border: 1px solid #00ffcc;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  padding: 8px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.slayersinc-theme .loot-table tbody tr {
  background: rgba(0, 255, 204, 0.1); /* Subtle green for rows */
  color: #fff;
}

/* Flux Fix for character.html, flux.html, loot.html */
body.slayersinc-theme.character-page,
body.slayersinc-theme.flux-page,
body.slayersinc-theme.flux-page .flux-banner,
body.slayersinc-theme.flux-page .container,
body.slayersinc-theme.loot-page,
body.slayersinc-theme.loot-page .container {
  background: #1a1a1a;
  background-image: none;
}

/* Rustock Theme for rustock.html */
body.rustock-theme {
  background: linear-gradient(180deg, #4a3728 0%, #2e1f14 100%);
  color: #fff;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.rustock-theme .navbar-rustock {
  background: linear-gradient(90deg, #1a1a1a 0%, #8b5a2b 100%);
  box-shadow: 0 2px 10px rgba(139, 90, 43, 0.5);
}

.rustock-theme .navbar-rustock .navbar-brand,
.rustock-theme .navbar-rustock .nav-link {
  color: #fff;
  font-family: 'Luminari', fantasy;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.rustock-theme .navbar-rustock .nav-link:hover {
  color: #d4a373;
}

.rustock-theme .navbar-rustock .nav-link.active {
  color: #8b5a2b;
  font-weight: bold;
}

.rustock-theme .container {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border: 2px solid #8b5a2b;
  border-radius: 10px;
  margin: 20px auto;
}

.rustock-theme h1, .rustock-theme h2, .rustock-theme h3 {
  color: #8b5a2b;
  font-family: 'Luminari', fantasy;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.rustock-theme p {
  color: #fff;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  font-size: 1.2rem;
}

.rustock-theme .hero-section {
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.7);
  border-top: 2px solid #8b5a2b;
  border-bottom: 2px solid #8b5a2b;
}

.rustock-theme .hero-title {
  font-family: 'Luminari', fantasy;
  font-size: 4rem;
  color: #8b5a2b;
  margin-bottom: 20px;
}

.rustock-theme .hero-subtitle {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  color: #d4a373;
}

.rustock-theme .character-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rustock-theme .character-img-oval {
  width: 150px; /* Adjusted size */
  height: 150px; /* Adjusted size */
  border-radius: 50%; /* Makes it circular/oval */
  object-fit: cover; /* Ensures image fits without distortion */
  display: block;
  margin: 0 auto 10px; /* Centers and maintains spacing */
  border: 2px solid #8b5a2b; /* Matches Rustock theme */
  box-shadow: 0 0 10px rgba(139, 90, 43, 0.5); /* Matches existing shadow */
}

.rustock-theme .btn-character {
  background: rgba(139, 90, 43, 0.2);
  color: #8b5a2b;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  padding: 8px 15px;
  border: 1px solid #8b5a2b;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.rustock-theme .btn-character:hover {
  background: rgba(139, 90, 43, 0.4);
  text-decoration: none;
}

.rustock-theme .container,
.rustock-theme .container-fluid {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border: 2px solid #8b5a2b;
  border-radius: 10px;
  margin: 20px auto;
}

.rustock-theme .container,
.rustock-theme .container-fluid {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border: 2px solid #8b5a2b;
  border-radius: 10px;
  margin: 20px auto;
}

.rustock-theme .characters-container {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px; /* 10px padding for text ~10px from edges */
  border: 2px solid #8b5a2b;
  border-radius: 10px;
  margin: 20px auto;
}

.rustock-theme .container,
.rustock-theme .container-fluid {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border: 2px solid #8b5a2b;
  border-radius: 10px;
  margin: 20px auto;
}

.rustock-theme .characters-container {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border: 2px solid #8b5a2b;
  border-radius: 10px;
  margin: 20px auto;
}

.rustock-theme .npc-container {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border: 2px solid #8b5a2b;
  border-radius: 10px;
  margin: 20px auto;
}

.rustock-theme .row.justify-content-center .character-entry {
  margin: 0 auto 10px auto;
  width: 100%;
}
.rustock-theme .row.justify-content-center .character-entry {
  margin: 0 auto 10px auto; /* Tight image spacing */
  width: 100%; /* Full column width, no max-width */
}
/* Sci-Fi Theme for scottgame.html */
body.scifi-theme {
  background: #1a1a1a;
  position: relative;
  overflow-x: hidden;
}

.scifi-theme .navbar-scifi {
  background: linear-gradient(90deg, #1a1a1a 0%, #3399ff 100%);
  box-shadow: 0 2px 10px rgba(51, 153, 255, 0.5);
}

.scifi-theme .navbar-scifi .navbar-brand,
.scifi-theme .navbar-scifi .nav-link {
  color: #fff;
  font-family: 'Luminari', fantasy;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.scifi-theme .navbar-scifi .nav-link:hover {
  color: #66b3ff;
}

.scifi-theme .navbar-scifi .nav-link.active {
  color: #3399ff;
  font-weight: bold;
}

.scifi-theme .container {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border: 2px solid #3399ff;
  border-radius: 10px;
  margin: 20px auto;
}

.scifi-theme h1, .scifi-theme h2, .scifi-theme h3 {
  color: #3399ff;
  font-family: 'Luminari', fantasy;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.scifi-theme p {
  color: #fff;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  font-size: 1.2rem;
}

.scifi-theme .disclaimer-text {
  font-size: 1.4rem;
  color: #66b3ff;
  border: 1px solid #3399ff;
  padding: 15px;
  border-radius: 5px;
}

.scifi-theme .scifi-banner {
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.7);
  border-top: 2px solid #3399ff;
  border-bottom: 2px solid #3399ff;
}

.scifi-theme .scifi-gear-list {
  list-style: none;
  padding: 0;
}

.scifi-theme .scifi-gear-list li {
  background: rgba(0, 0, 0, 0.7);
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #3399ff;
  border-radius: 5px;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.scifi-theme .scifi-gear-list li strong {
  color: #3399ff;
}

.scifi-theme .character-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scifi-theme .character-img-oval {
  width: 256px;
  height: 192px;
  background: linear-gradient(45deg, #3399ff, #66b3ff);
  border-radius: 10px;
  border: 2px solid #3399ff;
  box-shadow: 0 0 10px rgba(51, 153, 255, 0.5);
  margin-bottom: 10px;
}

.scifi-theme .btn-character {
  background: rgba(51, 153, 255, 0.2);
  color: #3399ff;
  font-family: 'Courier New', monospace;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  padding: 8px 15px;
  border: 1px solid #3399ff;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.scifi-theme .btn-character:hover {
  background: rgba(51, 153, 255, 0.4);
  text-decoration: none;
}

.scifi-theme .scifi-button {
  background: rgba(51, 153, 255, 0.3);
  color: #fff;
  font-family: 'Courier New', monospace;
  padding: 10px 20px;
  border: 2px solid #3399ff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s, box-shadow 0.3s;
}

.scifi-theme .scifi-button:hover {
  background: rgba(51, 153, 255, 0.5);
  box-shadow: 0 0 15px rgba(51, 153, 255, 0.8);
}

.scifi-theme .small {
  font-size: 0.9rem;
  color: #66b3ff;
  margin-top: 5px;
}

.scifi-theme .hero-section {
  padding: 50px 0;
  background: rgba(0, 0, 0, 0.7);
  border-top: 2px solid #3399ff;
  border-bottom: 2px solid #3399ff;
}

.scifi-theme .hero-title {
  font-family: 'Luminari', fantasy;
  font-size: 4rem;
  color: #3399ff;
  margin-bottom: 20px;
}

.scifi-theme .hero-subtitle {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  color: #66b3ff;
}

/* Starfield Animation for scottgame.html */
.starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle 5s infinite;
}

@keyframes twinkle {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}

/* Animation Keyframes */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}