/* /css/v-rising.css – page-specific styles */

/* Top-left moon (same as conan’s vultures) */
.full-moon {
  position: absolute;
  left: 45px;
  top: 0;
  max-height: 300px;
  pointer-events: none;
}
/* Top-right blood-moon */
.blood-moon {
  position: absolute;
  right: 45px;
  top: 0;
  max-height: 300px;
  pointer-events: none;
}

/* Vampire characters */
.v-rising-art-left {
  position: absolute;
  left: -50px;
  bottom: 0;
  max-height: 393px;
  pointer-events: none;
}
.v-rising-art-right {
  position: absolute;
  right: -69px;
  bottom: 0;
  max-height: 410px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .full-moon, .blood-moon, .v-rising-art-left, .v-rising-art-right {
    display: none;
  }
}

/* Subsection headings */
.section-title {
  margin: 10px 0 15px;
  font-size: 1.6em;
  color: #00cccc;
  text-shadow: 0 0 5px #00cccc;
}

/* Status text */
.status-text {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Rules list */
.rules-list {
  margin: 0 auto 30px;
  padding: 0;
  list-style-position: inside;
  text-align: center;
}
.rules-list li {
  margin: 0.3em 0;
}

/* Settings table */
.settings-table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
  max-width: 600px;
}
.settings-table th,
.settings-table td {
  border: 1px solid #00cccc;
  padding: 8px 12px;
  vertical-align: top;
}
.settings-table th {
  background: #00cccc;
  color: #000;
  text-align: center;
  width: 40%;
}

/* Scroll wrapper */
.settings-scroll {
  max-height: 500px;
  overflow-y: auto;
  margin: 0 auto 30px;
  width: 90%;
  max-width: 600px;
  padding-right: 3px;
  box-sizing: content-box;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .settings-scroll {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}
.settings-scroll::-webkit-scrollbar {
  width: 8px;
}
.settings-scroll::-webkit-scrollbar-thumb {
  background: #00cccc;
  border-radius: 4px;
}
