/* Lorenzo's Music - Authentic Underground VHS Aesthetic */

/* VHS Color Palette - Limited & Distorted */
:root {
    --dark-static-black: #1a1a1a;
    --washed-out-grey: #8c8c8c;
    --off-white-beige: #f2f2e6;
    --distorted-purple: #9933ff;
    --flickering-cyan: #00ffff;
    --faded-red: #cc0000;
    --vhs-black: #000000;
    --vhs-white: #ffffff;
    --vhs-gray: #404040;
    --vhs-dark-gray: #2a2a2a;
    --vhs-light-gray: #6a6a6a;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'IBM Plex Mono', 'Inconsolata', 'Anonymous Pro', monospace;
    line-height: 1.6;
    color: var(--off-white-beige);
    background-color: var(--dark-static-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow-x: hidden;
    width: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(140, 140, 140, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(140, 140, 140, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(140, 140, 140, 0.03) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
    animation: vhs-static 2s infinite;
}

@keyframes vhs-static {
    0% { opacity: 0.9; }
    50% { opacity: 1; }
    100% { opacity: 0.9; }
}

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

/* Typography - Retro & Slightly Degraded */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Press Start 2P', 'VT323', 'Fira Code', monospace;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        2px 2px 0px var(--distorted-purple),
        4px 4px 0px var(--faded-red);
    color: var(--off-white-beige);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--off-white-beige);
    font-family: 'IBM Plex Mono', 'Inconsolata', monospace;
    line-height: 1.8;
}

a {
    color: var(--flickering-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    word-wrap: break-word;
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

a:hover {
    color: var(--distorted-purple);
    text-shadow: 
        1px 1px 0px var(--flickering-cyan),
        2px 2px 0px var(--faded-red);
    animation: text-glitch 0.3s infinite;
}

@keyframes text-glitch {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-1px); }
    75% { transform: translateX(1px); }
}

/* VHS Artifacts and Effects */
.vhs-glitch {
    position: relative;
    overflow: hidden;
}

.vhs-glitch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(153, 51, 255, 0.3), transparent);
    animation: vhs-scan 4s infinite;
    z-index: 1;
}

@keyframes vhs-scan {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.vhs-tracking::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(140, 140, 140, 0.1) 2px,
        rgba(140, 140, 140, 0.1) 4px
    );
    pointer-events: none;
    z-index: 5;
}

.vhs-static {
    position: relative;
}

.vhs-static::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(140, 140, 140, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(140, 140, 140, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(140, 140, 140, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px, 40px 40px;
    animation: vhs-static 0.5s infinite;
    pointer-events: none;
    z-index: 3;
}

/* Color Aberration Effect */
.color-aberration {
    position: relative;
}

.color-aberration::before,
.color-aberration::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.color-aberration::before {
    color: var(--faded-red);
    transform: translateX(-2px);
}

.color-aberration::after {
    color: var(--flickering-cyan);
    transform: translateX(2px);
}

/* Buttons - Slightly Jagged Borders */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 3px solid var(--washed-out-grey);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    background: var(--dark-static-black);
    color: var(--off-white-beige);
    position: relative;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(153, 51, 255, 0.1) 50%, transparent 70%);
    animation: button-scan 2s infinite;
}

@keyframes button-scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn-primary {
    background-color: var(--faded-red);
    color: var(--dark-static-black);
    border-color: var(--faded-red);
}

.btn-primary:hover {
    background-color: var(--distorted-purple);
    color: var(--off-white-beige);
    border-color: var(--distorted-purple);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(153, 51, 255, 0.5);
}

.btn-secondary {
    background-color: var(--dark-static-black);
    color: var(--off-white-beige);
    border-color: var(--washed-out-grey);
}

.btn-secondary:hover {
    background-color: var(--washed-out-grey);
    color: var(--dark-static-black);
    border-color: var(--off-white-beige);
    transform: scale(1.02);
}

.btn-outline {
    background-color: transparent;
    color: var(--flickering-cyan);
    border: 2px solid var(--flickering-cyan);
}

.btn-outline:hover {
    background-color: var(--flickering-cyan);
    color: var(--dark-static-black);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Navigation - VCR Display Style */
.navbar {
    background-color: var(--dark-static-black);
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    border-bottom: 3px solid var(--faded-red);
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.3);
    overflow-x: hidden;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--flickering-cyan);
    font-family: 'Press Start 2P', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        2px 2px 0px var(--distorted-purple),
        4px 4px 0px var(--faded-red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--off-white-beige);
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'IBM Plex Mono', monospace;
    position: relative;
}

.nav-menu a:hover {
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--flickering-cyan);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--off-white-beige);
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Hero Section - TV Screen Style */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--off-white-beige);
    overflow: hidden;
    /* background: var(--dark-static-black); */
    border: 20px solid var(--washed-out-grey);
    border-radius: 20px;
    margin: 20px;
    box-shadow: 
        inset 0 0 50px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(204, 0, 0, 0.5);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, var(--faded-red) 0%, var(--dark-static-black) 50%, var(--distorted-purple) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.1) 2px,
            rgba(140, 140, 140, 0.1) 4px
        );
    z-index: -1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    filter: sepia(50%) saturate(150%) contrast(120%) brightness(0.7);
    z-index: -1;
}

/* Desktop background image (default) */
.hero-bg-desktop {
    display: block;
}

/* Mobile background image (hidden by default) */
.hero-bg-mobile {
    display: none;
}



.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    margin: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 
        2px 2px 0px var(--distorted-purple),
        4px 4px 0px var(--faded-red),
        6px 6px 0px var(--flickering-cyan);
    color: var(--off-white-beige);
    font-family: 'Press Start 2P', monospace;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: title-flicker 3s infinite;
}

@keyframes title-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
    75% { opacity: 0.9; }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--off-white-beige);
    font-family: 'IBM Plex Mono', monospace;
    text-shadow: 1px 1px 0px var(--washed-out-grey);
}

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

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--flickering-cyan);
    font-family: 'Press Start 2P', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        2px 2px 0px var(--distorted-purple),
        4px 4px 0px var(--faded-red);
}

/* Featured Music */
.featured-music {
    padding: 5rem 0;
    background-color: var(--vhs-dark-gray);
    border-top: 3px solid var(--washed-out-grey);
    border-bottom: 3px solid var(--washed-out-grey);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.music-card {
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.music-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(153, 51, 255, 0.5);
    border-color: var(--flickering-cyan);
}

.music-card-image {
    height: 200px;
    background-color: var(--vhs-dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--washed-out-grey);
    position: relative;
    overflow: hidden;
}

.music-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.music-card:hover .music-card-image img {
    transform: scale(1.05);
}

.music-card-image .placeholder-album {
    z-index: 1;
}

.music-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.1) 2px,
            rgba(140, 140, 140, 0.1) 4px
        );
    z-index: 1;
}

