
body {
    background: #000;
    color: #d4d4d4;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
a { color: #00d4ff; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
a:hover { color: #00b8e6; border-bottom-color: #00d4ff; }

/* Header */
.header {
    text-align: center;
    padding: 3rem 1rem;
    background: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
}
.header .cover-img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #00d4ff/30;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(0,212,255,0.15);
}
.header h1 {
    font-family: 'JetBrains Mono', monospace;
    color: #00d4ff;
    font-size: 2.2rem;
    margin: 0 0 0.5rem;
}
.header .subtitle {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}
.header .rss-links {
    margin-top: 1rem;
    font-size: 0.9rem;
}
.header .rss-links a { margin: 0 0.5rem; }

/* Main container */
.container { max-width: 750px; margin: 0 auto; padding: 2rem 1rem; }

/* Date grouping */
.date-group { margin-bottom: 2.5rem; }
.date-header {
    font-family: 'JetBrains Mono', monospace;
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #1a1a1a;
}

/* Episode list items */
.episode-item {
    padding: 0.6rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}
.episode-item:first-child { padding-top: 0; }
.episode-type {
    display: inline-block;
    font-size: 0.7rem;
    font-family: 'JetBrains Mono', monospace;
    color: #9ca3af;
    min-width: 60px;
    flex-shrink: 0;
}
.episode-type.morning { color: #00d4ff; }
.episode-type.research { color: #a78bfa; }
.episode-item a {
    font-size: 1.05rem;
    font-weight: 500;
}
.episode-audio {
    color: #6b7280;
    font-size: 0.85rem;
}

/* Episode page */
.episode-title {
    font-family: 'JetBrains Mono', monospace;
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.episode-meta {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.back-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}
.script-body p {
    color: #d4d4d8;
    margin: 0.75rem 0;
    line-height: 1.7;
}
.script-body h2 {
    font-family: 'JetBrains Mono', monospace;
    color: #9ca3af;
    font-size: 1.1rem;
    margin: 2rem 0 0.75rem;
}
.script-body .break {
    margin: 2rem 0;
    border: none;
    border-top: 2px dashed #1a1a1a;
}

/* Audio player */
audio {
    width: 100%;
    max-width: 100%;
    margin: 1.5rem 0;
    border-radius: 6px;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 2rem;
    color: #4b5563;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    border-top: 1px solid #1a1a1a;
    margin-top: 3rem;
}

@media (max-width: 600px) {
    .header h1 { font-size: 1.6rem; }
    .header .cover-img { width: 150px; height: 150px; }
}
