@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P:wght@400&family=VT323&family=Share+Tech+Mono:wght@400&display=swap");
:root {
  --vhs-brown: #8B4513;
  --vhs-faded-red: #CD5C5C;
  --vhs-dull-blue: #4682B4;
  --vhs-dull-green: #556B2F;
  --vhs-crt-green: #00FF41;
  --vhs-amber: #FFB347;
  --vhs-static-gray: #2F2F2F;
  --vhs-warm-white: #F5F5DC;
  --vhs-dark-brown: #654321;
  --vhs-faded-yellow: #F0E68C;
}

body {
  background: var(--vhs-static-gray);
  color: var(--vhs-warm-white);
  font-family: "Share Tech Mono", monospace;
  font-size: 18px;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1000;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px);
  pointer-events: none;
  z-index: 999;
  animation: scanlines 0.1s linear infinite;
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(4px);
  }
}
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 998;
  animation: grain 0.5s steps(10) infinite;
}

@keyframes grain {
  0%, 100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -5%);
  }
  20% {
    transform: translate(-10%, 5%);
  }
  30% {
    transform: translate(5%, -10%);
  }
  40% {
    transform: translate(-5%, 15%);
  }
  50% {
    transform: translate(-10%, 5%);
  }
  60% {
    transform: translate(15%, 0%);
  }
  70% {
    transform: translate(0%, 10%);
  }
  80% {
    transform: translate(3%, 15%);
  }
  90% {
    transform: translate(-10%, 10%);
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Press Start 2P", cursive;
  color: var(--vhs-crt-green);
  text-shadow: 0 0 5px var(--vhs-crt-green), 0 0 10px var(--vhs-crt-green), 0 0 15px var(--vhs-crt-green);
  letter-spacing: 2px;
  line-height: 1.6;
  margin-bottom: 1rem;
}
h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover {
  animation: textGlitch 0.3s ease-in-out;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.3rem;
}

h4 {
  font-size: 1.1rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.9rem;
}

@keyframes textGlitch {
  0%, 100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
}
p, li, div {
  font-size: 1.1rem;
  line-height: 1.8;
  text-shadow: 1px 0 0 rgba(255, 0, 0, 0.1), -1px 0 0 rgba(0, 0, 255, 0.1);
  color: var(--vhs-warm-white);
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: var(--vhs-crt-green);
  font-size: 1.05rem;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.site-header {
  background: linear-gradient(135deg, var(--vhs-dark-brown) 0%, var(--vhs-brown) 50%, var(--vhs-faded-red) 100%);
  color: var(--vhs-crt-green);
  padding: 2rem 0;
  text-align: center;
  border-bottom: 3px solid var(--vhs-crt-green);
  position: relative;
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vhs-crt-green);
  animation: tracking 2s ease-in-out infinite;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

@keyframes tracking {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.site-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0;
  text-shadow: 0 0 10px var(--vhs-crt-green), 0 0 20px var(--vhs-crt-green), 0 0 30px var(--vhs-crt-green);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.site-logo {
  display: block;
  width: 145px;
  margin: 0;
  height: auto;
  filter: drop-shadow(0 0 6px var(--vhs-crt-green)) drop-shadow(0 0 12px var(--vhs-crt-green));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 10px var(--vhs-crt-green), 0 0 20px var(--vhs-crt-green);
  }
  100% {
    text-shadow: 0 0 20px var(--vhs-crt-green), 0 0 30px var(--vhs-crt-green), 0 0 40px var(--vhs-crt-green);
  }
}
@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 6px var(--vhs-crt-green)) drop-shadow(0 0 12px var(--vhs-crt-green));
  }
  100% {
    filter: drop-shadow(0 0 10px var(--vhs-crt-green)) drop-shadow(0 0 20px var(--vhs-crt-green));
  }
}
.site-description {
  font-family: "VT323", monospace;
  font-size: 1.3rem;
  margin: 0.75rem auto 0;
  max-width: 100%;
  color: var(--vhs-amber);
  text-shadow: 0 0 5px var(--vhs-amber);
}

.site-nav {
  background: white;
  border-bottom: 2px solid var(--vhs-crt-green);
  padding: 1rem 0;
  position: relative;
}
.site-nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--vhs-crt-green);
  animation: vcrBlink 1s ease-in-out infinite;
}

@keyframes vcrBlink {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.nav-container {
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.nav-container a {
  font-family: "Share Tech Mono", monospace;
  color: var(--vhs-crt-green);
  text-decoration: none;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border: 2px solid var(--vhs-crt-green);
  background: var(--vhs-static-gray);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-container a:hover {
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray);
  box-shadow: 0 0 10px var(--vhs-crt-green), inset 0 0 10px rgba(0, 0, 0, 0.3);
  animation: buttonGlitch 0.2s ease-in-out;
}

.nav-toggle {
  display: none;
  background: var(--vhs-static-gray);
  border: 2px solid var(--vhs-crt-green);
  color: var(--vhs-crt-green);
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-family: "Share Tech Mono", monospace;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  align-items: center;
  gap: 0.5rem;
}
.nav-toggle:hover {
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray);
  box-shadow: 0 0 10px var(--vhs-crt-green);
}
.nav-toggle svg {
  transition: transform 0.3s ease;
}
.nav-toggle[aria-expanded=true] svg {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-wrapper .nav-container {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .nav-wrapper .nav-container.show {
    display: flex;
  }
}
@media (min-width: 769px) {
  .nav-wrapper .nav-container {
    display: flex !important;
    flex-direction: row;
  }
}
@keyframes buttonGlitch {
  0%, 100% {
    transform: translate(0);
  }
  25% {
    transform: translate(-1px, 1px);
  }
  50% {
    transform: translate(1px, -1px);
  }
  75% {
    transform: translate(-1px, -1px);
  }
}
.main-content {
  padding: 3rem 0;
  min-height: 60vh;
  background: var(--vhs-static-gray);
  position: relative;
}

.site-footer {
  background: var(--vhs-dark-brown);
  color: var(--vhs-amber);
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 2px solid var(--vhs-crt-green);
  font-family: "VT323", monospace;
}
.site-footer p {
  margin: 0;
  text-shadow: 0 0 5px var(--vhs-amber);
}

.btn {
  font-family: "Share Tech Mono", monospace;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 3px solid var(--vhs-crt-green);
  background: var(--vhs-static-gray);
  color: var(--vhs-crt-green);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before {
  left: 100%;
}
.btn:hover {
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray);
  box-shadow: 0 0 15px var(--vhs-crt-green), inset 0 0 10px rgba(0, 0, 0, 0.3);
  animation: buttonPress 0.1s ease-in-out;
}

@keyframes buttonPress {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.btn-primary {
  border-color: var(--vhs-crt-green);
  color: var(--vhs-crt-green);
}
.btn-primary:hover {
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray);
}

.btn-secondary {
  border-color: var(--vhs-amber);
  color: var(--vhs-amber);
}
.btn-secondary:hover {
  background: var(--vhs-amber);
  color: var(--vhs-static-gray);
}

.btn-outline {
  border-color: var(--vhs-faded-red);
  color: var(--vhs-faded-red);
}
.btn-outline:hover {
  background: var(--vhs-faded-red);
  color: var(--vhs-static-gray);
}

.content-card {
  background: var(--vhs-static-gray);
  border: 2px solid var(--vhs-crt-green);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}
.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 65, 0.05) 50%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 255, 65, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.3);
  border-color: var(--vhs-amber);
}
.content-card:hover::before {
  opacity: 1;
}

