@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

body {
  font-family: "Audiowide", sans-serif;
  background-color: #000;
  color: #d2d2d2;
}

.link a {
  padding: 12px 20px;
  text-decoration: none;
  color: #0ff;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-shadow:
    /* blue glow */
    0 0 15px #0ff,
    0 0 20px #0ff,
    0 0 10px #0ff,
    /* blue  glow */
    0 0 25px #0ff,
    0 0 20px #0ff,
    0 0 15px #0ff,
    0 0 30px #0ff,
    0 0 10px #0ff;
}

.link a:hover,
.link a.active {
  background-color: #0ff;
  color: #000;
  border-radius: 10px;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.text-fx {
  color: #0ff;
  text-shadow:
    /* blue glow */
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff,
    /* blue  glow */
    0 0 25px #0ff,
    0 0 35px #0ff,
    0 0 45px #0ff,
    0 0 0px #0ff,
    0 0 25px #0ff;
}

.page-border {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    box-shadow: inset 10px 0 20px 0 #00ffff,
                  inset -10px 0 20px 0 #00ffff;
}

.page-container {
    align-items: center;
    text-align: center; 
    max-width: 1200px;
    width: 100%;
    margin: 100px auto;
    padding: 5px 25px;
    color: #d2d2d2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: none;
  font-size: 1.8rem;
  color: #0ff;
  text-decoration: none;
  text-shadow:
    /* blue glow */
    0 0 15px #0ff,
    0 0 20px #0ff,
    0 0 10px #0ff,
    /* blue  glow */
    0 0 25px #0ff,
    0 0 20px #0ff,
    0 0 15px #0ff,
    0 0 30px #0ff,
    0 0 10px #0ff;
}

.nav-menu {
  list-style: none;
  display: flex;

  flex-wrap: wrap;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  white-space: nowrap;
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #0ff;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-shadow:
    /* blue glow */
    0 0 15px #0ff,
    0 0 20px #0ff,
    0 0 10px #0ff,
    /* blue  glow */
    0 0 25px #0ff,
    0 0 20px #0ff,
    0 0 15px #0ff,
    0 0 30px #0ff,
    0 0 10px #0ff;
}

.nav-link:hover,
.nav-link.active {
  background-color: #0ff;
  color: #000;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.dropdown-toggle {
  cursor: pointer;
  padding-right: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-shadow:
    /* blue glow */
    0 0 15px #0ff,
    0 0 20px #0ff,
    0 0 10px #0ff,
    /* blue  glow */
    0 0 25px #0ff,
    0 0 20px #0ff,
    0 0 15px #0ff,
    0 0 30px #0ff,
    0 0 10px #0ff;
}

.dropdown-toggle:hover {
  background-color: #0ff;
  color: #000;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  background-color: #000;
  min-width: 160px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.9);
  overflow: hidden;
  padding: 15px 0px;
}

.dropdown-item {
  padding: 0px 15px;
}

.dropdown-item a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #0ff;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-shadow:
    /* blue glow */
    0 0 15px #0ff,
    0 0 20px #0ff,
    0 0 10px #0ff,
    /* blue  glow */
    0 0 25px #0ff,
    0 0 20px #0ff,
    0 0 15px #0ff,
    0 0 30px #0ff,
    0 0 10px #0ff;
}

