:root {
    --ccp-red: #ff2222;
    --ccp-bg: #0a0a0a;
}

body {
    font-family: "Noto Sans TC", "Space Grotesk", -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
    background: var(--ccp-bg);
    color: #eee;
}

.card-img-top {
    height: 180px;
    object-fit: cover;
}

.article-body p {
    margin-bottom: 1.2em;
}

/* Theme sections (atrocities/infiltration/etc.) — editorial/documentary style */
.theme-section {
    padding: 6rem 0;
    background: #f7f6f3;
    color: #202020;
}

.theme-section.alt {
    background: #ece9e3;
}

.theme-section-image {
    width: 100%;
    aspect-ratio: 4 / 1;
    object-fit: cover;
    display: block;
    margin-bottom: 2.75rem;
    filter: grayscale(15%);
}

.theme-section-head {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2.75rem;
}

.theme-section-head .label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--ccp-red);
    white-space: nowrap;
}

.theme-heading {
    font-family: "Noto Serif TC", serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #171717;
    margin: 0;
}

.topic-card {
    background: #fff;
    border: 1px solid #e2e0da;
    height: 100%;
}

.topic-card .topic-title {
    font-family: "Noto Serif TC", serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #171717;
    margin: 1.5rem 1.5rem 0.75rem;
}

.topic-card .topic-text {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.9;
    text-align: justify;
    margin: 0 1.5rem 1.5rem;
}

/* Header */
.site-header {
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255, 34, 34, 0.25);
    z-index: 1030;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.brand-sub {
    color: var(--ccp-red);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
}

.main-nav {
    gap: 1.5rem;
}

.nav-link-custom {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding-bottom: 4px;
    white-space: nowrap;
}

.nav-link-custom:hover {
    color: #fff;
}

.nav-link-custom.active {
    color: var(--ccp-red);
    border-bottom: 2px solid var(--ccp-red);
}

.english-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ccp-red);
    border: 1px solid var(--ccp-red);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.8rem;
    text-decoration: none;
    white-space: nowrap;
}

.english-btn:hover {
    background: rgba(255, 34, 34, 0.1);
    color: var(--ccp-red);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-image: url("/img/hero-bg.png");
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: brightness(0.75) contrast(1.25);
    z-index: 0;
}

.hero-mute-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-mute-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--ccp-red);
    color: var(--ccp-red);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a0a 0%, rgba(10, 10, 10, 0) 45%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-block;
    background: var(--ccp-red);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--ccp-red);
    font-weight: 700;
    font-size: 3.2rem;
    text-shadow: 0 0 20px rgba(255, 34, 34, 0.6), 0 0 45px rgba(255, 34, 34, 0.35);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-subtitle {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
}

.hero-text {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 2rem;
}

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

.btn-hero-primary {
    background: var(--ccp-red);
    color: #fff;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: #e01c1c;
    color: #fff;
}

.btn-hero-secondary {
    background: #161616;
    color: #eee;
    border: 1px solid #333;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: #1f1f1f;
    color: #fff;
}

.hero-quote {
    color: #aaa;
    font-style: italic;
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-quote-attribution {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    color: #888;
    font-size: 0.85rem;
}
