/* /Components/MarkdownRenderer.razor.rz.scp.css */
.papabear-post-container h2[b-ez7hms3d4k] {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    border-bottom: 2px solid var(--color-slate-800);
    padding-bottom: 1rem;
}

.papabear-post-container h3[b-ez7hms3d4k] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-emerald-500);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.papabear-post-container p[b-ez7hms3d4k] {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-slate-400);
    margin-bottom: 1.75rem;
}

.papabear-post-container ul[b-ez7hms3d4k] {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.papabear-post-container li[b-ez7hms3d4k] {
    color: var(--color-slate-300);
    margin-bottom: 0.75rem;
}

.papabear-post-container strong[b-ez7hms3d4k] {
    color: var(--color-emerald-400);
    font-weight: 800;
}

.papabear-post-container code[b-ez7hms3d4k] {
    background-color: var(--color-slate-900);
    color: var(--color-emerald-400); /* 6ee7b7 */
    padding: 0.2rem 0.4rem;
    border-radius: 0.4rem;
    font-family: monospace;
}

.papabear-post-container pre[b-ez7hms3d4k] {
    background-color: var(--color-slate-950);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--color-slate-800);
    overflow-x: auto;
    margin: 2rem 0;
}

.papabear-post-container blockquote[b-ez7hms3d4k] {
    border-left: 6px solid var(--color-emerald-500);
    background-color: rgba(16, 185, 129, 0.03);
    padding: 1.5rem 2rem;
    border-radius: 0 1rem 1rem 0;
    font-style: italic;
    color: var(--color-slate-400);
    margin: 3rem 0;
}

/* ::deep is needed because the HTML is injected as raw HTML, 
   so the scoped CSS attribute won't be on the inner elements. 
   However, since the container has a class .papabear-post-container, 
   we are targeting by class anyway. 
   But wait, in Scoped CSS, .papabear-post-container becomes .papabear-post-container[b-xyz].
   The inner elements don't have [b-xyz].
   So we MUST use ::deep.
*/

[b-ez7hms3d4k] .papabear-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 2rem;
    background: #000;
    margin: 3rem 0;
    border: 1px solid var(--color-slate-800);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

[b-ez7hms3d4k] .papabear-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Apply deep to all the other selectors too since they are dynamically rendered */
[b-ez7hms3d4k] h2 { font-size: 2.25rem; font-weight: 900; color: white; margin-top: 4rem; margin-bottom: 1.5rem; letter-spacing: -0.04em; border-bottom: 2px solid var(--color-slate-800); padding-bottom: 1rem; }
[b-ez7hms3d4k] h3 { font-size: 1.5rem; font-weight: 700; color: var(--color-emerald-500); margin-top: 2.5rem; margin-bottom: 1.25rem; }
[b-ez7hms3d4k] p { font-size: 1.125rem; line-height: 1.8; color: var(--color-slate-400); margin-bottom: 1.75rem; }
[b-ez7hms3d4k] ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 2rem; }
[b-ez7hms3d4k] li { color: var(--color-slate-300); margin-bottom: 0.75rem; }
[b-ez7hms3d4k] strong { color: var(--color-emerald-400); font-weight: 800; }
[b-ez7hms3d4k] code { background-color: var(--color-slate-900); color: var(--color-emerald-400); padding: 0.2rem 0.4rem; border-radius: 0.4rem; font-family: monospace; }
[b-ez7hms3d4k] pre { background-color: var(--color-slate-950); padding: 1.5rem; border-radius: 1rem; border: 1px solid var(--color-slate-800); overflow-x: auto; margin: 2rem 0; }
[b-ez7hms3d4k] blockquote { border-left: 6px solid var(--color-emerald-500); background-color: rgba(16, 185, 129, 0.03); padding: 1.5rem 2rem; border-radius: 0 1rem 1rem 0; font-style: italic; color: var(--color-slate-400); margin: 3rem 0; }
/* /Components/PostGridCard.razor.rz.scp.css */
.post-card[b-t7w8j7dh22] {
    text-align: left;
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid var(--color-slate-800);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.4); /* slate-900 / 40% */
}