.content-card-media {
  display: block;
  margin: 0 0 1.5rem 0;
  border: 2px solid var(--vhs-crt-green);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.2), inset 0 0 12px rgba(0, 0, 0, 0.35);
}
.content-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.06) 2px, rgba(0, 255, 65, 0.06) 3px);
  pointer-events: none;
}

.content-card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.content-card:hover .content-card-media {
  border-color: var(--vhs-amber);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.35), inset 0 0 12px rgba(0, 0, 0, 0.35);
}

.content-card h3 {
  color: var(--vhs-crt-green);
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 10px var(--vhs-crt-green);
}
.content-card h3 a:hover {
  text-decoration: none;
}

.content-card p {
  color: var(--vhs-warm-white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-logo {
  max-width: 100%;
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 15px var(--vhs-faded-yellow);
}

.hero-section {
  /* Base background image layer */
  --hero-bg: none;
  background: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--vhs-crt-green);
  padding: 4rem 0;
  text-align: center;
  margin: -3rem 0 3rem 0;
  position: relative;
  overflow: hidden;
  /* Gradient overlay */
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--vhs-dark-brown) 0%, var(--vhs-brown) 50%, var(--vhs-faded-red) 100%);
  opacity: 0.15;
  mix-blend-mode: multiply;
  z-index: 1;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 65, 0.1) 2px, rgba(0, 255, 65, 0.1) 4px);
  animation: trackingLines 3s linear infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes trackingLines {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.hero-content {
  position: relative;
  z-index: 3; /* Above overlays */
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 15px var(--vhs-crt-green), 0 0 30px var(--vhs-crt-green);
  animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    text-shadow: 0 0 15px var(--vhs-crt-green), 0 0 30px var(--vhs-crt-green);
  }
  100% {
    text-shadow: 0 0 25px var(--vhs-crt-green), 0 0 50px var(--vhs-crt-green), 0 0 75px var(--vhs-crt-green);
  }
}
.hero-subtitle {
  font-family: "VT323", monospace;
  font-size: 1.75rem;
  margin: 0 0 2rem 0;
  color: var(--vhs-amber);
  text-shadow: 0 0 10px var(--vhs-amber);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-media {
  position: relative;
  z-index: 2;
}

.hero-section .vhs-img-normal {
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .hero-section .vhs-img-normal {
    width: 90%;
    max-width: 90vw;
  }
}
.featured-content {
  margin: 4rem 0;
}

.featured-content h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--vhs-crt-green);
  margin-bottom: 3rem;
  text-shadow: 0 0 15px var(--vhs-crt-green);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .project-hubs .content-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--vhs-crt-green);
  position: relative;
  z-index: 2;
}

.date {
  color: var(--vhs-amber);
  font-size: 0.9rem;
  font-family: "VT323", monospace;
  text-shadow: 0 0 3px var(--vhs-amber);
}

.read-more {
  color: var(--vhs-crt-green);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  font-family: "Share Tech Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.read-more:hover {
  color: var(--vhs-amber);
  text-shadow: 0 0 5px var(--vhs-amber);
}

.about-preview {
  background: var(--vhs-static-gray);
  padding: 4rem 1rem;
  margin: 4rem 0;
  border: 2px solid var(--vhs-crt-green);
  border-radius: 8px;
  position: relative;
}
.about-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0, 255, 65, 0.05) 1px, rgba(0, 255, 65, 0.05) 2px);
  pointer-events: none;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-content h2 {
  color: var(--vhs-crt-green);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px var(--vhs-crt-green);
}

.about-content p {
  color: var(--vhs-warm-white);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .site-logo {
    width: 56px;
  }
  .site-header .site-title {
    font-size: 1.8rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-card {
    padding: 1.5rem;
  }
  .featured-content h2,
  .about-content h2 {
    font-size: 1.8rem;
  }
}
.vhs-loading {
  font-family: "Press Start 2P", cursive;
  color: var(--vhs-crt-green);
  text-align: center;
  padding: 2rem;
  animation: loadingGlitch 1s ease-in-out infinite;
}

@keyframes loadingGlitch {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--vhs-static-gray);
  border: 1px solid var(--vhs-crt-green);
}

::-webkit-scrollbar-thumb {
  background: var(--vhs-crt-green);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--vhs-amber);
}

.posts-page {
  padding: 2rem 0;
}

.posts-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-bottom: 2px solid var(--vhs-crt-green);
  position: relative;
}
.posts-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--vhs-crt-green);
  animation: tracking 2s ease-in-out infinite;
}

.posts-header h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 15px var(--vhs-crt-green);
}

.posts-subtitle {
  font-family: "VT323", monospace;
  font-size: 1.2rem;
  color: var(--vhs-amber);
  margin: 0;
  text-shadow: 0 0 5px var(--vhs-amber);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-card {
  background: var(--vhs-static-gray);
  border: 2px solid var(--vhs-crt-green);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0, 255, 65, 0.03) 1px, rgba(0, 255, 65, 0.03) 2px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 255, 65, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.3);
  border-color: var(--vhs-amber);
}
.post-card:hover::before {
  opacity: 1;
}