.dropdown-item a:hover {
  background-color: #0ff;
  color: #000;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 4px;
  width: 30px;
  background-color: #0ff;
  margin: 5px 0;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .brand {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-container {
    justify-content: flex-start;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000;
    flex-direction: column;
    display: none;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-item {
    text-align: center;
  }
  .dropdown-menu {
    position: static;
    overflow-y: auto;
    max-height: 100px;

  }
.nav-link {
  margin: 10px 5px;
 }
}

@media (min-width: 769px) {
  .nav-container {
    justify-content: center;
  }
}

.site-bottom-disclaimer {
  position: relative;
  top: 100px;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1000px;
  width: 100%;
  height: auto;
  padding: 20px;
  padding-bottom: 40px;
  text-align: center;
  z-index: 100;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #000;
    padding: 10px 0;
    min-height: 50px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9),
              0 0 20px rgba(0, 255, 255, 0.8);
}
.footer-text {
    margin: 0;
    text-align: center;
}
.footer-text, .text-fx {
  display: inline;
}

hr {
  color: #00ffff;
  border: 1px solid #00ffff;
  box-shadow: 0px 6px 10px 10px rgba(0,255,255,0.3), 
              0px 6px 20px 10px rgba(0,255,255,0.3),
              0px 6px 30px 10px rgba(0,255,255,0.3);
  border-radius: 5px;
  width: 80%;
  margin: 0 auto;
}

.blog-post2 {
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.blog-post2 h1 {
  color: #0ff;
  text-shadow:
    /* blue glow */
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff,
    /* blue  glow */
    0 0 25px #0ff,
    0 0 35px #0ff,
    0 0 45px #0ff,
    0 0 0px #0ff,
    0 0 25px #0ff;
}

.blog-post {
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0,255,255,0.9), 0 0 20px rgba(0,255,255,0.8);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.blog-snippet {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.blog-post h3 {
   color: #0ff;
}

.blog-post .link {
   padding: 10px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8em;
  margin-bottom: 8px;
}

.blog-date,
.blog-viewed {
  display: block;
  font-size: 0.8em;
}

h1 {
  color: #0ff;
  text-shadow:
    /* blue glow */
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff,
    /* blue  glow */
    0 0 25px #0ff,
    0 0 35px #0ff,
    0 0 45px #0ff,
    0 0 0px #0ff,
    0 0 25px #0ff;
}

h2 {
  color: #0ff;
  text-shadow:
    /* blue glow */
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff,
    /* blue  glow */
    0 0 25px #0ff,
    0 0 35px #0ff,
    0 0 45px #0ff,
    0 0 0px #0ff,
    0 0 25px #0ff;
}

.pagination-buttons a {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  background-color: #000;
  color: #0ff;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  transition: background-color 0.3s, transform 0.3s;
  border: none;
}

.pagination-buttons a:hover,
.pagination-buttons a.active  {
  background-color: #0ff;
  color: #000;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.pagination-buttons a.disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 400px) {
  .pagination-buttons a {
    padding: 5px 8px;
    font-size: 10px;
  }
}

.filter-container {
  margin: 20px 0;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.filter-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.filter-container select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 2px solid transparent;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  transition: background-color 0.3s, transform 0.3s;
}

.filter-container select:focus {
  outline: none;
  background-color: #111;
  transform: scale(1.02);
}

.filter-container button {
  font-family: inherit;
  font-weight: bold;
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  border: none;
  color: #0ff;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  transition: background-color 0.3s, transform 0.3s;

}

.filter-container button:hover  {
  background-color: #0ff;
  color: #000;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.select2-container--classic .select2-selection--single {
  border: none !important;
  background-color: #000 !important;
  border: 2px solid transparent;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  transition: background-color 0.3s, transform 0.3s;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #0ff !important;
    background-color: #000 !important;
}

.select2-container--classic .select2-selection--single:hover {
    border-color: #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);

}
.select2-container--classic .select2-dropdown {
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
    border: none !important;
}

.select2-results__option {
    padding: 10px;
text-align: center;
    background-color: #000;

}

.select2-results__option--highlighted {
    background-color: #0ff !important;
    color: #000 !important;
    text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.select2-container--classic .select2-search--dropdown {
    display: none !important;
}

.select2-container--classic .select2-selection__arrow {
  background-color: #0ff !important;
  border: none !important;
  padding: 5px;
}

.close-btn {
    background-color: #c11300;
    color: #fff; 
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center; 
    justify-content: center;
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px; 
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    z-index: 9999;
}

.close-btn:hover,
.close-btn:focus {
    background-color: #a00;
    color: #fff;
}

.vote-button {
  width: 100px;
  font-family: inherit;
  font-weight: bold;
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  background-color: #000;
  color: #0ff;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
}

.vote-button:hover,
.vote-button.active {
  background-color: #0ff;
  color: #000;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.video-icon, .audio-icon {
  display: inline-block;
  padding: 15px 15px 10px 20px;
  margin: 0 5px;
  background-color: #000;
  color: #0ff;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
}
.video-icon:hover, .audio-icon:hover {
  background-color: #0ff;
  color: #000;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%; 
    height: 10px; 
    background: #0ff !important; 
    border-radius: 5px; 
    outline: none; 
}

.volume-slider::-webkit-slider-runnable-track {
    background: #0ff;
    height: 8px;
    border-radius: 4px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px !important;
    height: 20px !important; 
    border-radius: 50%;
    background: #0ff;
    cursor: pointer;
    margin-top: -6px;
}

.volume-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0ff;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb:hover {
    background: #000 !important;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.volume-slider::-moz-range-thumb:hover {
    background: #000 !important;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.volume-slider:focus {
    background: #00ffff;
}

.volume-slider:active {
    background: #00ffff;
}

.reply-thumbnail {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reply-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 255, 255, 0.5);
    border-color: #0ff;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-open { overflow: hidden; }

.player {
  background: #000;
  padding: 10px 10px;
  width: 90%; 
  max-width: 700px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  transition: background-color 0.3s, transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}

.media-wrapper {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.media-wrapper video {
  max-height: 70vh;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

.media-wrapper audio {
  max-width: 100%;
  outline: none;
}

.controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.btn i {
  font-size: 1.2rem;
  color: #0ff;
}
.btn:hover i {
  color: #29a; 
}

.close-btn2 {
    background-color: #c11300;
    color: #fff;
    width: 30px; 
    height: 30px; 
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    z-index: 9999;
}

.close-btn2:hover,
.close-btn2:focus {
    background-color: #a00;
    color: #fff;
}

.time {
  font-family: monospace;
  font-size: 0.9rem;
  min-width: 3ch;
  text-align: center;
}

.progress-container {
  flex: 1;
  height: 0.5rem;
  background: #444;
  border-radius: 0.25rem;
  overflow: hidden;
  cursor: pointer;
}
.progress {
  height: 100%;
  background: #29a;
  width: 0%;
}

.volume-slider {
  width: 5rem;
}

#ajax-message .ajax-message {
  color: #d2d2d2;
  text-align: center;
  text-shadow: 0 0 15px #d2d2d2, 0 0 30px #d2d2d2;
  padding: 20px;
  margin: 0; 
  position: fixed;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.5s;
  width: 100%;
  height: 65px;
  top: 0;
  pointer-events: none;
}

#inputForm{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 20px auto;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  padding: 5px 0 15px 0;
  border-radius: 10px; /* optional for rounded corners */
}

.row{
  margin: 0 auto;
  max-width: 300px;
  width: 80%;
  margin-top: 20px;
}
.row2{
  margin: 0 auto;
  max-width: 80%;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 20px;
}
.row input, .row2 textarea{
  text-align: center;
  font-family: inherit;
  width: 100%;
  padding: 10px;
  border: none;
  outline: none;
  color: #d2d2d2;
  background: #000;
  font-size: 15px;
  box-shadow: 0px 1px 2px rgba(0,255,255,0.5), 
              0px 2px 4px rgba(0,255,255,0.5), 
              0px 4px 8px rgba(0,255,255,0.5), 
              0px 8px 16px rgba(0,255,255,0.5);
  border-radius: 5px;
}
.row2 textarea{
  resize: none;
  height: 100px;
}

.button {
  font-family: inherit;
  font-weight: bold;
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  background-color: #000;
  color: #0ff;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
}

.button:hover,
.button.active {
  background-color: #0ff;
  color: #000;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.big-button {
  margin-top: 10%;;
  font-family: inherit;
  font-weight: bold;
  padding: 40px 30px;
  background-color: #000;
  color: #0ff;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
  border: none;
}

.big-button:hover,
.big-button.active {
  background-color: #0ff;
  color: #000;
  text-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.comment-container {
  align-items: center;
  text-align: center;
  margin: 10px auto;
  width: 100%;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  padding: 5px 0 15px 0;
  border-radius: 10px;

}
.comment-header {
  margin-bottom: 5px;
  margin-left: 10px;
  display: flex;
  justify-content: space-between;
}

.comment-footer {
  font-size: 0.7em;
}
.comment-date {
  margin-right: 10px;
  font-size: 0.7em;
}

.reply {
  margin-left: 30px;
  border-left: 2px solid #0ff;
  padding-left: 10px;
  margin-top: 10px;
  position: relative;
}

.reply::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 5px; 
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
}

.replyForm {
    margin-top: 10px;
}

#clock {
  font-size: 2em;
  color: red;
  text-shadow: 0 0 5px red;
  text-align: center;
  margin-bottom: 10px;
}

#chatDescription {
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}

#chat-login {
  display: none;
}
#chat-disabled {
  display: none;
  color: red;
  text-align: center;
}

.warning {
  color: red;
}

noscript {
    display: block;
    background: #000;
    border: 5px solid red;
    border-radius: 15px;
    box-shadow: 0 0 15px red, 0 0 30px crimson, 0 0 45px darkred;
    text-align: center;
    color: red;
    position: fixed;
    top: 0;
    left: 0; 
    width: 100%; 
    min-height: 40px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box; 
    backdrop-filter: blur(2px);
}

.indented {
  text-indent: 2em;
  display: block;
  margin-bottom: 1em;
}

.protected-img {
  display: inline-block;
  max-width: 500px;
  margin: 20px 20px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.9), 0 0 20px rgba(0, 255, 255, 0.8);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.protected-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 255, 255, 0.5);
    border-color: #0ff;
}

.protected-img img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
  border-radius: 10px;
  transition: border-radius 0.2s ease;
}

.protected-img:hover img {
  border-radius: 0;
}




