/* ========================================
   高清视频 - 原创样式表
   品牌色系：糖心粉 #FF6B9D / 渐变紫 #C850C0 / 深蓝 #4158D0
   ======================================== */

/* CSS Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    color: #2d2d2d;
    background: #f5f0f8;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: #C850C0; text-decoration: none; transition: color .3s; }
a:hover { color: #FF6B9D; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

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

/* ========== Header ========== */
.site-header {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 68px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-logo img { height: 42px; width: auto; }
.site-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
    color: #ccc;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: .9rem;
    transition: all .3s;
    white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
    color: #fff;
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
}

/* Mobile Menu Toggle */
.b6t28ab {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.b6t28ab span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: .3s;
}

/* Search Bar */
.qrdev {
    background: linear-gradient(135deg, #C850C0 0%, #4158D0 100%);
    padding: 12px 0;
}
.qrdev .container { display: flex; justify-content: center; }
.n6428 {
    display: flex;
    max-width: 600px;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.n6428 input {
    flex: 1;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}
.n6428 button {
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    border: none;
    color: #fff;
    padding: 12px 28px;
    cursor: pointer;
    font-size: .95rem;
    font-weight: 600;
    transition: opacity .3s;
}
.n6428 button:hover { opacity: .85; }

/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #1A1A2E;
}
.hero-section img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: brightness(.7);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(180deg, rgba(26,26,46,.3) 0%, rgba(26,26,46,.7) 100%);
}
.hero-overlay h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.hero-overlay h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-overlay p {
    color: rgba(255,255,255,.85);
    font-size: 1.15rem;
    max-width: 650px;
    margin-bottom: 24px;
}
.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    color: #fff;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(200,80,192,.4);
    transition: transform .3s, box-shadow .3s;
}
.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200,80,192,.6);
    color: #fff;
}

/* ========== Section Common ========== */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}
.section-title h2 {
    font-size: 2rem;
    color: #1A1A2E;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    margin: 10px auto 0;
    border-radius: 2px;
}
.section-title p {
    color: #666;
    font-size: 1rem;
    margin-top: 8px;
}