.placeholder-album {
    color: var(--washed-out-grey);
    font-size: 1.125rem;
    font-family: 'IBM Plex Mono', monospace;
    z-index: 2;
    position: relative;
}

.music-card-content {
    padding: 1.5rem;
}

.music-card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.music-card-content p {
    color: var(--off-white-beige);
    margin-bottom: 1rem;
}

/* About Preview */
.about-preview {
    padding: 5rem 0;
    background-color: var(--dark-static-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--flickering-cyan);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0px var(--distorted-purple);
}

.about-text p {
    color: var(--off-white-beige);
    margin-bottom: 1.5rem;
}

.about-image {
    height: 400px;
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.1) 2px,
            rgba(140, 140, 140, 0.1) 4px
        );
    z-index: 1;
}

.placeholder-band {
    color: var(--washed-out-grey);
    font-size: 1.125rem;
    font-family: 'IBM Plex Mono', monospace;
    z-index: 2;
    position: relative;
}

/* Latest Posts */
.latest-posts {
    padding: 5rem 0;
    background-color: var(--vhs-dark-gray);
    border-top: 3px solid var(--washed-out-grey);
}

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

.post-card {
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(153, 51, 255, 0.5);
    border-color: var(--flickering-cyan);
}

.post-card-image {
    height: 200px;
    background-color: var(--vhs-dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--washed-out-grey);
    position: relative;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-image .placeholder-album {
    z-index: 1;
}

.post-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.1) 2px,
            rgba(140, 140, 140, 0.1) 4px
        );
    z-index: 1;
}

.post-card-content {
    padding: 1.5rem;
}

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

.post-card-content h3 a {
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.post-meta {
    color: var(--washed-out-grey);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-family: 'IBM Plex Mono', monospace;
}

.post-excerpt {
    color: var(--off-white-beige);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--flickering-cyan);
    font-weight: bold;
    text-shadow: 1px 1px 0px var(--distorted-purple);
    display: inline-block;
    margin-bottom: 1rem;
}

.posts-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Page Layouts */
.page-header {
    background-color: var(--vhs-dark-gray);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 3px solid var(--faded-red);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.page-title {
    color: var(--flickering-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px var(--distorted-purple);
    position: relative;
    z-index: 2;
}

.page-subtitle {
    color: var(--off-white-beige);
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
}

.page-content {
    padding: 4rem 0;
    background-color: var(--dark-static-black);
}

/* Music Page */
.music-content {
    max-width: 1000px;
    margin: 0 auto;
}

.music-section {
    margin-bottom: 4rem;
}

.album-feature {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    background-color: var(--vhs-dark-gray);
    padding: 2rem;
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.album-art {
    height: 300px;
    background-color: var(--dark-static-black);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.album-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.1) 2px,
            rgba(140, 140, 140, 0.1) 4px
        );
    z-index: 1;
}

.placeholder-album-large {
    color: var(--washed-out-grey);
    font-size: 1.25rem;
    font-family: 'IBM Plex Mono', monospace;
    z-index: 2;
    position: relative;
}

/* Album art images */
.album-art-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%) saturate(120%) contrast(110%) brightness(0.9);
    transition: all 0.3s ease;
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.album-art-image:hover {
    filter: sepia(20%) saturate(130%) contrast(120%) brightness(0.95);
    transform: scale(1.02);
    border-color: var(--flickering-cyan);
    box-shadow: 0 8px 16px rgba(0, 255, 255, 0.2);
}

.release-art-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%) saturate(120%) contrast(110%) brightness(0.9);
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

.release-art-image:hover {
    filter: sepia(20%) saturate(130%) contrast(120%) brightness(0.95);
    transform: scale(1.02);
    border-color: var(--flickering-cyan);
    box-shadow: 0 8px 16px rgba(0, 255, 255, 0.2);
}

.album-info h3 {
    color: var(--flickering-cyan);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px var(--distorted-purple);
}

.album-description {
    color: var(--off-white-beige);
    margin-bottom: 2rem;
}

.album-tracks {
    margin-bottom: 2rem;
}