.post-card:not(.locked):hover[b-t7w8j7dh22] {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-xl */
    background-color: var(--color-slate-900);
}

.post-card.locked[b-t7w8j7dh22] {
    opacity: 0.4;
    background-color: rgba(15, 23, 42, 0.2);
    border-color: var(--color-slate-900);
    cursor: not-allowed;
}

.card-header[b-t7w8j7dh22] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.icon-box[b-t7w8j7dh22] {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-tag[b-t7w8j7dh22] {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-slate-600);
}

h3[b-t7w8j7dh22] {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
    line-height: 1.25;
    
    /* line-clamp-2 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

p[b-t7w8j7dh22] {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    margin-bottom: 1.5rem;
    flex-grow: 1;

    /* line-clamp-3 */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Theme Variations using CSS Variables scope */
.post-card.emerald[b-t7w8j7dh22] { --card-theme: var(--color-emerald-500); }
.post-card.blue[b-t7w8j7dh22] { --card-theme: var(--color-blue-500); }
.post-card.orange[b-t7w8j7dh22] { --card-theme: var(--color-orange-500); }
.post-card.purple[b-t7w8j7dh22] { --card-theme: var(--color-purple-500); }

.post-card:not(.locked) .icon-box[b-t7w8j7dh22] {
    background-color: rgba(var(--card-theme), 0.1); /* fallback if not using rgb vars */
    /* Since vars are hex, we need another way or just manual overrides. 
       Let's use manual overrides for simplicity/robustness without converting hex to rgb on the fly.
    */
}

/* Specific Theme Overrides */
.post-card.emerald:not(.locked):hover[b-t7w8j7dh22] { border-color: rgba(16, 185, 129, 0.4); }
.post-card.emerald .icon-box[b-t7w8j7dh22] { background-color: rgba(16, 185, 129, 0.1); color: var(--color-emerald-500); }

.post-card.blue:not(.locked):hover[b-t7w8j7dh22] { border-color: rgba(59, 130, 246, 0.4); }
.post-card.blue .icon-box[b-t7w8j7dh22] { background-color: rgba(59, 130, 246, 0.1); color: var(--color-blue-500); }

.post-card.orange:not(.locked):hover[b-t7w8j7dh22] { border-color: rgba(249, 115, 22, 0.4); }
.post-card.orange .icon-box[b-t7w8j7dh22] { background-color: rgba(249, 115, 22, 0.1); color: var(--color-orange-500); }

.post-card.purple:not(.locked):hover[b-t7w8j7dh22] { border-color: rgba(168, 85, 247, 0.4); }
.post-card.purple .icon-box[b-t7w8j7dh22] { background-color: rgba(168, 85, 247, 0.1); color: var(--color-purple-500); }

.post-card.locked .icon-box[b-t7w8j7dh22] {
    background-color: var(--color-slate-800);
    color: var(--color-slate-600);
}
/* /Components/SeriesCard.razor.rz.scp.css */
.series-card[b-0g8ho4kzyw] {
    text-align: left;
    padding: 2rem;
    border-radius: 1.5rem; /* rounded-3xl */
    border: 1px solid;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    background-opacity: 0.05;
    border-opacity: 0.3;
}

.series-card:hover[b-0g8ho4kzyw] {
    transform: translateY(-0.25rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
}

.icon-box[b-0g8ho4kzyw] {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: none;
}

.card-header[b-0g8ho4kzyw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

h3[b-0g8ho4kzyw] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    transition: opacity 0.3s;
}

.series-card:hover h3[b-0g8ho4kzyw] {
    opacity: 0.8;
}

p[b-0g8ho4kzyw] {
    color: var(--color-slate-400);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer[b-0g8ho4kzyw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.arrow-icon[b-0g8ho4kzyw] {
    transition: transform 0.3s;
}

.series-card:hover .arrow-icon[b-0g8ho4kzyw] {
    transform: translateX(0.25rem);
}

/* Theme Styles */
/* Emerald */
.series-card.emerald[b-0g8ho4kzyw] {
    background-color: rgba(16, 185, 129, 0.05); /* bg-emerald-500/5 */
    border-color: rgba(16, 185, 129, 0.2);
}
.series-card.emerald:hover[b-0g8ho4kzyw] { border-color: var(--color-emerald-500); }
.series-card.emerald .icon-box[b-0g8ho4kzyw] {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--color-emerald-500);
}

/* Blue */
.series-card.blue[b-0g8ho4kzyw] {
    background-color: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}
.series-card.blue:hover[b-0g8ho4kzyw] { border-color: var(--color-blue-500); }
.series-card.blue .icon-box[b-0g8ho4kzyw] {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--color-blue-500);
}

/* Orange */
.series-card.orange[b-0g8ho4kzyw] {
    background-color: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.2);
}
.series-card.orange:hover[b-0g8ho4kzyw] { border-color: var(--color-orange-500); }
.series-card.orange .icon-box[b-0g8ho4kzyw] {
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--color-orange-500);
}

