/* ======================================
   SUSPIRIA — Official Site Stylesheet
   Nu-Metal / Cyber-Emocore // Lipetsk
   ====================================== */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }

/* ===== BASE ===== */
body {
  background-color: #000000;
  color: #cccccc;
  font-family: Verdana, Geneva, Arial, sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

a:link    { color: #ff0000; text-decoration: none; }
a:visited { color: #990000; text-decoration: none; }
a:hover   { color: #ff6600; text-decoration: underline; }
a:active  { color: #ff0000; }

/* ===== ANIMATIONS ===== */
.blink { animation: blinker 1s linear infinite; }

@keyframes blinker { 50% { opacity: 0; } }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== UTILITIES ===== */
.glow      { text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 40px #990000; }
.neon-green { color: #00ff00; text-shadow: 0 0 5px #00ff00; }
.neon-red   { color: #ff0000; text-shadow: 0 0 8px #ff0000; }

/* ===== CENTERED CONTAINERS ===== */
.site-header,
.marquee-box,
.site-nav,
.site-wrapper,
.site-footer {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HEADER ===== */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000000;
  padding: 15px 0;
  text-align: center;
}

.site-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 60px;
  color: #ff0000;
  font-weight: normal;
  line-height: 1.1;
}

.site-subtitle { color: #666666; font-size: 14px; margin: 8px 0; }
.header-divider { color: #330000; font-size: 13px; margin-top: 8px; }

/* ===== MARQUEE ===== */
.marquee-box {
  background-color: #0d0000;
  border: 1px solid #440000;
  padding: 5px;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-track span {
  color: #00ff00;
  font-family: "Courier New", monospace;
  font-size: 14px;
  flex-shrink: 0;
}

/* ===== NAVIGATION ===== */
.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #0d0000;
  padding: 4px 3px;
  gap: 2px;
}

.nav-button {
  background-color: #1a0000;
  border: 1px solid #ff0000;
  color: #ff0000;
  padding: 3px 12px;
  font-size: 13px;
  font-family: Verdana, sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.nav-button:hover { background-color: #ff0000; color: #000000; text-decoration: none; }

/* ===== LAYOUT ===== */
.site-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: absolute;
  right: 100%;
  top: 0;
  width: 220px;
  background-color: #0a0a0a;
  border-right: 2px solid #330000;
  padding: 10px;
}

.play-btn {
  font-family: "Courier New", monospace;
  background-color: #001a00;
  color: #00ff00;
  border: none;
  border-top: 2px solid #00ff00;
  border-bottom: 2px solid #00ff00;
  padding: 6px 12px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 0 6px #00ff00;
  box-shadow: 0 0 8px #00ff00 inset;
  animation: toggle-pulse 1.2s ease-in-out infinite;
}

@media (hover: hover) {
  .play-btn:hover {
    background-color: #00ff00;
    color: #000000;
    text-shadow: none;
    box-shadow: none;
    animation: none;
  }
}

.play-btn.is-playing {
  background-color: #1a0000;
  border-color: #ff0000;
  color: #ff0000;
  text-shadow: 0 0 6px #ff0000;
  box-shadow: 0 0 8px #ff0000 inset;
  animation: none;
}

@media (hover: hover) {
  .play-btn.is-playing:hover {
    background-color: #ff0000;
    color: #000000;
    text-shadow: none;
    box-shadow: none;
  }
}

.sidebar-heading {
  font-family: Impact, sans-serif;
  font-size: 19px;
  color: #ff0000;
  text-align: center;
  font-weight: normal;
  margin: 8px 0 2px;
}

.sidebar-divider { color: #660000; text-align: center; display: block; margin: 4px 0; }

.sidebar-members { display: flex; flex-direction: column; gap: 4px; margin: 8px 0; }

/* ===== SIDEBAR GIF ===== */
.sidebar-gif {
  width: 100%;
  display: block;
  margin: 6px 0;
  image-rendering: pixelated;
}

/* ===== AD BLOCKS ===== */
.ad-block {
  border: 1px dashed #333300;
  background-color: #0a0a00;
  padding: 8px 6px;
  margin: 6px 0;
  text-align: center;
}

.ad-block--broken {
  border-style: dotted;
  border-color: #003300;
  background-color: #000a00;
  opacity: 0.85;
}

.ad-label {
  color: #555500;
  font-size: 13px;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.ad-text {
  color: #999900;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 4px;
}

.ad-phone {
  color: #00ff00;
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.ad-subtext {
  color: #444444;
  font-size: 12px;
  font-style: italic;
}

.sidebar-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #111111;
  border: 1px solid #333333;
  padding: 5px;
}

.member-thumb {
  width: 80px;
  height: 80px;
  border: 2px solid #ff0000;
  background-color: #1a0000;
  object-fit: cover;
}

.member-name-sm { color: #ff6600; font-size: 13px; font-weight: bold; display: block; margin-top: 4px; text-align: center; }
.member-role-sm { color: #999999; font-size: 12px; display: block; text-align: center; }

/* ===== STATUS ===== */
.status-list { margin: 8px 0; display: flex; flex-direction: column; gap: 5px; font-size: 13px; }
.status-online { color: #00ff00; }
.status-warn   { color: #ff6600; }
.status-danger { color: #ff0000; }

/* ===== LINKS ===== */
.links-list { margin: 8px 0; display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.arrow { color: #ff0000; }

.best-viewed { color: #444444; font-size: 12px; text-align: center; margin-top: 12px; line-height: 1.7; }

/* ===== COUNTER ===== */
.counter-box {
  background-color: #000000;
  border: 2px inset #555555;
  padding: 3px 10px;
  display: inline-block;
  color: #00ff00;
  font-family: "Courier New", monospace;
  font-size: 15px;
}

/* ===== MAIN CONTENT ===== */
.main-content { padding: 15px; }

/* ===== SECTION HEADER ===== */
.section-header {
  background-color: #1a0000;
  color: #ff0000;
  font-size: 18px;
  font-weight: bold;
  font-family: Verdana, sans-serif;
  padding: 5px 10px;
  border-top: 2px solid #ff0000;
  border-bottom: 2px solid #ff0000;
  margin: 0 0 12px;
}

.section-divider { color: #330000; text-align: center; font-size: 14px; margin: 12px 0; }

/* ===== ABOUT ===== */
.about-block { padding: 10px; }
.about-title { color: #ffffff; margin-bottom: 12px; }

.band-photo { text-align: center; margin: 10px 0; }

.group-photo {
  width: 450px;
  max-width: 100%;
  border: 3px solid #330000;
  background-color: #1a0000;
  display: inline-block;
}

.photo-caption { color: #666666; font-size: 12px; margin-top: 4px; }
.about-text { color: #cccccc; line-height: 1.6; margin: 8px 0; }
.about-text--dim   { color: #999999; }
.about-text--faded { color: #666666; }

/* ===== MEMBERS ===== */
.members-list { display: flex; flex-direction: column; gap: 3px; }

.member-card { display: flex; align-items: stretch; background-color: #111111; }

.member-photo-wrap {
  width: 120px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border: 1px solid #333333;
}

.member-photo { width: 100px; height: 100px; border: 1px solid #ff0000; background: #1a0000; object-fit: cover; }
.member-info { padding: 8px; flex: 1; }
.member-name { color: #ff6600; font-weight: bold; font-size: 14px; margin-bottom: 4px; }
.member-role { color: #999999; font-size: 13px; margin-bottom: 8px; }
.member-bio  { color: #666666; font-size: 12px; line-height: 1.5; }

/* ===== DISCOGRAPHY ===== */
.discography-block { display: flex; gap: 20px; padding: 10px; align-items: flex-start; }

.album-sidebar { width: 220px; flex-shrink: 0; text-align: center; }

.album-art {
  width: 200px;
  height: 200px;
  border: 3px solid #330000;
  background-color: #1a0000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0000;
  font-size: 23px;
  font-weight: bold;
  margin: 0 auto;
  overflow: hidden;
}

.album-art img { width: 100%; height: 100%; object-fit: cover; }
.album-title { color: #ff0000; font-size: 13px; margin: 6px 0 2px; }
.album-type  { color: #666666; font-size: 12px; }

.album-details { flex: 1; }
.album-heading { color: #ffffff; font-size: 14px; margin-bottom: 4px; }
.album-label   { color: #ff0000; font-size: 13px; margin-bottom: 12px; }

.track-list {
  counter-reset: track;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.track-list li {
  counter-increment: track;
  background-color: #0d0000;
  padding: 3px 8px;
  color: #cccccc;
  font-size: 13px;
  display: flex;
  gap: 8px;
}

.track-list li::before {
  content: "0" counter(track) ".";
  color: #ff0000;
  font-size: 12px;
  flex-shrink: 0;
  min-width: 22px;
}

.album-desc         { color: #666666; font-size: 13px; font-style: italic; margin-bottom: 12px; line-height: 1.5; }
.album-announce     { color: #ff6600; font-size: 14px; margin-bottom: 6px; }
.album-announce-sub { color: #999999; font-size: 13px; }

/* ===== TOUR ===== */
.tour-block { padding: 10px; }
.tour-heading { color: #ff0000; font-size: 14px; margin-bottom: 10px; }
.tour-text { color: #cccccc; line-height: 1.6; margin-bottom: 12px; font-size: 13px; }
.tour-dates { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }

.tour-date {
  background-color: #0d0000;
  border-left: 3px solid #ff0000;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: #cccccc;
}

.tour-month { color: #ff0000; font-weight: bold; font-size: 13px; min-width: 95px; flex-shrink: 0; }
.tour-announce { color: #ff6600; font-size: 13px; }

.event-link         { color: #00ff00; text-decoration: underline dotted; text-shadow: 0 0 5px #00ff00; }
.event-link:visited { color: #00cc00; }
.event-link:hover   { color: #ffffff; text-shadow: 0 0 8px #00ff00, 0 0 16px #00ff00; text-decoration: underline; }

/* ===== GUESTBOOK ===== */
.guestbook-block { background-color: #0d0000; padding: 10px; }

.guestbook-form { display: flex; flex-direction: column; gap: 10px; }

.gb-label { display: flex; flex-direction: column; gap: 4px; color: #cccccc; font-size: 13px; }

.gb-input {
  background-color: #1a0000;
  border: 1px solid #ff0000;
  color: #ff0000;
  font-family: Verdana, sans-serif;
  font-size: 13px;
  padding: 3px 5px;
  width: 240px;
}

.gb-textarea {
  background-color: #1a0000;
  border: 1px solid #ff0000;
  color: #cccccc;
  font-family: Verdana, sans-serif;
  font-size: 13px;
  padding: 3px 5px;
  resize: vertical;
  width: 400px;
}

.gb-submit {
  background-color: #1a0000;
  border: 2px outset #ff0000;
  color: #ff0000;
  font-family: Verdana, sans-serif;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  padding: 4px 12px;
  align-self: flex-start;
}

.gb-submit:hover { background-color: #ff0000; color: #000000; }

/* ===== CONTACT ===== */
.contact-block { padding: 10px; }
.contact-list { display: flex; flex-direction: column; gap: 2px; }

.contact-row {
  display: flex;
  padding: 5px 8px;
  gap: 10px;
  font-size: 13px;
}

.contact-row--dark { background-color: #111111; }
.contact-row dt { color: #ff6600; width: 100px; flex-shrink: 0; }
.contact-row dd { color: #cccccc; }

/* ===== QUOTE ===== */
.quote-box {
  border: 1px dashed #660000;
  background-color: #0f0000;
  padding: 10px;
  margin: 10px 0;
  text-align: center;
}

.quote-box p      { color: #ff0000; font-style: italic; font-size: 13px; }
.quote-box footer { color: #666666; font-size: 12px; margin-top: 5px; }

/* ===== BANNERS ===== */
.banners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 10px 0;
}

.banner-tag {
  border: 1px solid #ff0000;
  background-color: #000000;
  color: #ff0000;
  font-family: Verdana, sans-serif;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 6px;
}

/* ===== SIDEBAR TOGGLE BUTTON (mobile only) ===== */
.sidebar-toggle {
  display: none;
}

/* ===== MOBILE / RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-title {
    font-size: 40px;
  }
  
  .sidebar-toggle {
    display: block;
    width: 100%;
    background-color: #001a00;
    border: none;
    border-top: 2px solid #00ff00;
    border-bottom: 2px solid #00ff00;
    color: #00ff00;
    font-family: "Courier New", monospace;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 12px;
    cursor: pointer;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 0 6px #00ff00;
    box-shadow: 0 0 8px #00ff00 inset;
    animation: toggle-pulse 1.2s ease-in-out infinite;
  }

  @keyframes toggle-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.45; }
  }

  @media (hover: hover) {
    .sidebar-toggle:hover {
      background-color: #00ff00;
      color: #000000;
      text-shadow: none;
      box-shadow: none;
      outline: none;
      animation: none;
    }
  }

  .sidebar-toggle:focus {
    outline: none;
  }

  .sidebar-toggle.is-open {
    background-color: #1a0000;
    border-color: #ff0000;
    color: #ff0000;
    text-shadow: 0 0 6px #ff0000;
    box-shadow: 0 0 8px #ff0000 inset;
    animation: none;
  }

  .sidebar-toggle.is-open:hover,
  .sidebar-toggle.is-open:focus {
    background-color: #ff0000;
    color: #000000;
    text-shadow: none;
    box-shadow: none;
  }

  .sidebar {
    position: static;
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #330000;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
    /* hidden by default on mobile */
    display: none;
  }

  .sidebar.is-open {
    display: flex;
  }

  .site-wrapper {
    display: flex;
    flex-direction: column;
  }

  .gb-input,
  .gb-textarea {
    width: 100%;
  }

  .discography-block {
    flex-direction: column;
  }

  .album-sidebar {
    width: 100%;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #0d0000;
  border-top: 2px solid #330000;
  padding: 15px;
  text-align: center;
}

.footer-divider       { color: #660000; font-size: 12px; }
.footer-copy          { color: #999999; font-size: 12px; margin-top: 10px; }
.footer-city          { color: #666666; font-size: 12px; margin-top: 4px; }
.footer-counter-label { color: #444444; font-size: 12px; margin-top: 10px; margin-bottom: 4px; }
.footer-note          { color: #333333; font-size: 12px; font-style: italic; margin-top: 10px; line-height: 1.6; }
.footer-joke          { color: #222222; font-size: 12px; margin-top: 8px; }

.footer-logo {
  font-family: Impact, sans-serif;
  color: #330000;
  font-size: 30px;
  margin-top: 10px;
}

.footer-bottom {
  color: #1a0000;
  font-family: "Courier New", monospace;
  font-size: 13px;
  margin-top: 10px;
  overflow: hidden;
  white-space: nowrap;
}
