:root {
  --background: #000;
  --foreground: #f8f8f8;
  --accent: #8B0000;
  --accent-light: #DC143C;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: url('../images/vampirebackground.png') center center fixed;
  background-size: cover;
  color: var(--foreground);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

header {
  background-color: rgba(26, 26, 26, 0.95);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--accent);
}

nav a {
  color: var(--foreground);
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  background: url('../images/herovampire.png') center center / cover no-repeat;
  height: 70vh;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  color: var(--accent-light);
  text-shadow: 2px 2px 10px black;
}

.content-box {
  max-width: 1000px;
  background-color: rgba(18, 18, 18, 0.92);
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

section {
  margin-bottom: 2rem;
}

section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

footer {
  background-color: rgba(26, 26, 26, 0.95);
  color: #bbb;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--accent);
}

.story-scene {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  flex-wrap: wrap;
}
 .story-scene {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: 4rem auto;
  gap: 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.story-image {
  flex: 1 1 40%;
  min-width: 280px;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  filter: brightness(90%) contrast(110%);
}

.story-text {
  flex: 1 1 55%;
  min-width: 280px;
  color: var(--foreground);
}

.story-text h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.story-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .story-scene {
    flex-direction: column;
    padding: 1.5rem;
  }

  .story-image, .story-text {
    flex: 1 1 100%;
  }

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 0.5rem 0.75rem;
    font-size: 1rem;
  }

  .hero {
    height: auto;
    padding: 3rem 1rem;
  }

  .hero h2 {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .intro-blurb,
  .content-box {
    margin: 1rem;
    padding: 1.5rem;
    font-size: 1rem;
  }

  footer {
    font-size: 0.9rem;
    padding: 1rem;
  }

.enter-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 6px;
}

.enter-btn:hover {
  background-color: var(--accent-light);
}

img {
  max-width: 100%;
  height: auto;
}

.char-guide {
  padding: 2rem;
  background-color: rgba(18,18,18,0.95);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.char-guide h2 {
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.char-guide h3 {
  margin-top: 2rem;
  color: var(--accent);
}

.char-guide h4 {
  font-weight: normal;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.char-guide p, .char-guide ul {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.char-guide ul {
  padding-left: 1.5rem;
  list-style: disc;
}

.pirate-radio {
  padding: 2rem;
  background-color: rgba(18, 18, 18, 0.95);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  margin-top: 2rem;
}

.pirate-radio h2 {
  color: var(--accent-light);
  margin-bottom: 0.5rem;
  text-align: center;
}

.pirate-radio .tagline {
  color: var(--accent);
  text-align: center;
  font-style: italic;
  margin-bottom: 2rem;
}

.radio-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.radio-image {
  flex: 1 1 40%;
  min-width: 280px;
}

.radio-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  filter: brightness(85%) contrast(110%);
}

.radio-description {
  flex: 1 1 60%;
  color: var(--foreground);
}

.radio-description p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.radio-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.latest-broadcast, .past-broadcasts {
  flex: 1 1 45%;
}

.past-broadcasts ul {
  padding-left: 1rem;
  list-style-type: square;
}

.past-broadcasts li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

audio {
  width: 100%;
  margin-top: 1rem;
  background-color: #000;
}

@media (max-width: 768px) {
  .radio-intro, .radio-content {
    flex-direction: column;
  }

.rules-section {
  background-color: #121212;
  padding: 4rem 2rem;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.rules-content {
  max-width: 900px;
  margin: auto;
  color: var(--foreground);
}

.rules-content h2 {
  color: var(--accent-light);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px black;
}

.rules-tagline {
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
  color: #ccc;
}

.rule-block {
  margin-bottom: 2.5rem;
}

.rule-block h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.rule-block ul {
  padding-left: 1.5rem;
}

.rule-block ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.rule-block.consequences ul li {
  font-weight: bold;
  color: var(--accent-light);
}


}
