
/* === disc_rot aesthetic with more soul === */

body {
  margin: 0;
  background: #0a0a0a;
  color: #ccc;
  font-family: 'Georgia', serif;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  text-shadow: 0 0 1px #000;
}

#grain {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('assets/bg-texture.png') repeat;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: soft-light;
  animation: noise 5s infinite;
}

@keyframes noise {
  0%   { opacity: 0.05; }
  50%  { opacity: 0.1; }
  100% { opacity: 0.05; }
}

.container {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 2.2em;
  text-transform: lowercase;
  letter-spacing: -0.5px;
  margin-bottom: 0.2em;
  color: #9bf;
  text-shadow: 0 0 3px #222;
}

.subtitle {
  font-family: monospace;
  font-size: 0.95em;
  color: #777;
  margin-top: -10px;
  letter-spacing: 0.5px;
}

nav {
  margin: 30px 0 60px;
  font-family: monospace;
  font-size: 0.85em;
  text-transform: lowercase;
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
}
nav a {
  color: #88f;
  margin-right: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
nav a:hover {
  text-decoration: underline;
  color: #fff;
  animation: neon-pulse 1.5s infinite alternate;
}

@keyframes neon-pulse {
  from { text-shadow: 0 0 2px #6ff; }
  to   { text-shadow: 0 0 8px #9cf; }
}

h2 {
  font-size: 1.2em;
  font-weight: normal;
  text-transform: lowercase;
  margin-bottom: 20px;
  color: #aaa;
  border-bottom: 1px solid #222;
  padding-bottom: 5px;
  font-family: monospace;
}

/* === FILMS SECTION === */

.film-featured {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.film-featured iframe {
  width: 100%;
  height: 400px;
  border: 1px solid #333;
  background: black;
  box-shadow: 0 0 20px #00000055;
}

.ambient-videos {
  display: flex;
  gap: 10px;
  position: absolute;
  top: 520px;
  left: 500px;
  flex-direction: column;
}

.ambient-videos video {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border: 1px solid #222;
  filter: contrast(1.3) brightness(0.8);
  box-shadow: 0 0 8px #000;
}

.video-list {
  margin-top: 20px;
}
.video-list ul {
  list-style: none;
  padding-left: 0;
}
.video-list li {
  margin-bottom: 10px;
  cursor: pointer;
  font-family: monospace;
  color: #88f;
  transition: all 0.2s ease;
}
.video-list li:hover {
  text-decoration: underline;
  color: #fff;
  margin-left: 5px;
  animation: hover-glitch 0.3s steps(4);
}

@keyframes hover-glitch {
  0%   { transform: translateX(0px); }
  50%  { transform: translateX(-2px); }
  100% { transform: translateX(0px); }
}

.video-year {
  font-size: 0.85em;
  color: #666;
  margin-top: 30px;
  font-family: monospace;
  letter-spacing: 0.5px;
}

/* === ABOUT & CONTACT === */

section#about p,
section#contact p {
  font-family: monospace;
  color: #bbb;
  font-size: 1em;
  line-height: 1.7;
}

a {
  color: #9cf;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #fff;
  animation: neon-pulse 1.5s infinite alternate;
}

/* === BANNER COLLAGE === */
.banner {
  display: flex;
  gap: 4px;
  overflow: hidden;
  margin: 40px 0;
}
.banner img {
  width: 100%;
  opacity: 0.6;
  filter: contrast(1.2) drop-shadow(0 0 8px #000);
  transition: opacity 0.3s ease;
}
.banner img:hover {
  opacity: 1;
}

/* === FOOTER CHANNEL STUB === */
footer {
  margin-top: 60px;
  font-family: monospace;
  color: #555;
  text-align: center;
  font-size: 0.85em;
}
