/* Shared blog post styles - used by cluster pages and (eventually) all blog posts */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #0a0e1a;
    color: #eef2ff;
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-weight: 500;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a { color: #4ecdc4; text-decoration: none; transition: color 0.2s; }
a:hover { color: #7eddd6; }

.site-header {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    background: rgba(10,14,26,0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}
.header-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: #4ecdc4;
    letter-spacing: 2px;
}
.header-logo:hover { color: #7eddd6; }
.header-nav { display: flex; gap: 20px; align-items: center; }
.header-nav a { color: #b0b8d0; font-size: 15px; font-weight: 600; }
.header-nav a:hover { color: #eef2ff; }
.btn-play-sm {
    background: linear-gradient(135deg, #4ecdc4, #44b8b0);
    color: #0a0e1a !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'Bebas Neue', cursive;
    font-size: 16px;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-play-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(78,205,196,0.3);
}

.article-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    flex: 1;
}
.article-meta {
    font-size: 14px;
    color: #6b7394;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.article-meta a { color: #8fa6c4; }
.article-meta a:hover { color: #4ecdc4; }
.article-container h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(32px, 5vw, 44px);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #eef2ff;
}
.article-container h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 30px;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 14px;
    color: #eef2ff;
}
.article-container h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 8px;
    color: #d0d8f0;
}
.article-container p {
    font-size: 17px;
    color: #c0c8e0;
    margin-bottom: 18px;
}
.article-container ul, .article-container ol {
    margin: 0 0 18px 24px;
    color: #c0c8e0;
    font-size: 17px;
}
.article-container li { margin-bottom: 6px; }
.article-container strong { color: #eef2ff; font-weight: 700; }

.breadcrumb-nav {
    font-size: 12px;
    color: #6b7394;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.breadcrumb-nav a { color: #8fa6c4; }
.breadcrumb-nav a:hover { color: #4ecdc4; }

.callout {
    background: rgba(78,205,196,0.06);
    border-left: 4px solid #4ecdc4;
    padding: 18px 22px;
    margin: 24px 0;
    border-radius: 6px;
}
.callout p { margin-bottom: 0; font-size: 16px; }

.glossary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0;
}
.glossary-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 16px 20px;
}
.glossary-item dt {
    font-weight: 800;
    color: #4ecdc4;
    margin-bottom: 4px;
    font-size: 16px;
}
.glossary-item dd {
    font-size: 15px;
    color: #c0c8e0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(78,205,196,0.1), rgba(68,184,176,0.05));
    border: 1px solid rgba(78,205,196,0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-top: 48px;
}
.cta-box h2 { margin-top: 0; }
.cta-box .btn-play {
    display: inline-block;
    background: linear-gradient(135deg, #4ecdc4, #44b8b0);
    color: #0a0e1a;
    padding: 14px 40px;
    border-radius: 8px;
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    letter-spacing: 2px;
    margin-top: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta-box .btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(78,205,196,0.3);
    color: #0a0e1a;
}

.back-link { margin-bottom: 24px; display: inline-block; font-size: 15px; }

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 28px 24px;
    text-align: center;
}
.footer-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 12px; flex-wrap: wrap; }
.footer-links a { color: #8890a8; font-size: 14px; }
.footer-links a:hover { color: #eef2ff; }
.footer-copy { color: #4a5270; font-size: 13px; }

@media (max-width: 600px) {
    .article-container h2 { font-size: 26px; }
}