/* ========== Video Cards Grid ========== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding-bottom: 50px;
}
.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}
.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(200,80,192,.15);
}
.video-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.video-card:hover .video-thumb img { transform: scale(1.08); }
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(200,80,192,.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s, transform .3s;
}
.video-card:hover .play-btn { opacity: 1; }
.play-btn::after {
    content: '';
    display: block;
    width: 0; height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}
.sa2ppy {
    position: absolute;
    bottom: 8px; right: 8px;
    background: rgba(0,0,0,.75);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .78rem;
}
.video-info { padding: 14px 16px; }
.video-info h3 {
    font-size: .95rem;
    color: #1A1A2E;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.v6loqb3t {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .8rem;
    color: #999;
}
.v6loqb3t span { display: flex; align-items: center; gap: 3px; }
.i5ccic {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #FF6B9D20, #C850C020);
    color: #C850C0;
    border-radius: 10px;
    font-size: .75rem;
    margin-top: 6px;
}

/* ========== Services Section ========== */
.services-section { background: #fff; padding-bottom: 60px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}
.service-card {
    background: linear-gradient(135deg, #f8f4ff 0%, #fff0f5 100%);
    padding: 30px 24px;
    border-radius: 14px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    border: 1px solid rgba(200,80,192,.1);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(200,80,192,.12);
}
.service-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.service-card h3 {
    font-size: 1.1rem;
    color: #1A1A2E;
    margin-bottom: 8px;
}
.service-card p {
    font-size: .88rem;
    color: #666;
    line-height: 1.6;
}

/* ========== AI Section ========== */
.ai-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    padding-bottom: 60px;
}
.ai-section .section-title h2 { color: #fff; }
.ai-section .section-title p { color: rgba(255,255,255,.6); }
.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.ai-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: transform .3s;
}
.ai-card:hover { transform: translateY(-4px); }
.ai-card h3 {
    color: #FF6B9D;
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.ai-card p {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    line-height: 1.7;
}

/* ========== Community Section ========== */
.community-section { padding-bottom: 60px; }
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.community-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,.06);
    transition: transform .3s;
    border-top: 3px solid transparent;
    border-image: linear-gradient(135deg, #FF6B9D, #C850C0) 1;
}
.community-card:hover { transform: translateY(-4px); }
.community-card h4 {
    font-size: 1rem;
    color: #1A1A2E;
    margin-bottom: 8px;
}
.community-card p {
    font-size: .85rem;
    color: #666;
}

/* ========== Experts Section ========== */
.experts-section { background: #fff; padding-bottom: 60px; }
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.expert-card {
    background: #f8f4ff;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}
.expert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(200,80,192,.12);
}
.expert-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.expert-info { padding: 20px; }
.expert-info h3 {
    font-size: 1.1rem;
    color: #1A1A2E;
    margin-bottom: 4px;
}
.expert-info .role {
    color: #C850C0;
    font-size: .85rem;
    margin-bottom: 8px;
}
.expert-info p {
    font-size: .85rem;
    color: #666;
    margin-bottom: 12px;
}
.expert-btns { display: flex; gap: 8px; justify-content: center; }
.expert-btns a {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .82rem;
    transition: all .3s;
}
.expert-btns .btn-primary {
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    color: #fff;
}
.expert-btns .btn-outline {
    border: 1px solid #C850C0;
    color: #C850C0;
}
.expert-btns .btn-outline:hover {
    background: #C850C0;
    color: #fff;
}

/* ========== Partners Section ========== */
.37xze2 { padding-bottom: 60px; }
.pj1hi {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.t06wa7 {
    background: #fff;
    padding: 16px 28px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: transform .3s;
}
.t06wa7:hover { transform: scale(1.05); }

/* ========== FAQ Section ========== */
.faq-section { background: #fff; padding-bottom: 60px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #1A1A2E;
    transition: color .3s;
}
.faq-question:hover { color: #C850C0; }
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: #C850C0;
    transition: transform .3s;
}
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    color: #666;
    font-size: .92rem;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 12px;
}

/* ========== Reviews Section ========== */
.reviews-section { padding-bottom: 60px; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 12px rgba(0,0,0,.06);
    transition: transform .3s;
}
.review-card:hover { transform: translateY(-3px); }
.8bts6 {
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 10px;
}
.review-card p {
    font-size: .9rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.6dt97h8w {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
}
.j8epyv11 .name {
    font-weight: 600;
    font-size: .88rem;
    color: #1A1A2E;
}
.j8epyv11 .date {
    font-size: .78rem;
    color: #999;
}

/* ========== Contact Section ========== */
.contact-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    padding-bottom: 60px;
}
.contact-section .section-title h2 { color: #fff; }
.contact-section .section-title p { color: rgba(255,255,255,.6); }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}
.contact-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.contact-card h4 {
    color: #FF6B9D;
    margin-bottom: 10px;
    font-size: 1rem;
}
.contact-card p {
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    line-height: 1.7;
}
.contact-card img {
    width: 140px;
    height: 140px;
    margin: 12px auto 0;
    border-radius: 8px;
}

/* ========== How-To Section ========== */
.uok0a { padding-bottom: 60px; }
.bgdzuv {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.1zjkm4 {
    text-align: center;
    padding: 24px 16px;
}
.9678r {
    width: 48px; height: 48px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}
.1zjkm4 h4 {
    font-size: 1rem;
    color: #1A1A2E;
    margin-bottom: 6px;
}
.1zjkm4 p {
    font-size: .85rem;
    color: #666;
}

/* ========== Share Buttons ========== */
.i14gk3nr {
    background: #fff;
    padding: 30px 0;
    text-align: center;
}
.hg1un0jg {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}
.tqru7 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 24px;
    color: #fff;
    font-size: .88rem;
    font-weight: 500;
    transition: transform .3s, opacity .3s;
}
.tqru7:hover { transform: translateY(-2px); opacity: .9; color: #fff; }
.tqru7.wechat { background: #07C160; }
.tqru7.weibo { background: #E6162D; }
.tqru7.douyin { background: #161823; }
.tqru7.bilibili { background: #00A1D6; }

/* ========== Footer ========== */
.site-footer {
    background: #0d0d1a;
    color: rgba(255,255,255,.5);
    padding: 40px 0 20px;
}
.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 8px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
}
.footer-col p, .footer-col a {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    line-height: 2;
}
.footer-col a:hover { color: #FF6B9D; }
.footer-col img { border-radius: 6px; margin-top: 8px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 20px;
    text-align: center;
    font-size: .82rem;
}
.footer-bottom a { color: #FF6B9D; }

/* ========== Breadcrumb ========== */
.breadcrumb {
    padding: 14px 0;
    font-size: .85rem;
    color: #999;
}
.breadcrumb a { color: #C850C0; }
.breadcrumb span { margin: 0 6px; color: #ccc; }

/* ========== Inner Page Banner ========== */
.page-banner {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    padding: 50px 0;
    text-align: center;
}
.page-banner h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 8px;
}
.page-banner p {
    color: rgba(255,255,255,.6);
    font-size: 1rem;
}

/* ========== Sidebar ========== */
.page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    padding: 30px 0;
}
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.sidebar-widget h3 {
    font-size: 1rem;
    color: #1A1A2E;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FF6B9D;
}
.sidebar-widget .rank-list { counter-reset: rank; }
.sidebar-widget .rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: .88rem;
    color: #444;
    cursor: pointer;
    transition: color .3s;
}
.sidebar-widget .rank-item:hover { color: #C850C0; }
.sidebar-widget .rank-item::before {
    counter-increment: rank;
    content: counter(rank);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #eee;
    color: #666;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.sidebar-widget .rank-item:nth-child(-n+3)::before {
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    color: #fff;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .header-inner { height: 56px; }
    .main-nav {
        display: none;
        position: absolute;
        top: 56px; left: 0; right: 0;
        background: #1A1A2E;
        flex-direction: column;
        padding: 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,.3);
    }
    .main-nav.show { display: flex; }
    .b6t28ab { display: block; }
    .hero-section img { height: 280px; }
    .hero-overlay h1 { font-size: 1.8rem; }
    .hero-overlay p { font-size: .95rem; }
    .section-title h2 { font-size: 1.5rem; }
    .section-title { padding-top: 40px; margin-bottom: 24px; }
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .page-layout { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .experts-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .video-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .experts-grid { grid-template-columns: 1fr; }
}

/* ========== Lazy Load Placeholder ========== */
img[data-src] {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    min-height: 100px;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in {
    animation: fadeInUp .6s ease forwards;
}

/* ========== Video Player Overlay ========== */
.video-player-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.video-player-overlay.active { display: flex; }
.video-player-box {
    max-width: 800px;
    width: 90%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.video-player-close {
    position: absolute;
    top: -40px; right: 0;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* ========== Entertainment Tags ========== */
.exhp6 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.pccqjh0 {
    padding: 4px 14px;
    background: linear-gradient(135deg, #FF6B9D15, #C850C015);
    color: #C850C0;
    border-radius: 16px;
    font-size: .8rem;
    border: 1px solid rgba(200,80,192,.2);
    transition: all .3s;
}
.pccqjh0:hover {
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    color: #fff;
}

/* ========== Stats Bar ========== */
.5k50k3mu {
    background: linear-gradient(135deg, #FF6B9D, #C850C0);
    padding: 30px 0;
}
.dtr66ez {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.lltlr3 h3 {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
}
.lltlr3 p {
    color: rgba(255,255,255,.8);
    font-size: .88rem;
    margin-top: 4px;
}
@media (max-width: 768px) {
    .dtr66ez { grid-template-columns: repeat(2, 1fr); }
}

/* ========== About Page ========== */
.about-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.about-content h2 {
    color: #1A1A2E;
    font-size: 1.4rem;
    margin-bottom: 14px;
    padding-left: 12px;
    border-left: 3px solid #C850C0;
}
.about-content p {
    font-size: .95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ========== Loading Skeleton ========== */
.6i5x74 {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
