:root {
  --color-main: #8767bd;
  --color-accent: #70b9fb;
  --theme-font: 'Courier New', monospace;
}

/* ------------------- */
/* Themes */
/* ------------------- */
body[data-theme="silentfive"] {
  --color-main: #057f8e;
  --color-accent: #b9eba7;
}

body[data-theme="sweetdusk"] {
  --color-main: #19112b;
  --color-accent: #fcbbab;
}

/* ------------------- */
/* Reset */
/* ------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ------------------- */
/* Body */
/* ------------------- */
body {
  min-height: 100vh;
  color: var(--color-accent);
  background-color: var(--color-main);
  font-family: var(--theme-font);
  font-size: 12px;
  line-height: 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 0 0 0;
  margin-top: 30px;
}

body ::selection {
  background: var(--color-accent);
  color: var(--color-main);
}

/* ------------------- */
/* Main Layout */
/* ------------------- */
header .section-content img {
  width: 250px; /* or any size you prefer */
  height: auto; /* keeps the aspect ratio */
  display: block;
  margin: 10px; /* centers the gif horizontally */
}

.page-layout {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
  justify-content: center;
}

/* LEFT COLUMN (main content) */
main {
  width: 800px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

main .mini-container {
  background: #9e9c98;
  border: 2px outset var(--color-accent);
  padding: 10px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}

main .mini-container h2 {
  font-size: 13px;
  margin-bottom: 6px;
  font-style: italic;
  background: var(--color-accent);
  color: var(--color-main);
  padding: 2px 6px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.featured-grid .performance {
  border: 2px outset var(--color-accent);
  background: #fffdf0;
  padding: 6px;
  text-align: center;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-grid .performance img {
  width: 100%;
  height: 110px; /* fixed height for uniformity */
  object-fit: cover;
  margin-bottom: 6px;
  border: 1px solid var(--color-main);
}

.featured-grid .performance p {
  font-size: 11px;
  line-height: 14px;
  margin: 0;
  word-wrap: break-word;
}

/* ------------------- */
/* Sidebar (right) */
/* ------------------- */
.sidebar {
  width: 800px;
  background-color: #FFFFFF;
  border: 2px outset var(--color-accent);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.6);
  padding: 1em;
  flex-shrink: 0;
  color: black;
}

.sidebar h2 {
  font-style: italic;
  background: var(--color-accent);
  color: white;
  padding: 0.2em 0.5em;
  font-size: 12px;
}

.sidebar .mini-container {
  text-align: center;
  margin: 0.5em 0;
  border: 2px outset var(--color-accent);
  padding: 4px;
  background-color: #FFFFFF;
  text-align: left;
}

.sidebar .mini-container-img img {
  width: 500px; /* smaller width */
  height: 378px; /* make it a square */
  object-fit: cover;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto; /* center the image */
}

.sidebar .mini-container img:hover {
  filter: brightness(70%);
}

/* Sidebar text override */
.sidebar h1,
.sidebar h2,
.sidebar p,
.sidebar li,
.sidebar a {
  color: black !important;
  text-shadow: none; /* remove global text-shadow */
}

/* ------------------- */
/* Text styling */
/* ------------------- */
h1, h2, p, li, a {
  font-family: var(--theme-font);
  color: var(--color-accent);
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}

/* ------------------- */
/* Neon glow animation */
/* ------------------- */
@keyframes neon-glow {
  0% {
    box-shadow: 0 0 5px var(--color-accent), 0 0 10px var(--color-accent);
  }
  50% {
    box-shadow: 0 0 10px var(--color-accent), 0 0 20px #fff;
  }
  100% {
    box-shadow: 0 0 5px var(--color-accent), 0 0 10px var(--color-accent);
  }
}

/* ------------------- */
/* Moodboard (album covers) */
/* ------------------- */
#moodboard .mood-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.2s ease-in-out;
}

#moodboard .mood-item img:hover {
  transform: scale(1.1);
}

#moodboard .section-content {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 0;
}

    #featured-live .section-content,
    #shortFilms .section-content {
      display: grid;
      gap: 16px;
    }

    #featured-live .section-content {
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }

    #shortFilms .section-content {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      overflow-x: auto;
      padding-bottom: 10px;
    }

    #shortFilms iframe,
    #featured-live iframe,
    #featured-song iframe {
      width: 100%;
      height: 200px;
    }
