/* ========== CSS Variables - Light Theme ========== */
:root {
    --accent: #0077b6;
    --accent-light: #00b4d8;
    --accent-bg: rgba(0, 119, 182, 0.06);
    --accent-bg-hover: rgba(0, 119, 182, 0.10);
    --gradient-accent: linear-gradient(135deg, #00b4d8, #0077b6);
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-hero: linear-gradient(160deg, #f0f6ff 0%, #e8f4fd 50%, #f5f7fa 100%);
    --text-heading: #1a1a2e;
    --text-body: #444d5c;
    --text-muted: #7a8499;
    --card-bg: #ffffff;
    --card-border: #e8ecf1;
    --card-hover-border: rgba(0, 119, 182, 0.35);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.09);
    --shadow-glow: 0 4px 24px rgba(0, 119, 182, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== Container ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Header ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-heading);
    font-weight: 700;
    font-size: 1.4rem;
}

.logo:hover {
    color: var(--text-heading);
}

.logo-img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.logo-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link i {
    margin-right: 5px;
    font-size: 0.82rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: var(--accent-bg);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding: 8px 20px;
    background: var(--gradient-accent);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition);
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
    color: #fff !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-heading);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
}

/* ========== Hero (Compact Two-Column) ========== */
.hero {
    background: var(--bg-hero);
    padding: 100px 0 56px;
    border-bottom: 1px solid var(--card-border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--text-heading);
    line-height: 1.35;
    margin-bottom: 16px;
}

.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========== Hero Stats (2x2 grid on right) ========== */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.stat-item:hover {
    box-shadow: var(--shadow-glow);
    border-color: var(--card-hover-border);
}

.stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--accent-bg);
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stat-num-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-heading);
    display: inline;
}

.stat-suffix {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    font-family: var(--font-family);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 3px 12px rgba(0, 119, 182, 0.25);
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 119, 182, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid rgba(0, 119, 182, 0.3);
}

.btn-outline:hover {
    background: var(--accent-bg);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 38px;
    font-size: 1.05rem;
}

/* ========== Section Common ========== */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: var(--bg-light);
}

.section:nth-child(odd) {
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 14px auto 0;
    border-radius: 2px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ========== Grid ========== */
.grid {
    display: grid;
    gap: 20px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ========== Cards ========== */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover {
    transform: translateY(-3px);
    border-color: var(--card-hover-border);
    box-shadow: var(--shadow-glow);
}

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

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--accent-bg);
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ========== Community Cards ========== */
.card-tags {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.card-tags li {
    font-size: 0.84rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-tags li i {
    color: var(--accent);
    font-size: 0.78rem;
    width: 16px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    transition: all var(--transition);
}

.card-link:hover {
    gap: 10px;
    color: var(--accent-light);
}

/* ========== Feature Cards ========== */
.feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.9rem;
    color: var(--text-body);
}

.feature-list li i {
    color: var(--accent);
    font-size: 0.82rem;
}

/* ========== Steps (Guide) ========== */
.guide {
    background: var(--bg-white) !important;
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 680px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.step-item:hover {
    border-color: var(--card-hover-border);
    box-shadow: var(--shadow-glow);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
}

.step-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 5px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--accent);
    background: var(--accent-bg);
    padding: 4px 12px;
    border-radius: 50px;
}

.step-connector {
    width: 2px;
    height: 28px;
    background: linear-gradient(to bottom, var(--accent), rgba(0, 119, 182, 0.1));
    flex-shrink: 0;
}

/* ========== CTA Banner ========== */
.cta-banner {
    position: relative;
    padding: 64px 0;
    background: var(--gradient-accent);
    text-align: center;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}

.cta-orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ffffff, transparent);
    top: -40%;
    right: 10%;
}

.cta-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #00b4d8, transparent);
    bottom: -40%;
    left: 10%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--accent) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-banner .btn-primary:hover {
    color: var(--accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ========== Highlight Cards ========== */
.highlight-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--accent);
    padding-top: 12px;
    border-top: 1px solid var(--card-border);
    margin-top: auto;
}

.highlight-card {
    display: flex;
    flex-direction: column;
}

/* ========== Testimonial ========== */
.testimonial {
    background: var(--bg-white) !important;
    padding: 64px 0;
}