.post-card-media {
  display: block;
  margin: 0 0 1.25rem 0;
  border: 2px solid var(--vhs-crt-green);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 12px rgba(0, 255, 65, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.35);
}
.post-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.05) 2px, rgba(0, 255, 65, 0.05) 3px);
  pointer-events: none;
}

.post-card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.post-card:hover .post-card-media {
  border-color: var(--vhs-amber);
  box-shadow: 0 0 18px rgba(255, 193, 7, 0.35), inset 0 0 10px rgba(0, 0, 0, 0.35);
}

.post-card-content {
  position: relative;
  z-index: 2;
}
.post-card-content .post-footer {
  margin-top: 1.5rem;
}

.post-title {
  font-family: "Press Start 2P", cursive;
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}
.post-title a {
  color: var(--vhs-crt-green);
  text-decoration: none;
  text-shadow: 0 0 5px var(--vhs-crt-green);
  transition: all 0.3s ease;
}
.post-title a:hover {
  color: var(--vhs-amber);
  text-shadow: 0 0 10px var(--vhs-amber);
  animation: textGlitch 0.2s ease-in-out;
}

.post-meta {
  margin-bottom: 1rem;
  font-family: "VT323", monospace;
  font-size: 0.9rem;
}

.post-date {
  color: var(--vhs-amber);
  text-shadow: 0 0 3px var(--vhs-amber);
}

.post-author {
  color: var(--vhs-faded-red);
  margin-left: 0.5rem;
  text-shadow: 0 0 3px var(--vhs-faded-red);
}

.post-excerpt {
  color: var(--vhs-warm-white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.post-footer {
  border-top: 1px solid var(--vhs-crt-green);
  padding-top: 1rem;
}

.read-more-btn {
  font-family: "Share Tech Mono", monospace;
  color: var(--vhs-crt-green);
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.read-more-btn:hover {
  color: var(--vhs-amber);
  text-shadow: 0 0 5px var(--vhs-amber);
}

.pagination {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 2px solid var(--vhs-crt-green);
  text-align: center;
}

.pagination-info {
  margin-bottom: 1.5rem;
}

.pagination-text {
  font-family: "VT323", monospace;
  color: var(--vhs-amber);
  font-size: 1rem;
  text-shadow: 0 0 3px var(--vhs-amber);
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pagination-btn {
  font-family: "Share Tech Mono", monospace;
  color: var(--vhs-crt-green);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--vhs-crt-green);
  background: var(--vhs-static-gray);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.pagination-btn:hover {
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray);
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
  animation: buttonGlitch 0.2s ease-in-out;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination-number {
  font-family: "Share Tech Mono", monospace;
  color: var(--vhs-crt-green);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--vhs-crt-green);
  background: var(--vhs-static-gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.pagination-number:hover {
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray);
  box-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
}

.pagination-current {
  font-family: "Share Tech Mono", monospace;
  color: var(--vhs-static-gray);
  background: var(--vhs-crt-green);
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--vhs-crt-green);
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

@media (max-width: 768px) {
  .posts-header h1 {
    font-size: 2rem;
  }
  .posts-subtitle {
    font-size: 1rem;
  }
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .post-card {
    padding: 1rem;
  }
  .post-title {
    font-size: 1rem;
  }
  .pagination-controls {
    flex-direction: column;
    gap: 1rem;
  }
  .pagination-numbers {
    order: -1;
  }
}
::selection {
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray);
}

::-moz-selection {
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray);
}

.vhs-video-wrapper {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vhs-video-frame {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16/9;
  background: var(--vhs-static-gray);
  border-radius: 24px 24px 32px 32px/18px 18px 36px 36px;
  box-shadow: 0 0 40px 8px rgba(0, 255, 65, 0.15), 0 0 0 8px var(--vhs-static-gray), 0 0 0 12px var(--vhs-crt-green), 0 0 60px 0 rgba(0, 255, 65, 0.1);
  overflow: hidden;
  border: 3px solid var(--vhs-crt-green);
  z-index: 1;
}

.vhs-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 24px 24px 32px 32px/18px 18px 36px 36px;
  filter: contrast(1.1) brightness(0.95) saturate(0.85);
  background: black;
  z-index: 2;
}

.vhs-video-scanlines {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.07) 2px, rgba(0, 255, 65, 0.07) 4px);
  mix-blend-mode: lighten;
  opacity: 0.7;
  animation: scanlines 0.12s linear infinite;
}

.vhs-video-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.08;
  animation: grain 0.5s steps(10) infinite;
}

.vhs-video-title {
  font-family: "VT323", monospace;
  color: var(--vhs-amber);
  font-size: 1.2rem;
  margin-top: 1rem;
  text-align: center;
  text-shadow: 0 0 8px var(--vhs-amber);
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .vhs-video-frame {
    max-width: 100%;
    border-radius: 16px 16px 24px 24px/12px 12px 24px 24px;
  }
  .vhs-video-frame iframe {
    border-radius: 16px 16px 24px 24px/12px 12px 24px 24px;
  }
}
@media (max-width: 600px) {
  .vhs-video-frame {
    max-width: 100vw;
    border-radius: 8px 8px 16px 16px/6px 6px 16px 16px;
  }
  .vhs-video-frame iframe {
    border-radius: 8px 8px 16px 16px/6px 6px 16px 16px;
  }
  .vhs-video-title {
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  h1, .post-title, .site-title, .hero-content h1, .about-content h2, .featured-content h2, .posts-header h1 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }
  h2, .post-title h2 {
    font-size: 1.2rem !important;
    line-height: 1.2 !important;
  }
}
@media (max-width: 600px) {
  h1, .post-title, .site-title, .hero-content h1, .about-content h2, .featured-content h2, .posts-header h1 {
    font-size: 1.1rem !important;
    line-height: 1.15 !important;
  }
  h2, .post-title h2 {
    font-size: 1rem !important;
    line-height: 1.15 !important;
  }
}
.vhs-cta-box {
  margin: 2.5rem 0;
  display: flex;
  justify-content: center;
}

.vhs-cta-content {
  background: var(--vhs-static-gray);
  border: 3px solid var(--vhs-crt-green);
  border-radius: 18px 18px 28px 28px/12px 12px 32px 32px;
  box-shadow: 0 0 30px 4px rgba(0, 255, 65, 0.13), 0 0 0 8px var(--vhs-static-gray), 0 0 0 12px var(--vhs-crt-green), 0 0 40px 0 rgba(0, 255, 65, 0.1);
  padding: 2rem 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.vhs-cta-title {
  font-family: "Press Start 2P", cursive;
  color: var(--vhs-crt-green);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--vhs-crt-green);
  letter-spacing: 1px;
}