.album-tracks h4 {
    margin-bottom: 1rem;
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.album-tracks ol {
    color: var(--off-white-beige);
    padding-left: 1.5rem;
}

.album-tracks li {
    margin-bottom: 0.5rem;
}

.album-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.video-card {
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    filter: sepia(20%) saturate(120%) contrast(110%);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--flickering-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.video-info p {
    color: var(--off-white-beige);
}

/* Releases Grid */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.release-card {
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(153, 51, 255, 0.5);
    border-color: var(--distorted-purple);
}

.release-art {
    height: 200px;
    background-color: var(--vhs-dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.release-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.1) 2px,
            rgba(140, 140, 140, 0.1) 4px
        );
    z-index: 1;
}

.release-info {
    padding: 1.5rem;
}

.release-info h3 {
    color: var(--flickering-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.release-year {
    color: var(--faded-red);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.release-info p {
    color: var(--off-white-beige);
    margin-bottom: 1rem;
}

.release-links {
    display: flex;
    gap: 0.5rem;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.about-section h2 {
    color: var(--flickering-cyan);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0px var(--distorted-purple);
}

.about-section p {
    color: var(--off-white-beige);
    margin-bottom: 1rem;
}

.about-section ul {
    color: var(--off-white-beige);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.about-section li {
    margin-bottom: 0.5rem;
}

.band-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.member-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.1) 2px,
            rgba(140, 140, 140, 0.1) 4px
        );
    z-index: 1;
}

.member-photo img {
    height: -webkit-fill-available;
}

.member h3 {
    color: var(--flickering-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.member p {
    color: var(--off-white-beige);
}

.contact-info {
    background-color: var(--vhs-dark-gray);
    padding: 1.5rem;
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    margin-top: 1rem;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Blog Page */
.blog-content {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--off-white-beige);
}

.blog-post {
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.blog-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 255, 255, 0.5);
    border-color: var(--flickering-cyan);
}

.post-header h2 {
    margin-bottom: 0.5rem;
}

.post-header h2 a {
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.post-meta {
    color: var(--washed-out-grey);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-family: 'IBM Plex Mono', monospace;
}

.post-excerpt {
    color: var(--off-white-beige);
    margin-bottom: 1.5rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.read-more {
    color: var(--flickering-cyan);
    font-weight: bold;
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

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

.tag {
    background-color: var(--vhs-dark-gray);
    color: var(--off-white-beige);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--washed-out-grey);
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: 'IBM Plex Mono', monospace;
}

.tag:hover {
    background-color: var(--distorted-purple);
    color: var(--off-white-beige);
    border-color: var(--distorted-purple);
}

.no-posts {
    text-align: center;
    padding: 3rem;
    color: var(--washed-out-grey);
}

/* Blog Featured + Grid Cards */
.blog-section {
    margin-bottom: 3rem;
}
.blog-section + .blog-section {
    padding-top: 2rem;
    position: relative;
}
.blog-section + .blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    border-top: 2px solid var(--washed-out-grey);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6), 0 0 6px rgba(153, 51, 255, 0.45);
    pointer-events: none;
}
.blog-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Generic card grid for blog latest section */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.post-card {
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 255, 255, 0.5);
    border-color: var(--flickering-cyan);
}

.post-card-media {
    display: block;
    position: relative;
    overflow: hidden;
}

.post-card-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    filter: sepia(30%) saturate(120%) contrast(110%) brightness(0.9);
    border-bottom: 3px solid var(--washed-out-grey);
}

.post-card-placeholder {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--washed-out-grey);
    border-bottom: 3px solid var(--washed-out-grey);
}

.post-card-content {
    padding: 1rem;
}

.post-card-title {
    margin: 0 0 0.25rem 0;
    color: var(--off-white-beige);
}

.post-card-meta {
    color: var(--washed-out-grey);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.post-card-excerpt {
    color: var(--off-white-beige);
    margin: 0 0 0.75rem 0;
}

.post-card-actions {
    margin-top: auto;
}

@media (max-width: 480px) {
    .post-card-image,
    .post-card-placeholder {
        height: 160px;
    }
}

.featured-card {
    display: grid;
    grid-template-columns: 1.6fr 2fr;
    gap: 2rem;
    align-items: stretch;
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    padding: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.featured-media {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--dark-static-black);
}

.featured-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    filter: sepia(30%) saturate(120%) contrast(110%) brightness(0.9);
    border: 3px solid var(--washed-out-grey);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.featured-placeholder {
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--washed-out-grey);
    border: 3px solid var(--washed-out-grey);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.featured-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.featured-title {
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
    margin: 0;
}

.featured-meta {
    color: var(--washed-out-grey);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.95rem;
}

.featured-excerpt {
    color: var(--off-white-beige);
}

.featured-actions {
    margin-top: auto;
}

.mini-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.mini-card {
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.mini-media {
    display: block;
    position: relative;
    overflow: hidden;
}

.mini-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    filter: sepia(30%) saturate(120%) contrast(110%) brightness(0.9);
    border-bottom: 3px solid var(--washed-out-grey);
}

.mini-placeholder {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--washed-out-grey);
    border-bottom: 3px solid var(--washed-out-grey);
}

.mini-content {
    padding: 1rem;
}

.mini-title {
    margin: 0 0 0.25rem 0;
    color: var(--off-white-beige);
}

.mini-meta {
    color: var(--washed-out-grey);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    .featured-image,
    .featured-placeholder {
        height: 260px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mini-image,
    .mini-placeholder {
        height: 200px;
    }
}

@media (min-width: 1024px) {
    .mini-image,
    .mini-placeholder {
        height: 255px;
    }
}

@media (max-width: 640px) {
    .mini-card-grid {
        grid-template-columns: 1fr;
    }
}

/* Tag Pages */
.tag-page {
    max-width: 800px;
    margin: 0 auto;
}

.tag-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--washed-out-grey);
}

.tag-header h1 {
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
    margin-bottom: 0.5rem;
}

.tag-header p {
    color: var(--washed-out-grey);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.1rem;
}

.tag-posts {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.tag-post {
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.tag-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(153, 51, 255, 0.5);
    border-color: var(--flickering-cyan);
}

.tag-post .post-card-image {
    height: 200px;
    background-color: var(--vhs-dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--washed-out-grey);
    position: relative;
    overflow: hidden;
}

.tag-post .post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.tag-post:hover .post-card-image img {
    transform: scale(1.05);
}

.tag-post .post-card-image .placeholder-album {
    z-index: 1;
}

.tag-post .post-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.1) 2px,
            rgba(140, 140, 140, 0.1) 4px
        );
    z-index: 1;
}

.tag-post .post-card-content {
    padding: 1.5rem;
}

.tag-post .post-card-content h2 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.tag-post .post-card-content h2 a {
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.tag-post .post-meta {
    color: var(--washed-out-grey);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-family: 'IBM Plex Mono', monospace;
}

.tag-post .post-excerpt {
    color: var(--off-white-beige);
    margin-bottom: 1rem;
}

.tag-post .read-more {
    color: var(--flickering-cyan);
    font-weight: bold;
    text-shadow: 1px 1px 0px var(--distorted-purple);
    display: inline-block;
    margin-bottom: 1rem;
}

.tag-post .post-footer {
    margin-top: 0.5rem;
}

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

.tag-post .tag {
    background-color: var(--vhs-dark-gray);
    color: var(--off-white-beige);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--washed-out-grey);
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: 'IBM Plex Mono', monospace;
}

.tag-post .tag:hover {
    background-color: var(--distorted-purple);
    color: var(--off-white-beige);
    border-color: var(--distorted-purple);
}

/* Tags Index Page */
.tags-content {
    max-width: 800px;
    margin: 0 auto;
}

.tags-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--off-white-beige);
}

.tags-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.tag-item {
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.tag-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 255, 255, 0.5);
    border-color: var(--flickering-cyan);
}

.tag-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
}

.tag-name {
    color: var(--flickering-cyan);
    font-weight: bold;
    text-shadow: 1px 1px 0px var(--distorted-purple);
    font-size: 1.1rem;
}

.tag-count {
    color: var(--washed-out-grey);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.875rem;
    background-color: var(--vhs-dark-gray);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--washed-out-grey);
    border-radius: 0;
}

.no-tags {
    text-align: center;
    padding: 3rem;
    color: var(--washed-out-grey);
}

/* 404 Error Page */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-header {
    margin-bottom: 2rem;
}

.error-title {
    font-size: 8rem;
    font-weight: bold;
    color: var(--flickering-cyan);
    text-shadow: 2px 2px 0px var(--distorted-purple);
    margin-bottom: 0.5rem;
    font-family: 'Press Start 2P', monospace;
    line-height: 1;
}

.error-subtitle {
    font-size: 1.5rem;
    color: var(--washed-out-grey);
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.2em;
    margin: 0;
}

.error-message {
    margin-bottom: 3rem;
    color: var(--off-white-beige);
    font-size: 1.1rem;
    line-height: 1.6;
}

.error-message p {
    margin-bottom: 1rem;
}

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

.error-suggestions {
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    padding: 2rem;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.error-suggestions h3 {
    color: var(--flickering-cyan);
    margin-bottom: 1.5rem;
    font-family: 'IBM Plex Mono', monospace;
}

.suggestion-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.suggestion-links li {
    margin: 0;
}

.suggestion-links a {
    color: var(--off-white-beige);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--washed-out-grey);
    border-radius: 0;
    display: block;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
}

.suggestion-links a:hover {
    background-color: var(--distorted-purple);
    color: var(--off-white-beige);
    border-color: var(--distorted-purple);
    transform: translateY(-2px);
}