.testimonial-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 36px;
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
}

.testimonial-quote {
    font-size: 2.2rem;
    color: var(--accent);
    opacity: 0.35;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    font-size: 2.4rem;
    color: var(--accent);
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
}

.testimonial-role {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ========== Trust Cards ========== */
.trust-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trust-list li {
    font-size: 0.84rem;
    color: var(--text-body);
    padding-left: 16px;
    position: relative;
}

.trust-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ========== FAQ ========== */
.faq {
    background: var(--bg-white) !important;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    color: var(--text-heading);
    font-size: 0.98rem;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 0.82rem;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 22px 18px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========== Footer ========== */
.footer {
    background: #1a1a2e;
    padding: 52px 0 0;
    color: #c8d6e5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .logo-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-about {
    font-size: 0.88rem;
    color: #8892b0;
    line-height: 1.7;
}

.footer-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    font-size: 0.88rem;
    color: #8892b0;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 0.82rem;
    color: #8892b0;
}

.footer-legal {
    display: flex;
    gap: 18px;
}

.footer-legal a {
    color: #8892b0;
    font-size: 0.82rem;
}

.footer-legal a:hover {
    color: var(--accent-light);
}

/* ========== Back To Top ========== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: 0 3px 12px rgba(0, 119, 182, 0.25);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        border-bottom: 1px solid var(--card-border);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-btn {
        margin: 8px 0 0;
        justify-content: center;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero {
        padding: 88px 0 48px;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 16px;
    }

    .section {
        padding: 56px 0;
    }

    .step-item {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .cta-banner {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-item {
        padding: 14px 12px;
        gap: 10px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 16px;
    }

    .card {
        padding: 22px 18px;
    }

    .btn {
        padding: 11px 22px;
        font-size: 0.88rem;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

/* ========== Subpage Content ========== */
.page-banner {
    background: var(--bg-hero);
    padding: 100px 0 40px;
    border-bottom: 1px solid var(--card-border);
}

.page-banner .container {
    text-align: center;
}

.page-banner h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.page-banner p {
    font-size: 0.98rem;
    color: var(--text-muted);
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.page-breadcrumb a {
    color: var(--accent);
}

.page-body {
    padding: 56px 0 80px;
    background: var(--bg-white);
}

.page-body .container {
    max-width: 860px;
}

.page-body h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-bg);
}

.page-body h2:first-child {
    margin-top: 0;
}

.page-body h3 {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-heading);
    margin: 24px 0 10px;
}

.page-body p {
    font-size: 0.94rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 14px;
}

.page-body ul,
.page-body ol {
    margin: 10px 0 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-body ul {
    list-style: disc;
}

.page-body ol {
    list-style: decimal;
}

.page-body li {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.75;
}

.page-body strong {
    color: var(--text-heading);
    font-weight: 600;
}

.page-body .info-box {
    background: var(--accent-bg);
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}

.page-body .info-box p {
    margin-bottom: 0;
    color: var(--text-body);
}

.page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.9rem;
}

.page-body th,
.page-body td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

.page-body th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-heading);
}

.page-body td {
    color: var(--text-body);
}

.page-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
    font-size: 0.84rem;
    color: var(--text-muted);
}

/* ========== Article Meta (subpage banner) ========== */
.article-meta {
    margin-top: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.article-meta i {
    margin-right: 4px;
    color: var(--accent);
}

/* ========== Article List (homepage module) ========== */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    color: inherit;
    text-decoration: none;
}

.article-item:hover {
    border-color: var(--card-hover-border);
    box-shadow: var(--shadow-glow);
    transform: translateX(4px);
    color: inherit;
}

.article-tag {
    flex-shrink: 0;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.tag-announce {
    background: rgba(0, 119, 182, 0.1);
    color: var(--accent);
}

.tag-interview {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.tag-event {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.tag-update {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.tag-challenge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.article-info {
    flex: 1;
    min-width: 0;
}

.article-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-date {
    flex-shrink: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .article-item {
        flex-wrap: wrap;
        gap: 8px;
        padding: 16px;
    }

    .article-excerpt {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .article-date {
        width: 100%;
        text-align: right;
    }
}
