/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary: #ff4500;
    --secondary: #8b0000;
    --accent: #ffa500;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-light: #e8e8e8;
    --text-muted: #9a9a9a;
    --spooky-purple: #6d4aff;
}

/* ==================== GLOBAL RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'IM FELL ENGLISH', cursive;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.text-accent {
    color: var(--accent);
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--text-muted);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

/* ==================== BACKGROUND ANIMATION ==================== */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ==================== SPOOKY GLOWING EYES ==================== */
.eye-glow {
    position: absolute;
    width: 30px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    opacity: 0;
    animation: eyeAppear 5s infinite;
}

@keyframes eyeAppear {
    0%, 80% { opacity: 0; }
    85%, 95% { opacity: 1; }
    100% { opacity: 0; }
}

.eye-glow.left {
    left: 20%;
    top: 30%;
}

.eye-glow.right {
    right: 20%;
    top: 35%;
    animation-delay: 0.5s;
}

/* ==================== BUTTONS ==================== */
.cta-button,
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover,
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--primary);
}

.cta-button {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--primary); }
    50% { box-shadow: 0 0 40px var(--secondary); }
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--secondary);
    border-color: var(--primary);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 2px solid var(--secondary);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Creepster', cursive;
    font-size: 2rem;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary), 0 0 20px var(--secondary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { text-shadow: 0 0 10px var(--primary), 0 0 20px var(--secondary); }
    50% { text-shadow: 0 0 20px var(--primary), 0 0 40px var(--secondary); }
}

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

.nav-links a {
    font-weight: 500;
    position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: 0.3s;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: 1rem;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-3px, 2px); }
    94% { transform: translate(3px, -2px); }
    96% { transform: translate(-2px, -3px); }
    98% { transform: translate(2px, 3px); }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

.scroll-indicator svg {
    width: 40px;
    height: 40px;
    fill: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary));
}

/* ==================== PAGE HEADER (Sub Pages) ==================== */
.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.2), var(--bg-dark));
    position: relative;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--primary);
    margin-bottom: 1rem;
    animation: glitch 3s infinite;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-subtitle {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ==================== SECTION STYLES ==================== */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== ABOUT SECTION ==================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--secondary);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 0%, var(--bg-dark) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover::before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.3);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: swing 3s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.about-card h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

/* ==================== EVENTS SECTION ==================== */
.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--secondary);
    position: relative;
}

.event-card:hover {
    transform: scale(1.02);
}

.event-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.event-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.3) 2px,
        rgba(0, 0, 0, 0.3) 4px
    );
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.event-details {
    padding: 1.5rem;
}

.event-date {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-details h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.event-price {
    display: inline-block;
    background: var(--secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ==================== PODCAST SECTION (Homepage) ==================== */
.podcast-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.podcast-item {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.podcast-item:hover {
    transform: translateX(10px);
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary);
}

.play-button svg {
    width: 25px;
    height: 25px;
    fill: white;
}

.podcast-info {
    flex: 1;
}

.podcast-title {
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.podcast-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== PODCAST PAGE SPECIFICS ==================== */
.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.platform-btn {
    padding: 0.8rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.platform-btn:hover {
    background: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.podcast-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.podcast-intro h2 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.podcast-intro p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.episode-count {
    display: inline-block;
    background: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-top: 1.5rem;
    font-weight: bold;
}

.filter-tabs {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    padding: 0.7rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--secondary);
    border-radius: 25px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--secondary);
    border-color: var(--primary);
}

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

.episode-item {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.episode-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.2);
}

.episode-number {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: var(--secondary);
    min-width: 60px;
    text-align: center;
    margin-right: 1.5rem;
}

.episode-title {
    font-weight: bold;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.episode-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.episode-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.episode-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--secondary);
    border-radius: 15px;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--secondary);
    border-color: var(--primary);
}

/* Audio Player Bar */
.player-bar {
    position: sticky;
    bottom: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--primary);
    padding: 1rem 2rem;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.player-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.player-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary);
}

.player-play svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.player-info {
    flex: 1;
    min-width: 200px;
}

.player-title {
    font-weight: bold;
    color: var(--accent);
    font-size: 0.95rem;
}

.player-progress {
    flex: 2;
    min-width: 250px;
}

.progress-track {
    width: 100%;
    height: 4px;
    background: var(--bg-dark);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    width: 0%;
    border-radius: 2px;
    transition: width 0.1s ease;
}

.player-time {
    display: flex;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    justify-content: flex-end;
}