/* Contact Page */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--off-white-beige);
}

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

.contact-section {
    background-color: var(--vhs-dark-gray);
    padding: 2rem;
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.contact-section h2 {
    color: var(--flickering-cyan);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.contact-section p {
    color: var(--off-white-beige);
    margin-bottom: 1rem;
}

.contact-form-section {
    background-color: var(--vhs-dark-gray);
    padding: 2rem;
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    margin-bottom: 3rem;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.contact-form-section h2 {
    color: var(--flickering-cyan);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--off-white-beige);
    font-weight: bold;
    font-family: 'IBM Plex Mono', monospace;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--dark-static-black);
    color: var(--off-white-beige);
    font-family: 'IBM Plex Mono', monospace;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--flickering-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.social-links-section {
    text-align: center;
}

/* Hide hero section social links on mobile */
@media (max-width: 768px) {
    .social-links-section {
        display: none;
    }
}

.social-links-section h2 {
    color: var(--flickering-cyan);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--off-white-beige);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--flickering-cyan);
    transform: scale(1.05);
}

.social-icon {
    font-size: 2rem;
}

/* Footer */
.footer {
    background-color: var(--dark-static-black);
    color: var(--off-white-beige);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--faded-red);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--flickering-cyan);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.footer-section p {
    color: var(--off-white-beige);
    margin-bottom: 1rem;
}

.social-links {
    list-style: none;
}

.social-links li {
    margin-bottom: 0.5rem;
}

.social-links a {
    color: var(--off-white-beige);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.footer-bottom {
    border-top: 1px solid var(--washed-out-grey);
    padding-top: 1rem;
    text-align: center;
    color: var(--washed-out-grey);
}

/* Responsive Design */
/* Tablet optimization for social links */
@media (max-width: 1024px) and (min-width: 769px) {
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        gap: 0.75rem;
    }
    
    .social-icon {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    /* Mobile typography optimization */
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.1rem; }
    
    /* Reduce letter spacing for better mobile fit */
    h1, h2, h3, h4, h5, h6 {
        letter-spacing: 1px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Switch to mobile background image if available */
    .hero-bg-desktop {
        display: none;
    }
    
    .hero-bg-mobile {
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-static-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 3px solid var(--faded-red);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        height: 60vh;
        margin: 10px;
        border: 10px solid var(--washed-out-grey);
        border-radius: 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .album-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-sections {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0.75rem;
        border: 2px solid var(--washed-out-grey);
        border-radius: 0;
        clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
        background-color: var(--dark-static-black);
        min-width: 200px;
        justify-content: center;
        min-height: 44px; /* Touch-friendly minimum height */
        transition: all 0.3s ease;
    }
    
    .social-link:hover,
    .social-link:active {
        transform: scale(1.02);
        border-color: var(--flickering-cyan);
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    }
    
    .social-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Very small screen typography */
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1.1rem; }
    h4 { font-size: 1rem; }
    
    /* Further reduce letter spacing for very small screens */
    h1, h2, h3, h4, h5, h6 {
        letter-spacing: 0.5px;
    }
    
    .hero {
        height: 50vh;
        margin: 5px;
        border: 8px solid var(--washed-out-grey);
        border-radius: 8px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .hero-bg-image {
        background-size: cover;
        background-position: center;
    }
    
    /* Social links optimization for very small screens */
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        min-width: 180px;
        padding: 0.6rem;
        gap: 0.5rem;
        min-height: 40px; /* Touch-friendly minimum height for small screens */
    }
    
    .social-icon {
        font-size: 1.25rem;
    }
}

/* Links Page Styles - Mobile First */
.links-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.links-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.links-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.profile-section {
    position: relative;
    z-index: 2;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
}

.profile-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.1) 2px,
            rgba(140, 140, 140, 0.1) 4px
        );
    z-index: 1;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%) saturate(120%) contrast(110%) brightness(0.9);
    z-index: 2;
    position: relative;
}

.profile-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--flickering-cyan);
    text-shadow: 2px 2px 0px var(--distorted-purple);
}

.profile-description {
    color: var(--off-white-beige);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.links-section {
    margin-bottom: 2rem;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    display: block;
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    position: relative;
    overflow: hidden;
}

/* Background image for link cards */
.link-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    filter: sepia(50%) saturate(150%) contrast(120%) brightness(0.7);
    z-index: 1;
    transition: all 0.3s ease;
}

.link-with-bg .link-content {
    position: relative;
    z-index: 3;
}

