:root {
  --background-color: #000000;
  --content-background-color: #000000;
  --sidebar-background-color: #000000;
  --text-color: #fdfdfd;
  --sidebar-text-color: #dddddd;
  --link-color: #f3f3f3;
  --link-color-hover: #ececec;
  --accent-color: #a6cf3c;
  --font: Courier New, monospace;
  --heading-font: Courier New, monospace;
  --font-size: 17px;
  --margin: 40px;
  --padding: 15px;
  --border: 2px solid #ffffff;
  --round-borders: 3px;
  --sidebar-width: 300px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  font-size: var(--font-size);
  margin: 0;
  padding: 0;
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url(../backgrounds/bg%20starsa.gif);
  cursor: url("cursors/mov2.cur"), auto;
  
}

a {
  color: var(--link-color);
  text-decoration: underline;
}

a:hover {
  color: var(--link-color-hover);
}

.layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--margin);
  gap: 30px;
}

header {
  font-size: 1.2em;
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--content-background-color);
  text-align: center;
  padding: var(--padding);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-pfp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.header-title {
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

.socials-section {
  width: 100%;
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--content-background-color);
  padding: var(--padding);
  text-align: center;
  box-sizing: border-box;
}

.social-header {
  font-family: var(--heading-font);
  font-size: 1.4em;
  margin: 0.3em;
}

/* scene buttons */
.scene-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 20px;
  flex-wrap: wrap;
}

.scene-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-weight: bold;
  font-size: 0.9em;
  background: #ffffff;
  border-radius: 6px;
  color: #000000;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: var(--font);
}

.scene-button img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.scene-button:hover {
  background: #000000;
  color: #ffffff;
}

.scene-button.active {
  background: #a6cf3c;
  color: #000;
}

/* scenepack content */
.scenepack-content {
  display: none;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.scenepack-content.active {
  display: block;
}

.scenepack-tree {
  display: flex;
  flex-direction: column;
  gap: -0.5em;
  align-items: center;
}

.sub-options {
  text-align: center;
  margin-bottom: 0.8em;
}

.sub-options h3 {
  margin: 0 0 0.3em 0;
  font-size: 1.1em;
}

.sub-options ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}

.sub-options ul li {
  margin: 0.25em 0;
  display: flex;
  align-items: flex-start;
}

.sub-options ul li::before {
  content: '•';
  margin-right: 0.5em;
  color: #ffffff;
  flex-shrink: 0;
}

.sub-options ul li a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 0.9em;
  line-height: 1.4;
}

.doctor-grid-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1em;
  max-width: 700px;
  width: 100%;
}

.linked-credit {
  display: flex;
  align-items: flex-start;
}

.linked-credit > div {
  display: flex;
  flex-direction: column;
}

.linked-credit .credit {
  font-size: 0.75em;
  color: #a6cf3c;
  font-style: italic;
  text-decoration: none;
  margin-left: 0.2em;
}


.footer-nav {
  width: 100%;
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--content-background-color);
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: -10px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav li {
  display: flex;
  align-items: center;
  padding: 5px;
}

.footer-nav li > a,
.footer-nav li > details summary {
  display: inline-block;
  padding: 5px 10px;
  font-weight: bold;
  text-decoration: none;
  color: var(--link-color);
}

.footer-nav li > a:hover,
.footer-nav li > details summary:hover {
  color: var(--link-color-hover);
  text-decoration: underline;
}

.footer-nav details {
  position: relative;
}

.footer-nav details ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--content-background-color);
  border: var(--border);
  border-radius: var(--round-borders);
  padding: 10px;
  list-style: none;
  min-width: 150px;
  z-index: 1000;
}

.footer-nav details[open] ul {
  display: block;
}

.discord-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--accent-color);
  color: #000000 !important;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.discord-button:hover {
  background: #ffffff;
  color: white;
}

.discord-button img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}


li.discord {
  position: relative;
}


.tooltip-text-discord {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #000000;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.75em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  z-index: 999;
  border: 1px solid #fff;
  margin-top: 6px; /* optional spacing */
}


.footer-nav li:hover .tooltip-text-discord {
  visibility: visible;
  opacity: 1;
}

footer {
  font-size: 0.75em;
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--content-background-color);
  padding: 15px;
  text-align: center;
  margin-top: -12px;
}


#catfooter {
  margin-bottom: 0.2em;
}

#catfooter img {
  width: 150px;
  height: auto;
}

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0.375rem 0.75rem;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus {
  transform: translateY(0);
}

/* container for search + filters */
.scenepack-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  margin: 1.5em 0;
}

/* search bar */
#searchInput,
#searchInputOthers, #searchInputSPN{
  padding: 0.5em 1em;
  font-size: 1em;
  font-family: 'Courier New', monospace;
  border: 2px solid var(--accent-color, #a6cf3c);
  background-color: black;
  color: white;
  border-radius: 6px;
  outline: none;
  width: 250px;
  transition: 0.3s;
}

