/* ==========================================
   CSS Variables - Theme Colors
   ========================================== */
:root {
    /* Primary Colors */
    --primary-color: #ff6b9d;
    --secondary-color: #c94d7e;

    /* Background Colors */
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --sidebar-bg: #ffffff;

    /* Text Colors */
    --text-primary: #202122;
    --text-secondary: #54595d;
    --text-light: #72777d;

    /* Border & Accents */
    --border-color: #eaecf0;
    --border-dark: #c8ccd1;

    /* Gradient */
    --gradient: linear-gradient(135deg, #ff6b9d 0%, #ffa6c1 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);

    /* Layout */
    --sidebar-width: 240px;
    --header-height: 60px;

    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 14px;
}

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

a:hover {
    color: var(--secondary-color);
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

/* ==========================================
   Header (Wiki Style)
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 32px;
    height: 32px;
}

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

/* Header Search */
.header-search {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-input {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid var(--border-dark);
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.search-btn {
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--secondary-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--gradient);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.header-cta:hover {
    opacity: 0.9;
    color: white;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 20px;
    color: var(--text-primary);
    padding: 8px;
}

/* ==========================================
   Main Layout (Wiki Two-Column)
   ========================================== */
.main-layout {
    display: flex;
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* ==========================================
   Sidebar Navigation (Wiki Style)
   ========================================== */
.sidebar {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    border-right: 1px solid var(--border-color);
    position: sticky;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    flex-shrink: 0;
}

.sidebar-nav {
    padding: 20px 0;
}

.nav-section {
    margin-bottom: 24px;
}

.nav-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.nav-list {
    list-style: none;
}

.nav-list li {
    border-left: 3px solid transparent;
}

.nav-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
}

.nav-list a:hover,
.nav-list li:hover {
    background: var(--bg-color);
    border-left-color: var(--primary-color);
}

.nav-list i {
    width: 16px;
    font-size: 14px;
    color: var(--text-light);
}

/* ==========================================
   Main Content Area
   ========================================== */
.content {
    flex: 1;
    padding: 30px;
    max-width: 1200px;
    background: var(--card-bg);
}

/* Breadcrumb */
.breadcrumb {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb .separator {
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--text-primary);
}

/* Page Header */
.page-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* ==========================================
   Infobox (Wiki Style)
   ========================================== */
.infobox {
    width: 300px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* PC端宽度足够时悬浮 */
@media (min-width: 1400px) {
    .infobox {
        position: fixed;
        right: 20px;
        top: 100px;
        z-index: 100;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}

/* 宽度不足时回到文档流 */
@media (max-width: 1399px) {
    .infobox {
        float: right;
        margin: 0 0 20px 20px;
    }
}

.infobox-header {
    background: var(--gradient);
    color: white;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.infobox-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: white;
    padding: 8px;
}

.infobox-header h3 {
    font-size: 20px;
    margin: 0;
}

.infobox-table {
    width: 100%;
    border-collapse: collapse;
}

.infobox-table tr {
    border-bottom: 1px solid var(--border-color);
}

.infobox-table tr:last-child {
    border-bottom: none;
}

.infobox-table th,
.infobox-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
}

.infobox-table th {
    background: var(--card-bg);
    color: var(--text-secondary);
    font-weight: 600;
    width: 40%;
}

.infobox-table td {
    background: var(--bg-color);
    color: var(--text-primary);
}

.infobox-link {
    color: var(--primary-color);
    font-weight: 500;
}

.rating-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars-small {
    color: #ffd700;
    font-size: 14px;
}

/* ==========================================
   Wiki Sections
   ========================================== */
.wiki-section {
    margin-bottom: 40px;
    clear: both;
}

.section-heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.heading-icon {
    color: var(--primary-color);
}

.section-content {
    font-size: 14px;
    line-height: 1.8;
}

.lead-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.section-content p {
    margin-bottom: 16px;
}

.section-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Highlight Box */
.highlight-box {
    background: #fff9f0;
    border-left: 4px solid #ffb84d;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.highlight-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #cc8800;
    font-size: 16px;
}

.highlight-box p {
    margin: 0;
    color: var(--text-secondary);
}

/* Inline CTA */
.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 16px;
}

.inline-cta:hover {
    opacity: 0.9;
    color: white;
}

/* ==========================================
   Feature List (Wiki Style)
   ========================================== */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.feature-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.feature-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-content p {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.feature-details {
    list-style: none;
    padding-left: 0;
}

.feature-details li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 13px;
}

.feature-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================
   Comparison Table (Wiki Style)
   ========================================== */
.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.comparison-table th,
.comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table thead {
    background: var(--bg-color);
}

.comparison-table th {
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* ==========================================
   Statistics Grid
   ========================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.stat-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ==========================================
   Rating Summary Box
   ========================================== */
.rating-summary-box {
    display: flex;
    gap: 40px;
    padding: 24px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 24px;
}

.rating-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.rating-score-large {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-stars-large {
    color: #ffd700;
    font-size: 24px;
}

.rating-count {
    font-size: 13px;
    color: var(--text-secondary);
}

.rating-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.rating-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rating-tag {
    background: white;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* ==========================================
   Testimonials List
   ========================================== */
.testimonials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.testimonial-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 14px;
}

.testimonial-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   FAQ (Wiki Style)
   ========================================== */
.faq-list {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--card-bg);
}

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

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   CTA Box
   ========================================== */
.cta-box {
    background: var(--gradient);
    color: white;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: white;
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   Categories Box (Wiki Style)
   ========================================== */
.categories-box {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 40px;
}

.categories-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.categories-list a {
    background: white;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-primary);
}

.categories-list a:hover {
    background: var(--bg-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 13px;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: var(--text-light);
    font-size: 13px;
}

/* ==========================================
   Back to Top Button
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .infobox {
        position: static;
        width: 100%;
        margin: 0 0 24px 0;
        max-height: none;
    }

    .sidebar {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .header-search {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .sidebar {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        width: 280px;
        z-index: 999;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

    .sidebar.active {
        left: 0;
    }

    .content {
        padding: 20px 16px;
    }

    .page-title {
        font-size: 24px;
    }

    .section-heading {
        font-size: 20px;
    }

    .feature-item {
        flex-direction: column;
    }

    .rating-summary-box {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-list {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .page-title {
        font-size: 20px;
    }

    .section-heading {
        font-size: 18px;
    }

    .logo span {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 24px 20px;
    }

    .cta-box h3 {
        font-size: 20px;
        flex-direction: column;
    }
}

/* ==========================================
   Subsection Titles
   ========================================== */
.subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.sub-subsection-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 12px;
}

/* ==========================================
   About Us - Team Grid
   ========================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.team-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.team-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.team-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.team-item p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================
   Value List
   ========================================== */
.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.value-list li:last-child {
    border-bottom: none;
}

.value-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==========================================
   Contact Box
   ========================================== */
.contact-box {
    background: var(--bg-color);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.contact-box p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box i {
    color: var(--primary-color);
    width: 20px;
}

/* ==========================================
   Help Center Sections
   ========================================== */
.help-section {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.help-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-section h4 i {
    color: var(--primary-color);
}

.help-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.help-steps li {
    counter-increment: step-counter;
    padding-left: 40px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.help-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.help-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.help-quick-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
}

.help-quick-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 8px;
}

.help-quick-item p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.help-cta {
    background: #fff9f0;
    border: 1px solid #ffb84d;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    margin: 30px 0;
}

.help-cta p {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.help-cta i {
    color: #cc8800;
    font-size: 20px;
}

/* ==========================================
   Privacy Policy
   ========================================== */
.privacy-notice {
    background: #e8f4fd;
    border-left: 4px solid #4a90e2;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-notice i {
    color: #4a90e2;
    font-size: 20px;
    flex-shrink: 0;
}

.privacy-notice p {
    margin: 0;
    color: var(--text-primary);
}

.privacy-promise {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.promise-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.promise-item i {
    color: #28a745;
    font-size: 24px;
    flex-shrink: 0;
}

.promise-item p {
    margin: 0;
    color: var(--text-secondary);
}

.promise-item strong {
    color: var(--text-primary);
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin: 20px 0;
}

.privacy-table th,
.privacy-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.privacy-table thead {
    background: var(--bg-color);
}

.privacy-table th {
    font-weight: 600;
    color: var(--text-primary);
    width: 30%;
}

.privacy-table td {
    color: var(--text-secondary);
}

.privacy-table tr:last-child th,
.privacy-table tr:last-child td {
    border-bottom: none;
}

.privacy-footer {
    background: var(--bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    margin: 30px 0;
}

.privacy-footer p {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-footer i {
    color: var(--primary-color);
    font-size: 20px;
}

/* ==========================================
   Latest Articles
   ========================================== */
.latest-articles {
    margin: 30px 0;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: var(--transition);
}

.article-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.article-date {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-tag {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    background: var(--border-color);
    color: var(--text-secondary);
    font-weight: 500;
}

.article-tag.new {
    background: var(--primary-color);
    color: white;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.article-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.article-title a:hover {
    color: var(--primary-color);
}

.article-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   Article Page Styles
   ========================================== */
.article-header {
    margin-bottom: 30px;
}

.article-page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 16px;
    background: var(--bg-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.article-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-info-item i {
    color: var(--primary-color);
}

.article-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-body h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.article-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.article-body p {
    margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
    margin: 16px 0;
    padding-left: 28px;
}

.article-body li {
    margin-bottom: 8px;
}

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

.article-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 16px 20px;
    margin: 20px 0;
    background: var(--bg-color);
    border-radius: 4px;
    font-style: italic;
    color: var(--text-secondary);
}

.article-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.article-tags-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.article-tags .tag {
    font-size: 13px;
    padding: 6px 14px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: var(--text-primary);
}

.article-tags .tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.back-to-home:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ==========================================
   Ordered and Unordered Lists in Content
   ========================================== */
.section-content ul,
.section-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.section-content ul li,
.section-content ol li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-content ul li strong,
.section-content ol li strong {
    color: var(--text-primary);
}

/* ==========================================
   Scrollbar Styling (Wiki-like)
   ========================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}