.link-with-bg:hover .link-bg-image {
    opacity: 0.4;
    filter: sepia(40%) saturate(160%) contrast(130%) brightness(0.8);
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.link-card:hover {
    transform: translateY(-2px);
    border-color: var(--flickering-cyan);
    box-shadow: 0 8px 16px rgba(0, 255, 255, 0.3);
}

.link-highlight {
    border-color: var(--distorted-purple);
    background-color: var(--vhs-dark-gray);
}

.link-highlight:hover {
    border-color: var(--flickering-cyan);
    box-shadow: 0 8px 16px rgba(153, 51, 255, 0.4);
}

/* Enhanced hover effects for links with background images */
.link-with-bg:hover {
    transform: translateY(-2px);
    border-color: var(--flickering-cyan);
    box-shadow: 0 8px 16px rgba(0, 255, 255, 0.4);
}

.link-highlight.link-with-bg:hover {
    border-color: var(--flickering-cyan);
    box-shadow: 0 8px 16px rgba(153, 51, 255, 0.5);
}

.link-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.link-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.link-text {
    flex: 1;
}

.link-title {
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
    color: var(--off-white-beige);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.link-description {
    font-size: 0.9rem;
    margin: 0;
    color: var(--washed-out-grey);
    line-height: 1.4;
}

.link-external {
    font-size: 1.2rem;
    color: var(--flickering-cyan);
    flex-shrink: 0;
}

.links-footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.links-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.social-links-mini {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.social-link-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--dark-static-black);
    border: 2px solid var(--washed-out-grey);
    border-radius: 0;
    color: var(--off-white-beige);
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

.social-link-mini:hover {
    transform: scale(1.1);
    border-color: var(--flickering-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    color: var(--flickering-cyan);
}

.social-icon-mini {
    font-size: 1.5rem;
}

/* Desktop optimization for links page */
@media (min-width: 768px) {
    .links-content {
        max-width: 700px;
        padding: 2rem;
    }
    
    .profile-title {
        font-size: 2.2rem;
    }
    
    .profile-description {
        font-size: 1.1rem;
    }
    
    .link-card {
        padding: 2rem;
    }
    
    .link-title {
        font-size: 1.4rem;
    }
    
    .link-description {
        font-size: 1rem;
    }
    
    .social-link-mini {
        width: 60px;
        height: 60px;
    }
    
    .social-icon-mini {
        font-size: 1.8rem;
    }
}

/* Podcast Page Styles */
.podcast-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.podcast-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.podcast-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.podcast-intro {
    position: relative;
    z-index: 2;
}

.podcast-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--flickering-cyan);
    text-shadow: 2px 2px 0px var(--distorted-purple);
}

.podcast-description {
    font-size: 1.2rem;
    color: var(--off-white-beige);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Subscribe Section */
.subscribe-section {
    margin-bottom: 4rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.platform-card:hover {
    transform: translateY(-2px);
    border-color: var(--flickering-cyan);
    box-shadow: 0 8px 16px rgba(0, 255, 255, 0.3);
}

.platform-icon {
    font-size: 2rem;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.platform-info {
    flex: 1;
    z-index: 2;
    position: relative;
}

.platform-name {
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
    color: var(--off-white-beige);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.platform-description {
    font-size: 0.9rem;
    margin: 0;
    color: var(--washed-out-grey);
}

.platform-arrow {
    font-size: 1.2rem;
    color: var(--flickering-cyan);
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

/* Episodes Section */
.episodes-section {
    margin-bottom: 4rem;
}

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

.episode-card {
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.episode-card:hover {
    transform: translateY(-3px);
    border-color: var(--flickering-cyan);
    box-shadow: 0 12px 20px rgba(0, 255, 255, 0.3);
}

.episode-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.episode-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.1) 2px,
            rgba(140, 140, 140, 0.1) 4px
        );
    z-index: 1;
}

.episode-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%) saturate(120%) contrast(110%) brightness(0.9);
    transition: all 0.3s ease;
}

.episode-card:hover .episode-img {
    filter: sepia(20%) saturate(130%) contrast(120%) brightness(0.95);
}

.episode-content {
    padding: 1.5rem;
}

.episode-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.episode-number {
    color: var(--flickering-cyan);
    font-weight: bold;
    font-size: 0.9rem;
}

.episode-date {
    color: var(--washed-out-grey);
    font-size: 0.9rem;
}

.episode-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--off-white-beige);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.episode-description {
    color: var(--off-white-beige);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.episode-guest {
    color: var(--distorted-purple);
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.episode-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--flickering-cyan);
    text-shadow: 2px 2px 0px var(--distorted-purple);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    color: var(--off-white-beige);
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.podcast-contact {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.podcast-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.contact-description {
    color: var(--off-white-beige);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

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

/* Mobile optimization for podcast page */
@media (max-width: 768px) {
    .podcast-title {
        font-size: 2rem;
    }
    
    .podcast-description {
        font-size: 1rem;
    }
    
    .subscribe-section {
        margin-bottom: 2rem;
    }
    
    .subscribe-section .section-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }
    
    .platform-card {
        padding: 0.6rem 0.75rem;
        gap: 0.6rem;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .platform-icon {
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .platform-info {
        flex: 1;
        min-width: 0;
    }
    
    .platform-name {
        font-size: 0.85rem;
        margin-bottom: 0.1rem;
    }
    
    .platform-description {
        display: none;
    }
    
    .platform-arrow {
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .podcast-title {
        font-size: 1.6rem;
    }
    
    .subscribe-section {
        margin-bottom: 1.5rem;
    }
    
    .subscribe-section .section-title {
        font-size: 1.15rem;
        margin-bottom: 0.6rem;
    }
    
    .platform-grid {
        gap: 0.4rem;
        margin-top: 0.6rem;
    }
    
    .platform-card {
        padding: 0.5rem 0.6rem;
        gap: 0.5rem;
    }
    
    .platform-icon {
        font-size: 1rem;
    }
    
    .platform-name {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    
    .platform-description {
        display: none;
    }
    
    .platform-arrow {
        font-size: 0.85rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Podcast Subscription Section in Posts */
.podcast-subscribe-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.podcast-subscribe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.subscribe-title {
    color: var(--flickering-cyan);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 0px var(--distorted-purple);
    position: relative;
    z-index: 2;
}

.subscribe-description {
    color: var(--off-white-beige);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.platform-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.platform-card-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--dark-static-black);
    border: 2px solid var(--washed-out-grey);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 3px 100%, 0 calc(100% - 3px));
    position: relative;
    overflow: hidden;
}

.platform-card-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.platform-card-small:hover {
    transform: translateY(-2px);
    border-color: var(--flickering-cyan);
    box-shadow: 0 6px 12px rgba(0, 255, 255, 0.3);
}

.platform-icon-small {
    font-size: 1.5rem;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.platform-info-small {
    flex: 1;
    z-index: 2;
    position: relative;
}

.platform-name-small {
    font-size: 1rem;
    color: var(--off-white-beige);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.platform-arrow-small {
    font-size: 1rem;
    color: var(--flickering-cyan);
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

/* Mini Podcast Subscribe Component */
.podcast-subscribe-mini {
    padding: 1rem;
    background: var(--dark-static-black);
    border: 2px solid var(--flickering-cyan);
    margin: 1.5rem 0;
    position: relative;
}

.subscribe-mini-title {
    margin: 0 0 0.5rem 0;
    color: var(--flickering-cyan);
    font-family: 'Press Start 2P', monospace;
    font-size: 1rem;
    text-transform: uppercase;
}

.platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.platform-link-mini {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    background: var(--flickering-cyan);
    color: var(--dark-static-black);
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    clip-path: polygon(
        0 0,
        100% 0,
        98% 100%,
        2% 100%
    );
}

.platform-link-mini:hover {
    background: var(--vhs-white);
    transform: translateY(-1px);
}

.platform-icon-mini {
    margin-right: 0.25rem;
}

.platform-arrow-mini {
    margin-left: 0.25rem;
    font-size: 0.75rem;
}

/* Mobile optimization for podcast components */
@media (max-width: 768px) {
    .platform-grid-small {
        grid-template-columns: 1fr;
    }
    
    .subscribe-title {
        font-size: 1.3rem;
    }
    
    .platform-links {
        flex-direction: column;
    }
    
    .platform-link-mini {
        width: fit-content;
    }
    
    .platform-card-small {
        padding: 0.75rem;
    }
    
    .platform-icon-small {
        font-size: 1.25rem;
    }
    
    .platform-name-small {
        font-size: 0.9rem;
    }
}

/* Live Show Page Styles */
.live-show-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Hero Section */
.live-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.live-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

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

.live-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--flickering-cyan);
    text-shadow: 2px 2px 0px var(--distorted-purple);
}

.live-subtitle {
    font-size: 1.3rem;
    color: var(--off-white-beige);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.live-schedule {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--dark-static-black);
    border: 2px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 3px 100%, 0 calc(100% - 3px));
}

.schedule-icon {
    font-size: 1.2rem;
}

.schedule-text {
    color: var(--off-white-beige);
    font-weight: bold;
    font-size: 0.9rem;
}

.live-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

    .btn-icon {
        margin-right: 0.5rem;
    }

    /* YouTube Embed Section */
    .youtube-embed-section {
        margin-bottom: 4rem;
        text-align: center;
    }

    .youtube-embed-container {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 2rem auto;
        background-color: var(--dark-static-black);
        border: 3px solid var(--washed-out-grey);
        border-radius: 0;
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
        overflow: hidden;
        position: relative;
    }

    .youtube-embed-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(140, 140, 140, 0.05) 2px,
                rgba(140, 140, 140, 0.05) 4px
            );
        z-index: 1;
        pointer-events: none;
    }

    .youtube-embed-container iframe {
        position: relative;
        width: 100%;
        height: 450px;
        border: none;
        z-index: 2;
        filter: sepia(20%) saturate(120%) contrast(110%) brightness(0.95);
        transition: all 0.3s ease;
    }

    .youtube-embed-container:hover iframe {
        filter: sepia(10%) saturate(130%) contrast(120%) brightness(1);
    }

    .embed-cta {
        margin-top: 1.5rem;
    }

    /* Expectations Section */
.expectations-section {
    margin-bottom: 4rem;
}

.expectations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.expectation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(26, 26, 26, 0.3);
    border-left: 3px solid var(--flickering-cyan);
    transition: all 0.2s ease;
}

.expectation-item:hover {
    background-color: rgba(26, 26, 26, 0.6);
    border-left-color: var(--distorted-purple);
}

.expectation-item .expectation-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.expectation-text {
    flex: 1;
}

.expectation-item .expectation-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
    font-weight: bold;
}

.expectation-item .expectation-description {
    color: var(--off-white-beige);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Episodes Section */
.episodes-section {
    margin-bottom: 4rem;
}

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

.episode-card {
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.episode-card:hover {
    transform: translateY(-3px);
    border-color: var(--flickering-cyan);
    box-shadow: 0 12px 20px rgba(0, 255, 255, 0.3);
}

.episode-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.episode-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%) saturate(120%) contrast(110%) brightness(0.9);
    transition: all 0.3s ease;
}

.episode-card:hover .episode-img {
    filter: sepia(20%) saturate(130%) contrast(120%) brightness(0.95);
}

.episode-overlay {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0.25rem 0.5rem;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 3px 100%, 0 calc(100% - 3px));
}

.episode-duration {
    color: var(--off-white-beige);
    font-size: 0.8rem;
    font-weight: bold;
}

.episode-content {
    padding: 1.5rem;
}

.episode-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--off-white-beige);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.episode-date {
    color: var(--flickering-cyan);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.episode-description {
    color: var(--off-white-beige);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.episode-links {
    display: flex;
    gap: 0.5rem;
}

.episodes-cta {
    text-align: center;
    margin-top: 2rem;
}

/* How to Watch Section */
.how-to-watch-section {
    margin-bottom: 4rem;
}

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

.platform-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.platform-card:hover {
    transform: translateY(-2px);
    border-color: var(--flickering-cyan);
    box-shadow: 0 8px 16px rgba(0, 255, 255, 0.3);
}

.platform-icon {
    font-size: 3rem;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.platform-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.platform-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.platform-description {
    color: var(--off-white-beige);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.platform-feature {
    background-color: var(--vhs-dark-gray);
    color: var(--off-white-beige);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--washed-out-grey);
    border-radius: 0;
    font-size: 0.8rem;
    clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 3px 100%, 0 calc(100% - 3px));
}

/* Community Section */
.community-section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.community-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.community-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.community-text p {
    color: var(--off-white-beige);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.community-features {
    list-style: none;
    padding: 0;
}

.community-features li {
    color: var(--off-white-beige);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.community-cta {
    text-align: center;
}

.cta-note {
    color: var(--washed-out-grey);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Reminder Section */
.reminder-section {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.reminder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.reminder-content {
    position: relative;
    z-index: 2;
}

.reminder-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.reminder-text p {
    color: var(--off-white-beige);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.reminder-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Mobile optimization for live show page */
@media (max-width: 768px) {
    .live-title {
        font-size: 2rem;
    }
    
    .live-subtitle {
        font-size: 1.1rem;
    }
    
    .live-schedule {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .live-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .expectations-list {
        grid-template-columns: 1fr;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reminder-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .youtube-embed-container iframe {
        height: 300px;
    }
    
    /* Override for podcast page - keep horizontal layout */
    .podcast-content .platform-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 0.6rem 0.75rem;
        gap: 0.6rem;
    }
    
    .podcast-content .platform-icon {
        margin-bottom: 0;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .live-title {
        font-size: 1.6rem;
    }
    
    .live-subtitle {
        font-size: 1rem;
    }
    
    .platform-card {
        flex-direction: column;
        text-align: center;
    }
    
    .platform-icon {
        margin-bottom: 1rem;
    }
    
    /* Override for podcast page - keep horizontal layout */
    .podcast-content .platform-card {
        flex-direction: row;
        text-align: left;
        padding: 0.5rem 0.6rem;
        gap: 0.5rem;
    }
    
    .podcast-content .platform-icon {
        margin-bottom: 0;
        font-size: 1rem;
    }
}

/* Videos Page Styles */
.videos-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Videos Hero Section */
.videos-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.videos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

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

.videos-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--flickering-cyan);
    text-shadow: 2px 2px 0px var(--distorted-purple);
}

.videos-subtitle {
    font-size: 1.3rem;
    color: var(--off-white-beige);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.videos-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Featured Video Section */
.featured-video-section {
    margin-bottom: 4rem;
}

.featured-video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    overflow: hidden;
    position: relative;
}

.featured-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
    pointer-events: none;
}

.featured-video-container iframe {
    position: relative;
    width: 100%;
    height: 450px;
    border: none;
    z-index: 2;
    filter: sepia(20%) saturate(120%) contrast(110%) brightness(0.95);
    transition: all 0.3s ease;
}

.featured-video-container:hover iframe {
    filter: sepia(10%) saturate(130%) contrast(120%) brightness(1);
}

.featured-video-info {
    text-align: center;
    margin-top: 1.5rem;
}

.featured-video-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.featured-video-description {
    color: var(--off-white-beige);
    margin-bottom: 1rem;
    line-height: 1.6;
}

    .featured-video-meta {
        display: flex;
        justify-content: center;
        gap: 2rem;
        color: var(--washed-out-grey);
        font-size: 0.9rem;
    }

    /* Post Video Embed Styles */
    .post-video-embed {
        margin: 2rem 0;
        text-align: center;
    }



    .video-embed-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(140, 140, 140, 0.05) 2px,
                rgba(140, 140, 140, 0.05) 4px
            );
        z-index: 1;
        pointer-events: none;
    }

    .video-embed-container {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        background-color: var(--dark-static-black);
        border: 3px solid var(--washed-out-grey);
        border-radius: 0;
        clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
        overflow: hidden;
        position: relative;
        aspect-ratio: 16 / 9;
    }

    .video-embed-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        z-index: 2;
        filter: sepia(20%) saturate(120%) contrast(110%) brightness(0.95);
        transition: all 0.3s ease;
    }

    .video-embed-container:hover iframe {
        filter: sepia(10%) saturate(130%) contrast(120%) brightness(1);
    }

    .video-caption {
        margin-top: 1rem;
        color: var(--washed-out-grey);
        font-style: italic;
        font-size: 0.9rem;
    }
    .post-video-embed > .video-caption > p {
        text-align: center;
    }

/* Music Videos Section */
.music-videos-section {
    margin-bottom: 6rem;
}

/* Behind the Scenes Section */
.behind-scenes-section {
    margin-bottom: 6rem;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.video-card:hover {
    transform: translateY(-3px);
    border-color: var(--flickering-cyan);
    box-shadow: 0 12px 20px rgba(0, 255, 255, 0.3);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%) saturate(120%) contrast(110%) brightness(0.9);
    transition: all 0.3s ease;
}

.video-card:hover .video-img {
    filter: sepia(20%) saturate(130%) contrast(120%) brightness(0.95);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    font-size: 3rem;
    color: var(--flickering-cyan);
    text-shadow: 2px 2px 0px var(--distorted-purple);
}

.video-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--off-white-beige);
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 3px) 0, 100% 3px, 100% 100%, 3px 100%, 0 calc(100% - 3px));
}