.vhs-cta-description {
  font-family: "Share Tech Mono", monospace;
  color: var(--vhs-warm-white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 4px var(--vhs-static-gray);
}

.vhs-cta-btn {
  display: inline-block;
  font-family: "Share Tech Mono", monospace;
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray) !important;
  border: 2px solid var(--vhs-crt-green);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(0, 255, 65, 0.18);
  transition: all 0.2s cubic-bezier(0.4, 2, 0.6, 1);
  position: relative;
  z-index: 2;
}

.vhs-cta-btn:hover {
  background: var(--vhs-amber);
  color: var(--vhs-static-gray) !important;
  border-color: var(--vhs-amber);
  box-shadow: 0 0 18px var(--vhs-amber), 0 0 8px var(--vhs-crt-green);
  animation: buttonGlitch 0.2s ease-in-out;
}

@media (max-width: 600px) {
  .vhs-cta-content {
    padding: 1.2rem 0.7rem;
    font-size: 0.95rem;
  }
  .vhs-cta-title {
    font-size: 1rem;
  }
  .vhs-cta-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}
.post-category {
  font-family: "Share Tech Mono", monospace;
  color: var(--vhs-crt-green);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(0, 255, 65, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--vhs-crt-green);
  text-shadow: 0 0 4px var(--vhs-crt-green);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.tag {
  font-family: "VT323", monospace;
  color: var(--vhs-amber);
  font-size: 0.8rem;
  background: rgba(255, 191, 0, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  border: 1px solid var(--vhs-amber);
  text-shadow: 0 0 3px var(--vhs-amber);
  transition: all 0.2s ease;
}

.tag:hover {
  background: rgba(255, 191, 0, 0.2);
  box-shadow: 0 0 8px var(--vhs-amber);
}

.categories-page {
  padding: 2rem 0;
}

.categories-header {
  text-align: center;
  margin-bottom: 3rem;
}

.categories-title {
  font-family: "Press Start 2P", monospace;
  color: var(--vhs-crt-green);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--vhs-crt-green);
  animation: textGlow 2s ease-in-out infinite alternate;
}

.categories-description {
  font-family: "VT323", monospace;
  color: var(--vhs-amber);
  font-size: 1.2rem;
  text-shadow: 0 0 8px var(--vhs-amber);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.category-card {
  background: var(--vhs-static-gray);
  border: 2px solid var(--vhs-crt-green);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vhs-crt-green), transparent);
  animation: scanline 2s linear infinite;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 255, 65, 0.25);
  border-color: var(--vhs-amber);
}

.category-name {
  font-family: "Share Tech Mono", monospace;
  color: var(--vhs-crt-green);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px var(--vhs-crt-green);
}

.category-count {
  font-family: "VT323", monospace;
  color: var(--vhs-amber);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.category-link {
  font-family: "Share Tech Mono", monospace;
  color: var(--vhs-crt-green);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.category-link:hover {
  color: var(--vhs-amber);
  text-shadow: 0 0 8px var(--vhs-amber);
}

.category-page {
  padding: 2rem 0;
}

.category-header {
  text-align: center;
  margin-bottom: 3rem;
}

.category-title {
  font-family: "Press Start 2P", monospace;
  color: var(--vhs-crt-green);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--vhs-crt-green);
  animation: textGlow 2s ease-in-out infinite alternate;
}

.category-description {
  font-family: "VT323", monospace;
  color: var(--vhs-amber);
  font-size: 1.2rem;
  text-shadow: 0 0 8px var(--vhs-amber);
}

.category-navigation {
  text-align: center;
  margin-top: 3rem;
}

.tags-page {
  padding: 2rem 0;
}

.tags-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tags-title {
  font-family: "Press Start 2P", monospace;
  color: var(--vhs-crt-green);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--vhs-crt-green);
  animation: textGlow 2s ease-in-out infinite alternate;
}

.tags-description {
  font-family: "VT323", monospace;
  color: var(--vhs-amber);
  font-size: 1.2rem;
  text-shadow: 0 0 8px var(--vhs-amber);
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.tag-item {
  font-family: "VT323", monospace;
  color: var(--vhs-amber);
  text-decoration: none;
  background: rgba(255, 191, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--vhs-amber);
  text-shadow: 0 0 4px var(--vhs-amber);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tag-item:hover {
  background: rgba(255, 191, 0, 0.2);
  box-shadow: 0 0 12px var(--vhs-amber);
  transform: translateY(-2px);
}

.tag-name {
  font-size: 1rem;
}

.tag-count {
  font-size: 0.8rem;
  opacity: 0.8;
}

.tag-page {
  padding: 2rem 0;
}

.tag-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tag-title {
  font-family: "Press Start 2P", monospace;
  color: var(--vhs-crt-green);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--vhs-crt-green);
  animation: textGlow 2s ease-in-out infinite alternate;
}

.tag-description {
  font-family: "VT323", monospace;
  color: var(--vhs-amber);
  font-size: 1.2rem;
  text-shadow: 0 0 8px var(--vhs-amber);
}

.tag-navigation {
  text-align: center;
  margin-top: 3rem;
}

.post {
  max-width: 100%;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 2rem;
  text-align: center;
}

.post .post-title {
  font-family: "Press Start 2P", monospace;
  color: var(--vhs-crt-green);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--vhs-crt-green);
  animation: textGlow 2s ease-in-out infinite alternate;
  line-height: 1.3;
}

.podcast-page {
  padding: 2rem 0 3rem;
}

.podcast-title {
  margin: 0 0 0.25rem 0;
  font-size: 2rem;
}

.podcast-tagline {
  margin: 0 0 1rem 0;
  color: #ddd;
}

.podcast-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 2rem;
}