/* Purple */
.series-card.purple[b-0g8ho4kzyw] {
    background-color: rgba(168, 85, 247, 0.05);
    border-color: rgba(168, 85, 247, 0.2);
}
.series-card.purple:hover[b-0g8ho4kzyw] { border-color: var(--color-purple-500); }
.series-card.purple .icon-box[b-0g8ho4kzyw] {
    background-color: rgba(168, 85, 247, 0.1);
    color: var(--color-purple-500);
}
/* /Layout/Footer.razor.rz.scp.css */
footer[b-g4obximd42] {
    margin-top: 10rem;
    border-top: 1px solid var(--color-slate-900);
    background-color: var(--color-slate-950);
    padding-top: 6rem;
    padding-bottom: 6rem;
    text-align: center;
}

.footer-logo[b-g4obximd42] {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-emerald-500);
    border-radius: 1rem; /* rounded-2xl */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-950);
    font-weight: 900;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1);
}

.footer-quote[b-g4obximd42] {
    color: var(--color-slate-500);
    font-family: serif;
    font-style: italic;
    font-size: 1.25rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.footer-copyright[b-g4obximd42] {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.4em;
    color: var(--color-slate-700);
}
/* /Layout/Header.razor.rz.scp.css */
header[b-odlngm4ddt] {
    border-bottom: 1px solid rgba(6, 78, 59, 0.3); /* emerald-900 / 30% */
    background-color: rgba(2, 6, 23, 0.8); /* slate-950 / 80% */
    backdrop-filter: blur(24px); /* backdrop-blur-xl */
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container[b-odlngm4ddt] {
    max-width: 72rem; /* 6xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    height: 5rem; /* h-20 */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section[b-odlngm4ddt] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-icon[b-odlngm4ddt] {
    width: 2.5rem; /* w-10 */
    height: 2.5rem; /* h-10 */
    background-color: var(--color-emerald-500);
    border-radius: 0.75rem; /* rounded-xl */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-950);
    font-weight: 900; /* font-black */
}

.logo-text h1[b-odlngm4ddt] {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700; /* font-bold */
    color: var(--color-slate-50);
    letter-spacing: -0.025em; /* tracking-tight */
    line-height: 1;
    margin-block-end: 0.3em;
}

.logo-text span[b-odlngm4ddt] {
    color: var(--color-emerald-500);
    font-weight: 300; /* font-light */
}

.logo-subtitle[b-odlngm4ddt] {
    font-size: 10px;
    color: var(--color-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em; /* tracking-widest */
    font-weight: 700;
    margin-top: 0.25rem;
}

.social-links[b-odlngm4ddt] {
    display: flex;
    gap: 1rem;
}

.social-link[b-odlngm4ddt] {
    padding: 0.5rem;
    color: var(--color-slate-500);
    transition: color 0.15s;
}

.social-link:hover[b-odlngm4ddt] {
    color: var(--color-white);
}

.social-link.youtube:hover[b-odlngm4ddt] {
    color: var(--color-red-500);
}
/* /Layout/MainLayout.razor.rz.scp.css */
.main-container[b-isui34pyf6] {
    min-height: 100vh;
    background-color: var(--color-slate-950);
    color: var(--color-slate-200);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.content-wrapper[b-isui34pyf6] {
    max-width: 72rem; /* 6xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
/* /Pages/Home.razor.rz.scp.css */
.hero-section[b-kxsyzvxxqe] {
    margin-bottom: 6rem;
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-title[b-kxsyzvxxqe] {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1;
}

@media (min-width: 768px) {
    .hero-title[b-kxsyzvxxqe] { font-size: 4.5rem; }
}

.hero-title span[b-kxsyzvxxqe] {
    color: var(--color-emerald-500);
}

.hero-description[b-kxsyzvxxqe] {
    font-size: 1.25rem;
    color: var(--color-slate-400);
    margin-bottom: 2.5rem;
    line-height: 1.625;
}

.hero-br[b-kxsyzvxxqe] {
    display: none;
}
@media (min-width: 768px) {
    .hero-br[b-kxsyzvxxqe] { display: block; }
}

.hero-divider[b-kxsyzvxxqe] {
    height: 0.25rem;
    width: 6rem;
    background: linear-gradient(to right, var(--color-emerald-500), var(--color-blue-500));
    margin-left: auto;
    margin-right: auto;
    border-radius: 9999px;
}

/* Sections */
section[b-kxsyzvxxqe] {
    margin-bottom: 5rem;
}

.section-header[b-kxsyzvxxqe] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.section-header.bordered[b-kxsyzvxxqe] {
    border-top: 1px solid var(--color-slate-800);
    padding-top: 4rem;
}

.section-icon[b-kxsyzvxxqe] {
    color: var(--color-emerald-400);
}
.section-icon.slate[b-kxsyzvxxqe] {
    color: var(--color-slate-400);
}

.section-title[b-kxsyzvxxqe] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.025em;
}

/* Grids */
.series-grid[b-kxsyzvxxqe] {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .series-grid[b-kxsyzvxxqe] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .series-grid[b-kxsyzvxxqe] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.log-list[b-kxsyzvxxqe] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Log Item (Inline Component Style) */
.log-item[b-kxsyzvxxqe] {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    border-radius: 1rem; /* rounded-2xl */
    background-color: rgba(15, 23, 42, 0.3); /* slate-900 / 30% */
    border: 1px solid var(--color-slate-800);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.log-item:hover[b-kxsyzvxxqe] {
    border-color: rgba(16, 185, 129, 0.3); /* emerald-500 / 30% */
    background-color: var(--color-slate-900);
}

.log-meta[b-kxsyzvxxqe] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.log-series-tag[b-kxsyzvxxqe] {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-emerald-500);
}

.log-date[b-kxsyzvxxqe] {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-slate-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.log-title[b-kxsyzvxxqe] {
    font-size: 1.125rem; /* text-lg */
    font-weight: 700;
    color: var(--color-white);
    transition: color 0.3s;
}

.log-item:hover .log-title[b-kxsyzvxxqe] {
    color: var(--color-emerald-400);
}

.log-arrow[b-kxsyzvxxqe] {
    color: var(--color-slate-600);
    transition: transform 0.3s, color 0.3s;
}

.log-item:hover .log-arrow[b-kxsyzvxxqe] {
    transform: translateX(0.25rem);
    color: var(--color-emerald-500);
}
/* /Pages/PostDetail.razor.rz.scp.css */
.back-button[b-1f440diohz] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-slate-500);
    margin-bottom: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.3s;
}

.back-button:hover[b-1f440diohz] {
    color: var(--color-emerald-400);
}

.back-icon[b-1f440diohz] {
    transition: transform 0.3s;
}

.back-button:hover .back-icon[b-1f440diohz] {
    transform: translateX(-0.25rem);
}

.post-wrapper[b-1f440diohz] {
    max-width: 56rem; /* 4xl */
    margin-left: auto;
    margin-right: auto;
}

.post-header[b-1f440diohz] {
    margin-bottom: 4rem;
}

.meta-row[b-1f440diohz] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.series-pill[b-1f440diohz] {
    background-color: var(--color-emerald-500);
    color: var(--color-slate-950);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.log-pill[b-1f440diohz] {
    background-color: var(--color-slate-800);
    color: var(--color-slate-300);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.date[b-1f440diohz] {
    color: var(--color-slate-500);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.post-title[b-1f440diohz] {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    line-height: 1.1;
}
@media (min-width: 768px) {
    .post-title[b-1f440diohz] { font-size: 4.5rem; } /* 7xl approx */
}

.tags-row[b-1f440diohz] {
    display: flex;
    gap: 0.75rem;
}

.tag[b-1f440diohz] {
    padding: 0.25rem 0.75rem;
    background-color: var(--color-slate-900);
    border: 1px solid var(--color-slate-800);
    color: var(--color-slate-400);
    border-radius: 0.5rem;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
}
/* /Pages/SeriesDetail.razor.rz.scp.css */
.back-button[b-i8vathzrhh] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-slate-500);
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.3s;
}

.back-button:hover[b-i8vathzrhh] {
    color: var(--color-white);
}

.back-icon[b-i8vathzrhh] {
    transition: transform 0.3s;
}

.back-button:hover .back-icon[b-i8vathzrhh] {
    transform: translateX(-0.25rem);
}

.series-header-section[b-i8vathzrhh] {
    margin-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 768px) {
    .series-header-section[b-i8vathzrhh] {
        flex-direction: row;
        text-align: left;
    }
}

.header-content[b-i8vathzrhh] {
    flex: 1.4;
    text-align: center;
}
@media (min-width: 768px) {
    .header-content[b-i8vathzrhh] { text-align: left; }
}

.status-badge[b-i8vathzrhh] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: var(--color-slate-900);
    border: 1px solid var(--color-slate-800);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
}

.status-dot[b-i8vathzrhh] {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    animation: pulse 2s infinite;
}
.status-dot.emerald[b-i8vathzrhh] { background-color: var(--color-emerald-500); }
.status-dot.blue[b-i8vathzrhh] { background-color: var(--color-blue-500); }
.status-dot.orange[b-i8vathzrhh] { background-color: var(--color-orange-500); }
.status-dot.purple[b-i8vathzrhh] { background-color: var(--color-purple-500); }

.series-title[b-i8vathzrhh] {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 2rem;
    line-height: 0.85;
    letter-spacing: -0.05em;
}
@media (min-width: 768px) {
    .series-title[b-i8vathzrhh] { font-size: 6rem; } /* 8xl approx */
}

.series-title span.emerald[b-i8vathzrhh] { color: var(--color-emerald-500); }
.series-title span.blue[b-i8vathzrhh] { color: var(--color-blue-500); }
.series-title span.orange[b-i8vathzrhh] { color: var(--color-orange-500); }
.series-title span.purple[b-i8vathzrhh] { color: var(--color-purple-500); }

.series-description[b-i8vathzrhh] {
    font-size: 1.25rem;
    color: var(--color-slate-400);
    max-width: 36rem;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .series-description[b-i8vathzrhh] { margin-left: 0; }
}

.progress-card[b-i8vathzrhh] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: rgba(15, 23, 42, 0.5);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--color-slate-800);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .progress-card[b-i8vathzrhh] { margin-left: 0; }
}

.progress-icon[b-i8vathzrhh] {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-emerald-500);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-950);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
}

.progress-label[b-i8vathzrhh] {
    font-size: 10px;
    color: var(--color-slate-500);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.progress-value[b-i8vathzrhh] {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-white);
}

/* Search */
.search-container[b-i8vathzrhh] {
    position: relative;
    max-width: 42rem;
    margin-bottom: 4rem;
}

.search-icon[b-i8vathzrhh] {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-slate-600);
    transition: color 0.3s;
}

.search-container:focus-within .search-icon[b-i8vathzrhh] {
    color: var(--color-white);
}

.search-input[b-i8vathzrhh] {
    width: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--color-slate-800);
    border-radius: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 4rem;
    padding-right: 2rem;
    font-size: 1.25rem;
    color: var(--color-slate-200);
    outline: none;
    transition: box-shadow 0.3s;
}

.search-input:focus[b-i8vathzrhh] {
    box-shadow: 0 0 0 1px var(--color-slate-700);
}

.posts-grid[b-i8vathzrhh] {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}
@media (min-width: 768px) {
    .posts-grid[b-i8vathzrhh] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .posts-grid[b-i8vathzrhh] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
    .posts-grid[b-i8vathzrhh] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
