/* conan.css — exact copy of the old inline <style> */

/* Top-left: Vulture 1 */
.undead-vulture1 {
  position: absolute;
  left: 100px;
  top: 0;
  max-height: 350px;
  pointer-events: none;
}

/* Top-right: Vulture 2 */
.undead-vulture2 {
  position: absolute;
  right: 100px;
  top: 0;
  max-height: 350px;
  pointer-events: none;
}

/* Left: Undead Woman Conan */
.undead-woman-conan {
  position: absolute;
  left: 10px;
  bottom: 0;
  max-height: 505px;
  pointer-events: none;
}

/* Right: Undead Conan */
.undead-conan {
  position: absolute;
  right: 18px;
  bottom: 0;
  max-height: 505px;
  pointer-events: none;
}

/* Hide all these on mobile */
@media (max-width: 768px) {
  .undead-vulture1,
  .undead-vulture2,
  .undead-woman-conan,
  .undead-conan {
    display: none;
  }
}

/* Section headings */
.section-title {
  margin-top: 10px;
  margin-bottom: 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 auto;
  list-style-position: inside;
  text-align: center;
  padding: 0;
}
.rules-list li {
  margin: 0.3em 0;
}

/* Server settings table */
.settings-table {
  margin: 0 auto 30px auto;
  border-collapse: collapse;
  width: 90%;
  max-width: 600px;
}
.settings-table th,
.settings-table td {
  border: 1px solid #00cccc;
  padding: 8px 12px;
  vertical-align: top;
}
.settings-table th {
  background-color: #00cccc;
  color: #000;
  text-align: center;
  width: 40%;
}

/* Mods list */
.mods-list {
  margin: 0 auto 30px auto;
  list-style-position: inside;
  text-align: center;
  padding: 0;
}
.mods-list li {
  margin: 0.5em 0;
}
.mods-list a {
  color: #00cccc;
  text-decoration: none;
  font-weight: bold;
}
.mods-list a:hover {
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff;
}


/* ---- scroll wrapper for long tables ---- */
.settings-scroll {
  max-height: 500px;      /* visible height ≈ 10 rows */
  overflow-y: auto;
  margin: 0 auto 30px;    /* keep centred */
  width: 90%;             /* match table width */
  max-width: 600px;       /* match table cap */
  padding-right: 3px;     /* 3-px gap between table & scrollbar */
  box-sizing: content-box;
  position: relative;
  z-index: 5;             /* keeps scrollbar above art */
}

/* mobile: disable wrapper scrolling */
@media (max-width: 768px) {
  .settings-scroll {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

/* optional WebKit scrollbar styling */
.settings-scroll::-webkit-scrollbar {
  width: 8px;
}
.settings-scroll::-webkit-scrollbar-thumb {
  background: #00cccc;
  border-radius: 4px;
}