.podcast-button {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--vhs-crt-green);
  background: var(--vhs-static-gray);
  color: var(--vhs-crt-green);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.podcast-button:hover {
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.podcast-latest {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.podcast-latest .hint {
  color: #ccc;
  font-size: 0.95rem;
  margin-top: -0.25rem;
  margin-bottom: 1rem;
}

.episode-embed iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 12px;
}

.podcast-episodes h2 {
  margin-bottom: 1rem;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .episodes-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.podcast-episode-card {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--vhs-static-gray);
  border: 2px solid var(--vhs-crt-green);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .podcast-episode-card {
    grid-template-columns: 1fr;
  }
}
.podcast-episode-card .episode-cover img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.episode-title {
  margin: 0 0 0.25rem 0;
}

.episode-title a {
  text-decoration: none;
}

.episode-title a:hover {
  text-decoration: underline;
}

.episode-date {
  margin: 0 0 0.5rem 0;
  color: #bbb;
  font-size: 0.95rem;
}

.episode-summary {
  margin: 0.25rem 0 0.75rem;
}

.podcast-footer-note {
  margin-top: 2rem;
  color: #ccc;
  font-size: 0.95rem;
}

/* Podcast Landing Page Styles */
.podcast-hero {
  background: linear-gradient(135deg, var(--vhs-dark-brown) 0%, var(--vhs-brown) 50%, var(--vhs-faded-red) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: -3rem 0 0 0;
}
.podcast-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.05) 2px, rgba(0, 255, 65, 0.05) 4px);
  animation: scanlines 0.1s linear infinite;
  pointer-events: none;
}

.podcast-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.podcast-hero-title {
  font-size: 3rem;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 20px var(--vhs-crt-green), 0 0 40px var(--vhs-crt-green);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.podcast-hero-tagline {
  font-family: "VT323", monospace;
  font-size: 1.5rem;
  color: var(--vhs-amber);
  margin: 0 0 2.5rem 0;
  text-shadow: 0 0 10px var(--vhs-amber);
}

.podcast-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.podcast-cta-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.podcast-about {
  padding: 4rem 0;
  background: var(--vhs-static-gray);
}
.podcast-about h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.podcast-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
}
.podcast-description p {
  margin-bottom: 1.5rem;
}

.podcast-subscribe-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  text-align: center;
}
.podcast-subscribe-section h2 {
  margin-bottom: 1rem;
}

.podcast-subscribe-intro {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--vhs-warm-white);
}

.podcast-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.podcast-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Share Tech Mono", monospace;
  border: 2px solid var(--vhs-crt-green);
  background: var(--vhs-static-gray);
  color: var(--vhs-crt-green);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.podcast-button svg {
  flex-shrink: 0;
}
.podcast-button:hover {
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 65, 0.4), 0 0 20px rgba(0, 255, 65, 0.3);
}

.podcast-featured {
  padding: 4rem 0;
  background: var(--vhs-static-gray);
}
.podcast-featured h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.podcast-featured-episode {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.featured-details h3 {
  margin-top: 0;
  font-size: 1.8rem;
}

.episode-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 0.5rem 0 1.5rem;
  font-family: "VT323", monospace;
  font-size: 1.1rem;
  color: var(--vhs-amber);
  text-shadow: 0 0 5px var(--vhs-amber);
}

.episode-summary {
  font-size: 1.1rem;
  line-height: 1.7;
}

.placeholder-video {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--vhs-crt-green);
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
}
.placeholder-video p {
  font-family: "Press Start 2P", cursive;
  color: var(--vhs-crt-green);
  text-shadow: 0 0 10px var(--vhs-crt-green);
}

.podcast-episodes-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
}
.podcast-episodes-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.podcast-episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .podcast-episodes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.podcast-episode-item {
  background: var(--vhs-static-gray);
  border: 2px solid var(--vhs-crt-green);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.podcast-episode-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 255, 65, 0.3), 0 0 30px rgba(0, 255, 65, 0.2);
  border-color: var(--vhs-amber);
}

.episode-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.episode-thumbnail a, .episode-thumbnail .episode-placeholder {
  position: absolute;
  inset: 0;
}
.episode-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.episode-thumbnail a:hover img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}
.play-overlay svg {
  color: var(--vhs-crt-green);
  filter: drop-shadow(0 0 10px var(--vhs-crt-green));
  transition: transform 0.3s ease;
}
.play-overlay:hover {
  background: rgba(0, 0, 0, 0.6);
}
.play-overlay:hover svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px var(--vhs-crt-green));
}

.episode-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}
.episode-placeholder p {
  font-family: "Press Start 2P", cursive;
  font-size: 0.8rem;
  color: var(--vhs-crt-green);
  text-shadow: 0 0 10px var(--vhs-crt-green);
}

.episode-info {
  padding: 1.5rem;
}
.episode-info h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1.2rem;
  line-height: 1.4;
}
.episode-info .episode-meta {
  margin-bottom: 1rem;
}
.episode-info .episode-summary {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.podcast-cta-footer {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--vhs-dark-brown) 0%, var(--vhs-brown) 100%);
  text-align: center;
  position: relative;
}
.podcast-cta-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 65, 0.05) 2px, rgba(0, 255, 65, 0.05) 4px);
  pointer-events: none;
}
.podcast-cta-footer h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}
.podcast-cta-footer p {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.podcast-cta-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.podcast-cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .podcast-hero {
    padding: 3rem 1.5rem;
  }
  .podcast-hero-title {
    font-size: 2rem;
  }
  .podcast-hero-tagline {
    font-size: 1.2rem;
  }
  .podcast-episodes-grid {
    grid-template-columns: 1fr;
  }
  .podcast-cta-footer {
    padding: 3rem 1.5rem;
  }
}
/* Books / Comics Landing Page */
.books-hero {
  background: linear-gradient(135deg, var(--vhs-dark-brown) 0%, var(--vhs-brown) 50%, var(--vhs-faded-red) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: -3rem 0 0 0;
}
.books-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.05) 2px, rgba(0, 255, 65, 0.05) 4px);
  animation: scanlines 0.1s linear infinite;
  pointer-events: none;
}

.books-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.books-hero-title {
  font-size: 3rem;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 20px var(--vhs-crt-green), 0 0 40px var(--vhs-crt-green);
}

.books-hero-tagline {
  font-family: "VT323", monospace;
  font-size: 1.3rem;
  color: var(--vhs-amber);
  text-shadow: 0 0 10px var(--vhs-amber);
  margin: 0 0 2rem 0;
}

.books-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.books-series {
  padding: 4rem 0;
  background: var(--vhs-static-gray);
}

.series-section {
  margin-bottom: 3rem;
}

.series-header {
  text-align: center;
  margin-bottom: 2rem;
}

.series-title {
  font-size: 2.2rem;
  margin: 0 0 0.5rem 0;
}