/* ==================== BLOG SECTION (Homepage) ==================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--secondary);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.blog-card:hover::after {
    left: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== BLOG PAGE SPECIFICS ==================== */
.blog-controls {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.search-bar {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.search-bar input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--secondary);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}

.category-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 0.7rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--secondary);
    border-radius: 25px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn:hover,
.category-btn.active {
    background: var(--secondary);
    border-color: var(--primary);
}

.blog-posts {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    gap: 2rem;
}

.blog-post {
    display: grid;
    grid-template-columns: 250px 1fr;
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--secondary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.3);
}

.post-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.post-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.3) 2px,
        rgba(0, 0, 0, 0.3) 4px
    );
    animation: scanlines 8s linear infinite;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.post-date {
    color: var(--primary);
    font-size: 0.85rem;
}

.post-category {
    background: var(--secondary);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.75rem;
}

.post-content h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.post-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: bold;
    transition: gap 0.3s ease;
}

.blog-post:hover .read-more {
    gap: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Newsletter */
.newsletter {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-card), var(--secondary));
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--primary);
}

.newsletter h3 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--secondary);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--primary);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--bg-dark);
    padding: 3rem 2rem;
    border-top: 2px solid var(--secondary);
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--bg-card);
    color: var(--text-muted);
}

/* ==================== SHARED JAVASCRIPT HELPER STYLES ==================== */
.hidden {
    display: none !important;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 2rem;
        border-bottom: 2px solid var(--secondary);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .page-header {
        padding: 6rem 1rem 3rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .about-grid,
    .events-container,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-post {
        grid-template-columns: 1fr;
    }

    .post-image {
        min-height: 150px;
    }

    .blog-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search-bar {
        max-width: none;
    }

    .podcast-item,
    .episode-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .play-button {
        margin-right: 0;
    }

    .episode-number {
        margin-right: 0;
    }

    .episode-actions {
        margin-left: 0;
        justify-content: center;
    }

    .player-bar {
        flex-direction: column;
        padding: 1rem;
    }

    .player-time {
        justify-content: center;
    }

    .newsletter {
        padding: 2rem 1.5rem;
    }
}

/* ==================== SMALL MOBILE ==================== */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .platform-buttons {
        flex-direction: column;
        width: 100%;
    }

    .platform-btn {
        justify-content: center;
    }

    .cta-button,
    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}
/* ==================== CONTACT PAGE STYLES ==================== */
.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--secondary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.contact-form label {
    display: block;
    color: var(--accent);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--bg-dark);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Honeypot field - hide from visible view but keep accessible */
.honeypot {
    position: absolute !important;
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}

/* Contact Info Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--secondary);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.contact-card h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Emergency Notice */
.emergency-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(255, 69, 0, 0.1));
    border: 1px solid var(--secondary);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.notice-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-content h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.notice-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--secondary);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 69, 0, 0.1);
}

.question-mark {
    width: 35px;
    height: 35px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-family: 'Creepster', cursive;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Map Placeholder */
.map-placeholder {
    background: var(--bg-card);
    border: 2px solid var(--secondary);
    border-radius: 15px;
    padding: 3rem;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(139, 0, 0, 0.1) 2px,
        rgba(139, 0, 0, 0.1) 4px
    );
    opacity: 0.5;
}

.map-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.map-content h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin: 1rem 0 0.5rem;
}

/* Responsive adjustments for contact page */
@media (max-width: 900px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .emergency-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .map-placeholder {
        padding: 2rem 1rem;
        min-height: 300px;
    }
}
.episode-item .play-button svg {
    width: 25px;
    height: 25px;
    fill: white;
    position: absolute;
    transition: opacity 0.2s ease;
}

.episode-item .play-button {
    position: relative;
}

.episode-item .play-button .pause-icon {
    opacity: 0;
}

.episode-item .play-button.playing .play-icon {
    opacity: 0;
}

.episode-item .play-button.playing .pause-icon {
    opacity: 1;
}

/* ---- Per-episode progress bar ---- */
.episode-progress-container {
    width: 100%;
    margin-top: 0.8rem;
    display: none;
}

.episode-progress-container.active {
    display: block;
}

.episode-progress-track {
    width: 100%;
    height: 4px;
    background: var(--bg-dark);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.episode-progress-fill {
    height: 100%;
    background: var(--primary);
    width: 0%;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.episode-time-display {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.3rem;
}

/* ---- Hide the native audio element completely ---- */
audio.episode-audio {
    display: none !important;
}

/* ---- Mobile tweaks for progress bar ---- */
@media (max-width: 768px) {
    .episode-progress-container {
        width: 100%;
    }
}