.video-content {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--off-white-beige);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.video-date {
    color: var(--flickering-cyan);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.video-description {
    color: var(--off-white-beige);
    margin-bottom: 1rem;
    line-height: 1.5;
}

    .video-links {
        display: flex;
        gap: 0.5rem;
    }

    .section-cta {
        text-align: center;
        margin-top: 2rem;
    }

    .no-videos {
        text-align: center;
        padding: 3rem 2rem;
        color: var(--washed-out-grey);
        font-style: italic;
    }

/* Live Shows Section */
.live-shows-section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background-color: var(--vhs-dark-gray);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.live-shows-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.live-shows-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.live-shows-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.live-shows-text p {
    color: var(--off-white-beige);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.live-shows-features {
    list-style: none;
    padding: 0;
}

.live-shows-features li {
    color: var(--off-white-beige);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.live-shows-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* YouTube Subscribe Section */
.youtube-subscribe-section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    position: relative;
    overflow: hidden;
}

.youtube-subscribe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.subscribe-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.subscribe-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.subscribe-text p {
    color: var(--off-white-beige);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-icon {
    font-size: 1.2rem;
}

.benefit-text {
    color: var(--off-white-beige);
    font-size: 0.9rem;
}

.subscribe-cta {
    text-align: center;
}

.subscribe-note {
    color: var(--washed-out-grey);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Video Categories */
.video-categories-section {
    margin-bottom: 4rem;
}

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

.category-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--dark-static-black);
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(140, 140, 140, 0.05) 2px,
            rgba(140, 140, 140, 0.05) 4px
        );
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-2px);
    border-color: var(--flickering-cyan);
    box-shadow: 0 8px 16px rgba(0, 255, 255, 0.3);
}