.series-tagline {
  font-family: "VT323", monospace;
  color: var(--vhs-amber);
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
}

.series-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .series-grid {
    grid-template-columns: 1fr;
  }
}
.book-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  background: var(--vhs-static-gray);
  border: 2px solid var(--vhs-crt-green);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.book-card:hover {
  transform: translateY(-3px);
  border-color: var(--vhs-amber);
  box-shadow: 0 6px 16px rgba(0, 255, 65, 0.3), 0 0 30px rgba(0, 255, 65, 0.2);
}

@media (max-width: 600px) {
  .book-card {
    grid-template-columns: 1fr;
  }
}
.book-cover img {
  width: 160px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .book-cover img {
    width: 100%;
    height: auto;
  }
}
.book-title {
  margin: 0;
  font-size: 1.3rem;
}

.book-subtitle {
  margin: 0.2rem 0 0.5rem;
  color: #ddd;
}

.book-meta {
  margin: 0 0 0.5rem;
  color: #bbb;
  font-size: 0.95rem;
}

.book-description {
  margin: 0 0 0.75rem;
}

.book-format-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.format-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Share Tech Mono", monospace;
  border: 2px solid var(--vhs-crt-green);
  background: var(--vhs-static-gray);
  color: var(--vhs-crt-green);
  transition: all 0.25s ease;
}

.format-button:hover {
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray);
  transform: translateY(-1px);
}

.format-button.pdf {
  border-color: var(--vhs-crt-green);
}

.format-button.epub {
  border-color: var(--vhs-crt-green);
}

.format-button.kindle {
  border-color: var(--vhs-amber);
}

.format-button.paperback {
  border-color: var(--vhs-amber);
}

.format-button.hardcover {
  border-color: var(--vhs-amber);
}

.books-cta-footer {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--vhs-dark-brown) 0%, var(--vhs-brown) 100%);
  text-align: center;
  position: relative;
}

.books-cta-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 65, 0.05) 2px, rgba(0, 255, 65, 0.05) 4px);
  pointer-events: none;
}

.books-cta-footer h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}

.books-cta-footer p {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.books-cta-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.post .post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: "VT323", monospace;
  color: var(--vhs-amber);
  font-size: 1.1rem;
}

.post .post-description {
  font-family: "Share Tech Mono", monospace;
  color: var(--vhs-static-gray);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 0 4px var(--vhs-static-gray);
}

.post .post-content {
  font-family: "Share Tech Mono", monospace;
  color: var(--vhs-static-gray);
  line-height: 1.9;
  font-size: 1.15rem;
  margin-bottom: 3rem;
}

.post .post-content h1, .post .post-content h2, .post .post-content h3, .post .post-content h4, .post .post-content h5, .post .post-content h6 {
  font-family: "Press Start 2P", monospace;
  color: var(--vhs-crt-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--vhs-crt-green);
}

.post .post-content h1 {
  font-size: 2rem;
}

.post .post-content h2 {
  font-size: 1.65rem;
}

.post .post-content h3 {
  font-size: 1.4rem;
}

.post .post-content h4 {
  font-size: 1.2rem;
}

.post .post-content p {
  margin-bottom: 1.4rem;
  font-size: 1.15rem;
}

.post .post-content a {
  color: var(--vhs-amber);
  font-size: 1.1rem;
  text-decoration: none;
  text-shadow: 0 0 4px var(--vhs-amber);
  transition: all 0.2s ease;
}

.post .post-content a:hover {
  color: var(--vhs-crt-green);
  text-shadow: 0 0 8px var(--vhs-crt-green);
}

.post .post-content ul, .post .post-content ol {
  margin-bottom: 1.2rem;
  padding-left: 2rem;
}

.post .post-content li {
  margin-bottom: 0.5rem;
}

.post .post-content blockquote {
  border-left: 3px solid var(--vhs-crt-green);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--vhs-amber);
  text-shadow: 0 0 4px var(--vhs-amber);
}

.post .post-content code {
  font-family: "Share Tech Mono", monospace;
  background: rgba(0, 255, 65, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  color: var(--vhs-crt-green);
  text-shadow: 0 0 2px var(--vhs-crt-green);
}

.post .post-content pre {
  background: var(--vhs-static-gray);
  border: 1px solid var(--vhs-crt-green);
  border-radius: 6px;
  padding: 1rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.post .post-content pre code {
  background: none;
  padding: 0;
  color: var(--vhs-crt-green);
}

.post .post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--vhs-crt-green);
  border-radius: 2px;
}

.post .post-taxonomy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: "Share Tech Mono", monospace;
}

.post .post-category-section, .post .post-tags-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.taxonomy-label {
  color: var(--vhs-amber);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 4px var(--vhs-amber);
  font-weight: bold;
}

.post .post-category-link {
  color: var(--vhs-crt-green);
  text-decoration: none;
  font-size: 0.9rem;
  background: rgba(0, 255, 65, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--vhs-crt-green);
  text-shadow: 0 0 4px var(--vhs-crt-green);
  transition: all 0.2s ease;
}

.post .post-category-link:hover {
  background: rgba(0, 255, 65, 0.2);
  box-shadow: 0 0 8px var(--vhs-crt-green);
}

.post .post-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post .post-tag-link {
  color: var(--vhs-amber);
  text-decoration: none;
  font-size: 0.8rem;
  background: rgba(255, 191, 0, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  border: 1px solid var(--vhs-amber);
  text-shadow: 0 0 3px var(--vhs-amber);
  transition: all 0.2s ease;
}

.post .post-tag-link:hover {
  background: rgba(255, 191, 0, 0.2);
  box-shadow: 0 0 6px var(--vhs-amber);
}

@media (max-width: 900px) {
  .post .post-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .post .post-meta {
    font-size: 1rem;
    gap: 0.8rem;
  }
  .post .post-content h1 {
    font-size: 1.5rem;
  }
  .post .post-content h2 {
    font-size: 1.3rem;
  }
  .post .post-content h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .post .post-title {
    font-size: 1.4rem;
    line-height: 1.15;
  }
  .post .post-meta {
    font-size: 0.9rem;
    gap: 0.6rem;
    flex-direction: column;
  }
  .post .post-content h1 {
    font-size: 1.3rem;
  }
  .post .post-content h2 {
    font-size: 1.1rem;
  }
  .post .post-content h3 {
    font-size: 1rem;
  }
  .post .post-taxonomy {
    gap: 0.8rem;
  }
  .post .post-category-section, .post .post-tags-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}
.social-links {
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--vhs-crt-green);
}