#searchInput:focus,
#searchInputOthers:focus,
#searchInputSPN:focus{
  border-color: #a6cf3c;
  box-shadow: #a6cf3c;
   outline: none;
  outline-offset: 0;
}

/* checkboxes group */
.checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
  justify-content: center;
}

.checkboxes label {
  font-size: 0.95em;
  color: var(--text-color, white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35em;
}

/* checkbox itself */
.checkboxes input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #a6cf3c;
  border-radius: 3px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}

.checkboxes input[type="checkbox"]:checked {
  background-color: #a6cf3c;
  border-color: #a6cf3c;
}

.checkboxes input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 3px;
  height: 8px;
  border: solid black;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

  .layout {
    padding: 20px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  footer a {
    color: #ffffff !important;
    text-decoration: underline;
  }

  footer a:hover {
    color: #ffffff !important;
  }
}

.scene-header-row {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
  justify-content: flex-start;
}

/* optional: shrink spacing between exclamation + buttons */
.scene-buttons {
  display: flex;
  gap: 0.5em;
}



footer {
  font-size: 0.75em;
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--content-background-color);
  padding: 15px;
  text-align: center;
  margin-top: -12px;
}

#catfooter {
  margin-bottom: 0.2em;
}

#catfooter img {
  width: 150px;
  height: auto;
}

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0.375rem 0.75rem;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus {
  transform: translateY(0);
}

/* container for search + filters */
.scenepack-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  margin: 1.5em 0;
}

/* search bar */
#searchInput {
  padding: 0.5em 1em;
  font-size: 1em;
  font-family: 'Courier New', monospace;
  border: 2px solid var(--accent-color, #a6cf3c);
  background-color: black;
  color: white;
  border-radius: 6px;
  outline: none;
  width: 250px;
  transition: 0.3s;
}

#searchInput:focus {
  border-color: #a6cf3c;
  box-shadow: #a6cf3c;
   outline: none;
  outline-offset: 0;
}

/* checkboxes group */
.checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
  justify-content: center;
}

.checkboxes label {
  font-size: 0.95em;
  color: var(--text-color, white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35em;
}

/* checkbox itself */
.checkboxes input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #a6cf3c;
  border-radius: 3px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}

.checkboxes input[type="checkbox"]:checked {
  background-color: #a6cf3c;
  border-color: #a6cf3c;
}

.checkboxes input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 3px;
  height: 8px;
  border: solid black;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

  .layout {
    padding: 20px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  footer a {
    color: #ffffff !important;
    text-decoration: underline;
  }

  footer a:hover {
    color: #ffffff !important;
  }
}

.scene-header-row {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
  justify-content: flex-start;
}

.scene-buttons {
  display: flex;
  gap: 0.5em;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip-text-important {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%; /* show below the image */
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #000000;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.75em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  z-index: 999;
  border: 1px solid #fff;
  margin-top: 6px;
}

/* show on hover */
.tooltip:hover .tooltip-text-important {
  visibility: visible;
  opacity: 1;
}

.exclamation {
  height: 25px;
  transform: translate(-4px, 6px);
  display:block;
}


.scenepack-info{
font-size: 1.1em; 
margin-top: -0.4em; 
margin-bottom: 0.5em; 
color: white;
}

.scenepack-info-wrapper{
  margin: 3em auto 2em;
  max-width: 850px;
  text-align: center;
  font-size: 0.85em;
  font-family: var(--font);
  line-height: 1.6;
  color: var(--text-color);
}

.scenepack-info-inner{
  background: #0a0a0a;
  border: 1px solid #ffffff;
  border-radius: var(--round-borders);
  padding: 1em 1.25em;
  margin-bottom: 1em; 
}


.scenepack-info-bottom{
  margin-top: 1em;
}

#others .scenepack-filters {
  margin-top: 0em;
}

.styled-form {
  max-width: 600px;
  margin: 2em auto;
  font-family: 'Courier New', monospace;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 2em;
  border-radius: 6px;
  text-align: left;
}

.styled-form label {
  font-size: 1em;
  font-weight: bold;
  color: #ffffff;
}

.styled-form select,
.styled-form textarea,
.styled-form input[type="text"],
.styled-form input[type="email"] {
  background: black;
  color: white;
  font-family: 'Courier New', monospace;
  font-size: 1em;
  padding: 0.6em;
  border: 2px solid var(--accent-color);
  border-radius: 4px;
  resize: vertical;
  width: 100%;
}

.styled-form textarea {
  min-height: 120px;
}

.styled-form button {
  background: #ffffff;
  color: black;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: flex-start;
}

.styled-form button:hover {
  background: white;
  color: black;
}

.thank-you {
  max-width: 600px;
  margin: 2em auto;
  padding: 1em;
  background: #0a0a0a;
  border: 1px solid #ffffff;
  border-radius: 6px;
  color: white;
  font-family: 'Courier New', monospace;
  font-size: 1em;
  text-align: center;
  display: none;
}

.glorp{
  width: 20px;
   vertical-align: -4px;
}