.category-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.category-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.category-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--flickering-cyan);
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.category-description {
    color: var(--off-white-beige);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.category-count {
    color: var(--washed-out-grey);
    font-size: 0.9rem;
    font-weight: bold;
}

.category-arrow {
    font-size: 1.5rem;
    color: var(--flickering-cyan);
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

/* Mobile optimization for videos page */
@media (max-width: 768px) {
    .videos-title {
        font-size: 2rem;
    }
    
    .videos-subtitle {
        font-size: 1.1rem;
    }
    
    .videos-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .featured-video-container iframe {
        height: 300px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .live-shows-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .subscribe-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .subscribe-benefits {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        flex-direction: column;
        text-align: center;
    }
    
    .category-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .videos-title {
        font-size: 1.6rem;
    }
    
    .videos-subtitle {
        font-size: 1rem;
    }
    
    .featured-video-container iframe {
        height: 250px;
    }
} 

/* Post Layout Styles */
.post {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* VHS Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem 0;
    position: relative;
    z-index: 2;
    font-family: 'Press Start 2P', 'VT323', monospace;
}

.pagination-btn {
    display: inline-block;
    min-width: 2.5rem;
    padding: 0.75rem 1.2rem;
    margin: 0 0.2rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--flickering-cyan);
    background: var(--dark-static-black);
    border: 2.5px solid var(--flickering-cyan);
    border-radius: 0;
    text-align: center;
    text-decoration: none;
    text-shadow: 2px 2px 0 var(--distorted-purple);
    box-shadow: 0 2px 8px rgba(0,255,255,0.08);
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    transition: all 0.2s cubic-bezier(.4,2,.6,1);
    position: relative;
    overflow: hidden;
}

.pagination-btn.current,
.pagination-btn:hover {
    background: var(--flickering-cyan);
    color: var(--dark-static-black);
    border-color: var(--distorted-purple);
    text-shadow: 2px 2px 0 var(--faded-red);
    box-shadow: 0 0 16px var(--flickering-cyan);
    z-index: 2;
}

.pagination-btn.current {
    font-size: 1.2rem;
    font-weight: bolder;
    border-width: 3px;
}

.pagination-btn.prev,
.pagination-btn.next {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--distorted-purple);
    color: var(--off-white-beige);
    border-color: var(--faded-red);
}

.pagination-btn.prev:hover,
.pagination-btn.next:hover {
    background: var(--flickering-cyan);
    color: var(--dark-static-black);
    border-color: var(--distorted-purple);
}

.pagination-pages {
    display: flex;
    gap: 0.2rem;
}

/* Responsive pagination for mobile */
@media (max-width: 600px) {
    .pagination {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pagination-btn {
        font-size: 1rem;
        padding: 0.5rem 0.8rem;
    }
}

.post-header {
    background-color: var(--vhs-dark-gray);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    text-align: center;
}

.post-header .post-title {
    color: var(--flickering-cyan);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 0px var(--distorted-purple);
}

.post-header .post-meta {
    color: var(--washed-out-grey);
    font-size: 1rem;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-header .post-meta time {
    color: var(--off-white-beige);
    font-weight: bold;
}

.post-header .post-author {
    margin-left: 1rem;
    color: var(--distorted-purple);
}

.post-content {
    background-color: var(--vhs-dark-gray);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: var(--flickering-cyan);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 0px var(--distorted-purple);
}

.post-content h1:first-child,
.post-content h2:first-child,
.post-content h3:first-child,
.post-content h4:first-child,
.post-content h5:first-child,
.post-content h6:first-child {
    margin-top: 0;
}

.post-content p {
    color: var(--off-white-beige);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.post-content ul,
.post-content ol {
    color: var(--off-white-beige);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.post-content ul li {
    list-style-type: disc;
}

.post-content ol li {
    list-style-type: decimal;
}

.post-content ul li::marker,
.post-content ol li::marker {
    color: var(--flickering-cyan);
}

.post-content strong {
    color: var(--distorted-purple);
    font-weight: bold;
    text-shadow: 1px 1px 0px var(--flickering-cyan);
}

.post-content em {
    color: var(--washed-out-grey);
    font-style: italic;
}

.post-content blockquote {
    border-left: 4px solid var(--faded-red);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--washed-out-grey);
    background-color: rgba(204, 0, 0, 0.1);
    padding: 1rem 1.5rem;
}

.post-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, var(--faded-red), var(--distorted-purple), var(--flickering-cyan));
    margin: 3rem 0;
}

.post-footer {
    background-color: var(--vhs-dark-gray);
    padding: 2rem;
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    text-align: center;
}

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

.post-footer .tags-label {
    color: var(--washed-out-grey);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-footer .tag {
    background-color: var(--dark-static-black);
    color: var(--off-white-beige);
    padding: 0.5rem 1rem;
    border: 2px solid var(--washed-out-grey);
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.post-footer .tag:hover {
    background-color: var(--distorted-purple);
    color: var(--off-white-beige);
    border-color: var(--distorted-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(153, 51, 255, 0.3);
}

/* Post Image Styles */
.post-content img {
    display: block;
    margin: 2rem auto;
    border: 3px solid var(--washed-out-grey);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    filter: sepia(30%) saturate(120%) contrast(110%) brightness(0.9);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Default to medium size instead of full-width */
    width: 75%;
    max-width: 600px;
    height: auto;
    box-sizing: border-box;
}

.post-content img:hover {
    filter: sepia(20%) saturate(130%) contrast(120%) brightness(0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 255, 255, 0.2);
    border-color: var(--flickering-cyan);
}

/* Full-width image (default) */
.post-content img.full-width {
    width: 100%;
    max-width: 100%;
    height: auto;
    /* Ensure it stays within the post container */
    box-sizing: border-box;
}

/* Small image */
.post-content img.small {
    width: 50%;
    max-width: 400px;
    height: auto;
}

/* Medium image */
.post-content img.medium {
    width: 75%;
    max-width: 600px;
    height: auto;
}

/* Image captions */
.post-content .image-caption {
    text-align: center;
    color: var(--washed-out-grey);
    font-size: 0.875rem;
    font-family: 'IBM Plex Mono', monospace;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-style: italic;
}

/* Image container for captions */
.post-content .image-container {
    margin: 2rem 0;
    text-align: center;
}

.post-content .image-container img {
    margin: 0 auto 0.5rem auto;
}

/* Mobile optimization for images */
@media (max-width: 768px) {
    .post-content img.small {
        width: 80%;
        max-width: 300px;
    }
    
    .post-content img.medium {
        width: 90%;
        max-width: 400px;
    }
    
    .post-content img {
        margin: 1.5rem auto;
    }
}

@media (max-width: 480px) {
    .post-content img.small {
        width: 90%;
        max-width: 250px;
    }
    
    .post-content img.medium {
        width: 95%;
        max-width: 300px;
    }
}

/* Mobile optimization for post layout */
@media (max-width: 768px) {
    .post {
        padding: 1rem 0;
    }
    
    .post-header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .post-header .post-title {
        font-size: 2rem;
    }
    
    .post-content {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .post-content ul,
    .post-content ol {
        padding-left: 1.5rem;
    }
    
    .post-footer {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .post-header .post-title {
        font-size: 1.5rem;
    }
    
    .post-content h1,
    .post-content h2,
    .post-content h3 {
        font-size: 1.25rem;
    }
    
    .post-content ul,
    .post-content ol {
        padding-left: 1rem;
    }
} 

/* Call-to-Action Box Styles */
.cta-box {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--dark-static-black);
    border: 2px solid var(--distorted-purple);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    box-shadow: 0 4px 20px rgba(153, 51, 255, 0.3);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(153, 51, 255, 0.1) 50%, transparent 70%);
    animation: cta-shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cta-shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--flickering-cyan);
    text-shadow: 0 0 10px var(--flickering-cyan);
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--off-white-beige);
    line-height: 1.6;
}

/* Mailchimp Signup Styles */
.mailchimp-signup {
    background: linear-gradient(135deg, var(--dark-static-black) 0%, #2a1a3a 100%);
    border-color: var(--flickering-cyan);
}

.mailchimp-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    background: var(--dark-static-black);
    border: 2px solid var(--flickering-cyan);
    border-radius: 4px;
    color: var(--off-white-beige);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--distorted-purple);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.email-input::placeholder {
    color: var(--washed-out-grey);
}

.subscribe-button {
    padding: 0.75rem 1.5rem;
    background: var(--flickering-cyan);
    color: var(--dark-static-black);
    border: none;
    border-radius: 4px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-button:hover {
    background: var(--distorted-purple);
    color: var(--off-white-beige);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
}

/* Custom CTA Styles */
.custom-cta.cta-primary {
    background: linear-gradient(135deg, var(--dark-static-black) 0%, #3a1a2a 100%);
    border-color: var(--distorted-purple);
}

.custom-cta.cta-secondary {
    background: linear-gradient(135deg, var(--dark-static-black) 0%, #1a3a2a 100%);
    border-color: var(--flickering-cyan);
}

.custom-cta.cta-outline {
    background: transparent;
    border-color: var(--off-white-beige);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--distorted-purple);
    color: var(--off-white-beige);
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: var(--flickering-cyan);
    color: var(--dark-static-black);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(153, 51, 255, 0.4);
}

.custom-cta.cta-secondary .cta-button {
    background: var(--flickering-cyan);
    color: var(--dark-static-black);
}

.custom-cta.cta-secondary .cta-button:hover {
    background: var(--distorted-purple);
    color: var(--off-white-beige);
}

.custom-cta.cta-outline .cta-button {
    background: transparent;
    color: var(--off-white-beige);
    border-color: var(--off-white-beige);
}

.custom-cta.cta-outline .cta-button:hover {
    background: var(--off-white-beige);
    color: var(--dark-static-black);
}

/* CTA with Background Image */
.cta-with-bg {
    position: relative;
    color: var(--off-white-beige);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.cta-with-bg .cta-content {
    position: relative;
    z-index: 3;
}

.cta-with-bg .cta-title {
    color: var(--off-white-beige);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Mobile Responsive CTA */
@media (max-width: 768px) {
    .cta-box {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .email-input {
        min-width: auto;
        width: 100%;
    }
    
    .subscribe-button {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cta-box {
        padding: 1rem;
    }
    
    .cta-title {
        font-size: 1rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
}