.site-footer .social-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--vhs-crt-green);
}

.site-footer .social-links-container {
  gap: 1rem;
}

.site-footer .social-link {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

.social-links-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Share Tech Mono", monospace;
  color: var(--vhs-crt-green);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--vhs-crt-green);
  background: var(--vhs-static-gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.social-link:hover {
  background: var(--vhs-crt-green);
  color: var(--vhs-static-gray);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
  animation: buttonGlitch 0.2s ease-in-out;
  transform: translateY(-2px);
}
.social-link:hover .social-icon {
  animation: iconGlow 0.5s ease-in-out;
}

.social-icon {
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-name {
  font-weight: bold;
}

.social-link.social-mastodon {
  border-color: #6364ff;
  color: #6364ff;
}
.social-link.social-mastodon:hover {
  background: #6364ff;
  color: var(--vhs-static-gray);
  box-shadow: 0 0 15px rgba(99, 100, 255, 0.4);
}

.social-link.social-instagram {
  border-color: #e4405f;
  color: #e4405f;
}
.social-link.social-instagram:hover {
  background: #e4405f;
  color: var(--vhs-static-gray);
  box-shadow: 0 0 15px rgba(228, 64, 95, 0.4);
}

.social-link.social-pixelfed {
  border-color: #0084ff;
  color: #0084ff;
}
.social-link.social-pixelfed:hover {
  background: #0084ff;
  color: var(--vhs-static-gray);
  box-shadow: 0 0 15px rgba(0, 132, 255, 0.4);
}

.social-link.social-facebook {
  border-color: #1877f2;
  color: #1877f2;
}
.social-link.social-facebook:hover {
  background: #1877f2;
  color: var(--vhs-static-gray);
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}

.social-link.social-youtube {
  border-color: #ff0000;
  color: #ff0000;
}
.social-link.social-youtube:hover {
  background: #ff0000;
  color: var(--vhs-static-gray);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.icon-mastodon::before {
  content: "🐘";
  font-size: 1.2rem;
}

.icon-instagram::before {
  content: "📷";
  font-size: 1.2rem;
}

.icon-pixelfed::before {
  content: "📱";
  font-size: 1.2rem;
}

.icon-facebook::before {
  content: "📘";
  font-size: 1.2rem;
}

.icon-youtube::before {
  content: "📺";
  font-size: 1.2rem;
}

@keyframes iconGlow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@media (max-width: 768px) {
  .social-links-container {
    gap: 1rem;
  }
  .social-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  .social-icon {
    font-size: 1rem;
  }
}
.vhs-img-wrapper {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vhs-img-frame {
  position: relative;
  width: 100%;
  background: var(--vhs-static-gray);
  border-radius: 20px 20px 32px 32px/14px 14px 36px 36px;
  box-shadow: 0 0 30px 4px rgba(0, 255, 65, 0.13), 0 0 0 8px var(--vhs-static-gray), 0 0 0 12px var(--vhs-crt-green), 0 0 40px 0 rgba(0, 255, 65, 0.1);
  overflow: hidden;
  border: 3px solid var(--vhs-crt-green);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.vhs-img-full {
  width: 100%;
  max-width: 100%;
}

.vhs-img-normal {
  width: 60%;
  max-width: 480px;
  margin: 0 auto;
}

.vhs-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px 20px 32px 32px/14px 14px 36px 36px;
  filter: contrast(1.1) brightness(0.97) saturate(0.9);
  background: black;
  z-index: 2;
  object-fit: contain;
}

.vhs-img-full .vhs-img-frame img,
.vhs-img-normal .vhs-img-frame img {
  border-radius: 20px 20px 32px 32px/14px 14px 36px 36px;
}

.vhs-img-scanlines {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.07) 2px, rgba(0, 255, 65, 0.07) 4px);
  mix-blend-mode: lighten;
  opacity: 0.7;
  animation: scanlines 0.12s linear infinite;
}

.vhs-img-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.08;
  animation: grain 0.5s steps(10) infinite;
}

.vhs-img-caption {
  font-family: "VT323", monospace;
  color: var(--vhs-amber);
  font-size: 1.05rem;
  margin-top: 0.7rem;
  text-align: center;
  text-shadow: 0 0 8px var(--vhs-amber);
  letter-spacing: 1px;
  max-width: 90vw;
}

@media (max-width: 900px) {
  .vhs-img-normal {
    width: 90%;
    max-width: 90vw;
  }
  .vhs-img-frame {
    border-radius: 14px 14px 24px 24px/8px 8px 24px 24px;
  }
  .vhs-img-frame img {
    border-radius: 14px 14px 24px 24px/8px 8px 24px 24px;
  }
}
@media (max-width: 600px) {
  .vhs-img-full,
  .vhs-img-normal {
    width: 100%;
    max-width: 100vw;
  }
  .vhs-img-frame {
    border-radius: 8px 8px 16px 16px/4px 4px 16px 16px;
  }
  .vhs-img-frame img {
    border-radius: 8px 8px 16px 16px/4px 4px 16px 16px;
  }
  .vhs-img-caption {
    font-size: 0.95rem;
  }
}
.music-player {
  margin: 2rem 0;
  font-family: "Share Tech Mono", monospace;
  position: relative;
}

@keyframes vhsTracking {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(100%);
  }
}
.music-player-container {
  background: var(--vhs-static-gray);
  border: 3px solid var(--vhs-crt-green);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.music-player-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0, 255, 65, 0.05) 1px, rgba(0, 255, 65, 0.05) 2px);
  pointer-events: none;
  z-index: 1;
}
.music-player-container:hover {
  box-shadow: 0 0 30px rgba(0, 255, 65, 0.5), inset 0 0 20px rgba(0, 0, 0, 0.5);
  border-color: var(--vhs-amber);
  animation: vhsGlitch 0.2s ease-in-out;
}

@keyframes vhsGlitch {
  0%, 100% {
    transform: translate(0);
  }
  25% {
    transform: translate(-1px, 1px);
  }
  50% {
    transform: translate(1px, -1px);
  }
  75% {
    transform: translate(-1px, -1px);
  }
}
.music-player-cover {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.music-player-cover img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid var(--vhs-crt-green);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  filter: sepia(0.3) contrast(1.1) brightness(0.9);
}
.music-player-cover img:hover {
  transform: scale(1.05);
  filter: sepia(0.2) contrast(1.2) brightness(1);
  box-shadow: 0 0 25px rgba(0, 255, 65, 0.5), inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.music-player-info {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.music-player-title {
  font-family: "Press Start 2P", cursive;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--vhs-crt-green);
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
  text-shadow: 0 0 5px var(--vhs-crt-green), 0 0 10px var(--vhs-crt-green);
  letter-spacing: 1px;
}
.music-player-title:hover {
  animation: textGlitch 0.3s ease-in-out;
}

.music-player-artist {
  font-family: "VT323", monospace;
  font-size: 1.1rem;
  color: var(--vhs-amber);
  margin: 0;
  font-weight: 400;
  text-shadow: 0 0 5px var(--vhs-amber);
}

.music-player-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.music-player-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.music-player-play {
  background: var(--vhs-static-gray);
  border: 3px solid var(--vhs-crt-green);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.music-player-play::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 65, 0.1) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.music-player-play:hover {
  background: var(--vhs-crt-green);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 255, 65, 0.5), inset 0 0 10px rgba(0, 0, 0, 0.3);
}
.music-player-play:hover::before {
  opacity: 1;
}
.music-player-play:active {
  transform: scale(0.95);
  animation: buttonPress 0.1s ease-in-out;
}
.music-player-play svg {
  width: 24px;
  height: 24px;
  color: var(--vhs-crt-green);
  transition: color 0.3s ease;
}
.music-player-play:hover svg {
  color: var(--vhs-static-gray);
}

.music-player-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 1rem;
}

.music-player-time {
  font-family: "VT323", monospace;
  font-size: 0.9rem;
  color: var(--vhs-amber);
  font-weight: 400;
  min-width: 35px;
  text-align: center;
  text-shadow: 0 0 3px var(--vhs-amber);
}

.music-player-slider {
  flex: 1;
  position: relative;
}

.music-player-seek {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--vhs-static-gray);
  border: 2px solid var(--vhs-crt-green);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}
.music-player-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--vhs-crt-green);
  cursor: pointer;
  border: 2px solid var(--vhs-static-gray);
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.5), inset 0 0 5px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}
.music-player-seek::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.7), inset 0 0 5px rgba(0, 0, 0, 0.3);
}
.music-player-seek::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--vhs-crt-green);
  cursor: pointer;
  border: 2px solid var(--vhs-static-gray);
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.5), inset 0 0 5px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}
.music-player-seek::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.7), inset 0 0 5px rgba(0, 0, 0, 0.3);
}

.music-player-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  border-radius: 4px;
  background: var(--vhs-static-gray);
  pointer-events: none;
  z-index: 1;
  border: 2px solid var(--vhs-crt-green);
}

.music-player-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--vhs-crt-green) 0%, var(--vhs-amber) 100%);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.music-player-volume {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.music-player-mute {
  background: var(--vhs-static-gray);
  border: 2px solid var(--vhs-crt-green);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.music-player-mute:hover {
  background: var(--vhs-crt-green);
  box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}
.music-player-mute svg {
  width: 18px;
  height: 18px;
  color: var(--vhs-crt-green);
  transition: color 0.2s ease;
}
.music-player-mute:hover svg {
  color: var(--vhs-static-gray);
}

.music-player-volume-slider {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background: var(--vhs-static-gray);
  border: 1px solid var(--vhs-crt-green);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
}
.music-player-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vhs-amber);
  cursor: pointer;
  border: 1px solid var(--vhs-static-gray);
  box-shadow: 0 0 8px rgba(255, 179, 71, 0.5);
  transition: all 0.2s ease;
}
.music-player-volume-slider::-webkit-slider-thumb:hover {
  background: var(--vhs-crt-green);
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0, 255, 65, 0.5);
}
.music-player-volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vhs-amber);
  cursor: pointer;
  border: 1px solid var(--vhs-static-gray);
  box-shadow: 0 0 8px rgba(255, 179, 71, 0.5);
  transition: all 0.2s ease;
}
.music-player-volume-slider::-moz-range-thumb:hover {
  background: var(--vhs-crt-green);
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0, 255, 65, 0.5);
}

.music-player.loading .music-player-container {
  animation: vhsLoading 1s ease-in-out infinite;
}

@keyframes vhsLoading {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .music-player-container {
    padding: 1rem;
  }
  .music-player-cover img {
    width: 100px;
    height: 100px;
  }
  .music-player-title {
    font-size: 0.9rem;
  }
  .music-player-artist {
    font-size: 1rem;
  }
  .music-player-play {
    width: 50px;
    height: 50px;
  }
  .music-player-play svg {
    width: 20px;
    height: 20px;
  }
  .music-player-progress {
    margin: 0 0.5rem;
  }
  .music-player-volume-slider {
    width: 60px;
  }
}
.music-player.glitch {
  animation: vhsGlitchEffect 0.3s ease-in-out;
}

@keyframes vhsGlitchEffect {
  0%, 100% {
    transform: translate(0);
  }
  10% {
    transform: translate(-2px, 2px);
  }
  20% {
    transform: translate(2px, -2px);
  }
  30% {
    transform: translate(-2px, -2px);
  }
  40% {
    transform: translate(2px, 2px);
  }
  50% {
    transform: translate(-1px, 1px);
  }
  60% {
    transform: translate(1px, -1px);
  }
  70% {
    transform: translate(-1px, -1px);
  }
  80% {
    transform: translate(1px, 1px);
  }
  90% {
    transform: translate(0);
  }
}
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.8;
  color: #333;
  background-color: #fafafa;
  margin: 0;
  padding: 0;
  font-size: 18px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem 0;
  text-align: center;
}
.site-header .site-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.site-header .site-description {
  font-size: 1.3rem;
  margin: 0.5rem 0 0 0;
  opacity: 0.9;
}

.main-content {
  padding: 3rem 0;
  min-height: 60vh;
}

article.post .post-content img {
  max-width: 100%;
  height: auto;
}

.site-footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
}
.site-footer p {
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .site-header .site-title {
    font-size: 2rem;
  }
  article.post .post-content .separator {
    text-align: left !important;
  }
  article.post .post-content .separator > a {
    margin-left: 0.3em !important;
  }
  article.post .post-content .separator > a > img {
    width: 98% !important;
    height: auto;
  }
}

/*# sourceMappingURL=main.css.map */