* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f4f4f5;
            color: #e11d48;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #e11d48;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #E11D48;
        }
        img {
            display: block;
            max-width: 100%;
            height: auto;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 22px;
        }

        /* navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(232,234,237,0.96);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(212, 165, 116, 0.15);
            padding: 0 22px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 700;
            color: #E11D48;
            letter-spacing: 1px;
            flex-shrink: 0;
        }
        .nav-logo svg {
            width: 32px;
            height: 32px;
            fill: #e11d48;
        }
        .nav-links {
            display: flex;
            gap: 18px;
            list-style: none;
            font-size: 15px;
            font-weight: 500;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .nav-links a {
            color: #e11d48;
            padding: 6px 2px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 14px;
        }
        .nav-links a:hover {
            color: #E11D48;
            border-bottom-color: #e11d48;
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
        }
        .nav-toggle span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: #e11d48;
            border-radius: 4px;
            transition: 0.25s;
        }

        /* hero banner */
        .hero {
            margin-top: 64px;
            padding: 30px 0 20px;
            position: relative;
        }
        .banner-slider {
            display: flex;
            gap: 18px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding: 6px 0 18px;
            scrollbar-width: thin;
            scrollbar-color: #e11d48 transparent;
        }
        .banner-slider::-webkit-scrollbar {
            height: 4px;
        }
        .banner-slider::-webkit-scrollbar-thumb {
            background: #e11d48;
            border-radius: 8px;
        }
        .banner-slider::-webkit-scrollbar-track {
            background: transparent;
        }
        .banner-item {
            flex: 0 0 calc(100% - 40px);
            max-width: 700px;
            scroll-snap-align: start;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            background: #e4e6ea;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            transition: transform 0.3s ease;
        }
        .banner-item:hover {
            transform: scale(1.01);
        }
        .banner-item picture img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: #e4e6ea;
        }
        .banner-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 26px 24px 20px;
            background: linear-gradient(0deg, rgba(11, 11, 18, 0.92) 0%, transparent 100%);
        }
        .banner-overlay h2 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
            letter-spacing: 0.5px;
        }
        .banner-overlay p {
            font-size: 14px;
            color: #E11D48;
            opacity: 0.9;
            max-width: 80%;
        }
        .badge-hot {
            display: inline-block;
            background: #e11d48;
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            padding: 2px 14px;
            border-radius: 30px;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }

        /* section common */
        .section {
            padding: 40px 0 28px;
            border-bottom: 1px solid rgba(212, 165, 116, 0.08);
        }
        .section:last-of-type {
            border-bottom: none;
        }
        .section-header {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .section-header h2 {
            font-size: 26px;
            font-weight: 700;
            color: #e11d48;
            letter-spacing: 0.5px;
        }
        .section-header h2 span {
            color: #e11d48;
        }
        .section-header .more-link {
            font-size: 14px;
            color: #e11d48;
            border: 1px solid rgba(212, 165, 116, 0.25);
            padding: 4px 18px;
            border-radius: 30px;
            transition: 0.25s;
        }
        .section-header .more-link:hover {
            background: rgba(212, 165, 116, 0.10);
            border-color: #e11d48;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
            gap: 22px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 28px;
        }

        /* card */
        .card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
            cursor: pointer;
            position: relative;
            border: 1px solid rgba(212, 165, 116, 0.05);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
            border-color: rgba(212, 165, 116, 0.2);
        }
        .card-img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #ece4e2;
            transition: filter 0.3s;
        }
        .card:hover .card-img {
            filter: brightness(1.05);
        }
        .card-body {
            padding: 14px 16px 16px;
        }
        .card-body h3 {
            font-size: 16px;
            font-weight: 600;
            color: #e11d48;
            margin-bottom: 4px;
            line-height: 1.4;
        }
        .card-body .meta {
            font-size: 13px;
            color: #E11D48;
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 4px;
        }
        .card-body .meta .tag {
            background: rgba(212, 165, 116, 0.12);
            color: #e11d48;
            padding: 0 12px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 500;
        }
        .card-btn {
            display: inline-block;
            margin-top: 10px;
            padding: 5px 18px;
            border: 1px solid rgba(212, 165, 116, 0.3);
            border-radius: 30px;
            font-size: 12px;
            font-weight: 500;
            color: #e11d48;
            background: transparent;
            cursor: default;
            transition: 0.2s;
            pointer-events: none;
        }
        .card:hover .card-btn {
            background: rgba(212, 165, 116, 0.08);
            border-color: #e11d48;
        }
        .update-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #e11d48;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 30px;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 12px rgba(212, 63, 63, 0.35);
        }
        .rank-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(11, 11, 18, 0.8);
            backdrop-filter: blur(6px);
            color: #e11d48;
            font-size: 14px;
            font-weight: 700;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(212, 165, 116, 0.25);
        }

        /* news */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .news-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 18px;
            background: #ffffff;
            border-radius: 12px;
            border-left: 3px solid #e11d48;
            transition: background 0.2s;
            cursor: default;
        }
        .news-item:hover {
            background: #ffffff;
        }
        .news-item time {
            font-size: 13px;
            color: #E11D48;
            flex-shrink: 0;
            min-width: 72px;
        }
        .news-item .news-title {
            font-size: 15px;
            color: #e11d48;
            font-weight: 500;
        }
        .news-item .news-title a {
            color: #e11d48;
        }
        .news-item .news-title a:hover {
            color: #e11d48;
        }
        .news-tag {
            background: rgba(212, 165, 116, 0.10);
            color: #e11d48;
            font-size: 11px;
            padding: 1px 14px;
            border-radius: 30px;
            margin-left: auto;
            flex-shrink: 0;
        }

        /* faq */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(212, 165, 116, 0.06);
        }
        .faq-q {
            padding: 16px 20px;
            font-weight: 600;
            color: #e11d48;
            font-size: 16px;
            cursor: default;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(212, 165, 116, 0.03);
        }
        .faq-q span {
            color: #e11d48;
            margin-right: 12px;
            font-size: 18px;
        }
        .faq-a {
            padding: 4px 20px 18px 52px;
            color: #e11d48;
            font-size: 14px;
            line-height: 1.7;
            border-top: 1px solid rgba(212, 165, 116, 0.05);
        }

        /* comment */
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .comment-item {
            background: #ffffff;
            border-radius: 14px;
            padding: 18px 22px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            border: 1px solid rgba(212, 165, 116, 0.04);
        }
        .comment-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            background: #ece4e2;
            flex-shrink: 0;
            border: 2px solid rgba(212, 165, 116, 0.15);
        }
        .comment-body {
            flex: 1;
        }
        .comment-body .name {
            font-weight: 600;
            color: #e11d48;
            font-size: 15px;
        }
        .comment-body .time {
            font-size: 12px;
            color: #E11D48;
            margin-left: 12px;
        }
        .comment-body .text {
            margin-top: 4px;
            color: #E11D48;
            font-size: 14px;
            line-height: 1.7;
        }
        .comment-body .text .kw {
            color: #e11d48;
            font-weight: 500;
        }

        /* modal */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            align-items: center;
            justify-content: center;
            padding: 30px 20px;
        }
        .modal-overlay.active {
            display: flex;
        }
        .modal-box {
            background: #fff7f8;
            border-radius: 24px;
            max-width: 640px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 32px 30px 28px;
            border: 1px solid rgba(212, 165, 116, 0.12);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
            position: relative;
            animation: modalIn 0.3s ease;
        }
        @keyframes modalIn {
            0% {
                opacity: 0;
                transform: scale(0.94) translateY(20px);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        .modal-close {
            position: absolute;
            top: 14px;
            right: 18px;
            font-size: 30px;
            color: #E11D48;
            background: none;
            border: none;
            cursor: pointer;
            line-height: 1;
            transition: 0.2s;
            padding: 4px 10px;
            border-radius: 8px;
        }
        .modal-close:hover {
            color: #e11d48;
            background: rgba(255, 255, 255, 0.05);
        }
        .modal-box h2 {
            font-size: 24px;
            color: #e11d48;
            margin-bottom: 6px;
            padding-right: 40px;
        }
        .modal-box .sub {
            color: #E11D48;
            font-size: 14px;
            margin-bottom: 16px;
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }
        .modal-box .sub .tag {
            background: rgba(212, 165, 116, 0.12);
            color: #e11d48;
            padding: 0 14px;
            border-radius: 30px;
            font-size: 12px;
        }
        .modal-box .desc {
            color: #E11D48;
            font-size: 15px;
            line-height: 1.8;
            margin-top: 8px;
        }
        .modal-box .desc strong {
            color: #e11d48;
        }
        .modal-box .extra {
            margin-top: 18px;
            padding-top: 16px;
            border-top: 1px solid rgba(212, 165, 116, 0.08);
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .modal-box .extra .label {
            color: #E11D48;
            font-size: 13px;
        }
        .modal-box .extra .value {
            color: #e11d48;
            font-size: 14px;
            font-weight: 500;
        }

        /* footer */
        .footer {
            background: #ece4e2;
            padding: 40px 0 28px;
            border-top: 1px solid rgba(212, 165, 116, 0.06);
            margin-top: 10px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
        }
        .footer-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            font-size: 14px;
        }
        .footer-links a {
            color: #E11D48;
            transition: 0.2s;
        }
        .footer-links a:hover {
            color: #e11d48;
        }
        .footer-copy {
            color: #e11d48;
            font-size: 13px;
        }
        .footer-copy strong {
            color: #e11d48;
            font-weight: 500;
        }

        /* loading shimmer */
        .shimmer {
            background: linear-gradient(90deg, #e4e6ea 25%, #FEE2E2 50%, #e4e6ea 75%);
            background-size: 200% 100%;
            animation: shimmer 1.8s infinite;
        }
        @keyframes shimmer {
            0% {
                background-position: 200% 0;
            }
            100% {
                background-position: -200% 0;
            }
        }

        /* responsive */
        @media (max-width: 820px) {
            .navbar {
                padding: 0 16px;
                height: 58px;
            }
            .nav-links {
                gap: 10px;
                font-size: 13px;
            }
            .nav-links a {
                font-size: 12px;
                padding: 4px 2px;
            }
            .nav-logo {
                font-size: 18px;
            }
            .nav-logo svg {
                width: 26px;
                height: 26px;
            }
            .hero {
                margin-top: 58px;
                padding: 18px 0 10px;
            }
            .banner-item {
                flex: 0 0 calc(100% - 16px);
            }
            .banner-item picture img {
                height: 150px;
            }
            .banner-overlay h2 {
                font-size: 18px;
            }
            .banner-overlay p {
                font-size: 12px;
                max-width: 100%;
            }
            .grid-4 {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 14px;
            }
            .grid-3 {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 16px;
            }
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .section {
                padding: 28px 0 18px;
            }
            .section-header h2 {
                font-size: 20px;
            }
            .card-body h3 {
                font-size: 14px;
            }
            .news-item {
                flex-wrap: wrap;
                padding: 12px 14px;
            }
            .news-item time {
                min-width: 60px;
                font-size: 12px;
            }
            .news-item .news-title {
                font-size: 13px;
            }
            .news-tag {
                font-size: 10px;
                margin-left: 0;
            }
            .faq-q {
                font-size: 14px;
                padding: 14px 16px;
            }
            .faq-a {
                padding: 4px 16px 14px 40px;
                font-size: 13px;
            }
            .comment-item {
                padding: 14px 16px;
                flex-wrap: wrap;
            }
            .comment-avatar {
                width: 36px;
                height: 36px;
            }
            .modal-box {
                padding: 24px 18px 20px;
            }
            .modal-box h2 {
                font-size: 20px;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .footer-links {
                justify-content: center;
                gap: 14px;
            }
        }
        @media (max-width: 480px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 58px;
                left: 0;
                right: 0;
                background: rgba(11, 11, 18, 0.96);
                backdrop-filter: blur(14px);
                padding: 16px 22px 22px;
                gap: 12px;
                border-bottom: 1px solid rgba(212, 165, 116, 0.08);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-toggle {
                display: flex;
            }
            .grid-4 {
                grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
                gap: 12px;
            }
            .grid-3 {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 12px;
            }
            .banner-item picture img {
                height: 120px;
            }
            .banner-overlay {
                padding: 16px 14px 14px;
            }
            .banner-overlay h2 {
                font-size: 16px;
            }
            .section-header h2 {
                font-size: 18px;
            }
            .card-body {
                padding: 10px 12px 12px;
            }
            .card-body h3 {
                font-size: 13px;
            }
            .card-btn {
                font-size: 11px;
                padding: 4px 14px;
            }
            .modal-box {
                padding: 20px 14px 16px;
                border-radius: 16px;
            }
            .modal-box h2 {
                font-size: 18px;
            }
            .modal-close {
                font-size: 24px;
                top: 10px;
                right: 12px;
            }
            .footer-copy {
                font-size: 11px;
            }
        }
        @media (min-width: 821px) {
            .nav-links {
                display: flex !important;
            }
        }

.breadcrumb {margin: 78px 0 8px; font-size:13px; color:#E11D48;}
.breadcrumb a {color:#E11D48;}
.breadcrumb span {color:#e11d48;}
.page-h1 {font-size:28px; font-weight:700; margin:10px 0 8px; color:#261C02;}
.lead {color:#261C02; font-size:16px; max-width:820px; margin-bottom:18px;}
.excerpt {font-size:13px; color:#e11d48; margin-top:6px; line-height:1.6; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;}
.seo-block {padding:8px 0 18px;}
.seo-block p {color:#E11D48; font-size:15px; margin-bottom:12px; line-height:1.85; max-width:880px;}
.seo-block h3 {font-size:18px; color:#E11D48; margin:16px 0 8px;}
.kw-list {display:flex; flex-wrap:wrap; gap:8px; margin:12px 0 6px;}
.kw-list span {border:1px solid rgba(212,165,116,.25); color:#e11d48; border-radius:20px; padding:4px 12px; font-size:12px;}

.cta {display:inline-block;margin-top:0;padding:12px 22px;background:#e11d48;color:#fff;border-radius:30px;font-weight:700;font-size:14px;}
.cta:hover {color:#fff;background:#FDA4AF;}
.cta-gold {background:#E11D48;color:#fff;}
.cta-gold:hover {color:#fff;background:#e11d48;}
.cta-ghost {background:transparent;color:#E11D48;border:1px solid rgba(240,207,176,.35);}
.notice {font-size:13px;color:#E11D48;margin-top:10px;}

.hero.showcase {
    margin-top: 64px;
    padding: 48px 0 36px;
    background:
        radial-gradient(1200px 420px at 80% 20%, rgba(232,93,108,.18), transparent 55%),
        radial-gradient(900px 380px at 10% 80%, rgba(212,165,116,.12), transparent 50%),
        #f4f4f5;
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
}
.showcase-copy .pill {
    display: inline-block;
    border: 1px solid rgba(232,93,108,.35);
    color: #e11d48;
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 12px;
    margin-bottom: 16px;
    background: rgba(232,93,108,.08);
}
.showcase-copy .page-h1 {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 14px;
    letter-spacing: .5px;
}
.showcase-copy .page-h1 span {
    display: inline-block;
    margin-top: 6px;
    color: #E11D48;
    font-size: 28px;
    font-weight: 700;
}
.showcase-copy .lead {
    max-width: 560px;
    margin-bottom: 22px;
    color: #261C02;
    font-size: 16px;
    line-height: 1.75;
}
.btn-row {display:flex;flex-wrap:wrap;gap:12px;margin-bottom:22px;}
.stat-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 8px;
    border: 1px solid rgba(232,93,108,.18);
    background: #fff;
    border-radius: 16px;
    padding: 14px 10px;
}
.stat-bar div {text-align:center;}
.stat-bar strong {display:block;font-size:18px;color:#261C02;}
.stat-bar span {display:block;font-size:12px;color:#e11d48;margin-top:2px;}

.showcase-visual {
    position: relative;
    min-height: 360px;
}
.device {
    background: #ece4e2;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
}
.device img {width:100%;height:100%;object-fit:cover;}
.device-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(11,11,18,.72);
    color: #E11D48;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}
.device.tablet {
    width: 78%;
    aspect-ratio: 16/10;
    position: relative;
}
.device.tablet img {height: 100%; object-fit: cover; aspect-ratio: 16/10;}
.device.phone {
    width: 34%;
    position: absolute;
    right: 0;
    bottom: -18px;
    aspect-ratio: 9/16;
    border-radius: 22px;
    border: 3px solid #ece4e2;
}
.device.phone img {height: 220px; object-fit: cover;}
.device-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 28px 14px 12px;
    background: linear-gradient(transparent, rgba(10,8,12,.92));
    color: #fff;
}
.device-caption b {display:block;font-size:15px;}
.device-caption em {font-style:normal;font-size:12px;color:#E11D48;}
.device.phone .device-caption {padding: 20px 10px 10px;}
.device.phone .device-caption b {font-size:12px;}

@media (max-width: 820px) {
    .showcase-grid {grid-template-columns:1fr; gap: 22px;}
    .showcase-copy .page-h1 {font-size:28px;}
    .showcase-copy .page-h1 span {font-size:22px;}
    .stat-bar {grid-template-columns:repeat(2,1fr);}
    .showcase-visual {min-height: 280px;}
    .device.tablet {width:86%;}
    .device.phone {width:38%; bottom:-8px;}
}

.comments-wrap {padding-bottom: 12px;}
.comment-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 22px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #e11d48 transparent;
}
.comment-scroll .talk {scroll-snap-align: start;}
.talk {
    flex: 0 0 280px;
    background: #ffffff;
    border: 1px solid rgba(212,165,116,.08);
    border-radius: 14px;
    padding: 14px 16px;
}
.talk b {display:block;color:#e11d48;font-size:14px;margin-bottom:4px;}
.talk span {color:#E11D48;font-size:13px;line-height:1.6;}
.kicker {font-size:12px;letter-spacing:2px;color:#e11d48;margin-bottom:8px;}
.chip-row {display:flex;flex-wrap:wrap;gap:8px;margin:0 0 22px;}
.chip-row span {border:1px solid rgba(212,165,116,.25);color:#e11d48;border-radius:20px;padding:4px 12px;font-size:12px;}
.pick {background:#ffffff;border-radius:16px;overflow:hidden;border:1px solid rgba(212,165,116,.06);}
.pick img {width:100%;height:160px;object-fit:cover;}
.pick-body {padding:14px 16px 16px;}
.pick-body em {font-style:normal;font-size:12px;color:#e11d48;}
.pick-body h3 {margin:4px 0 6px;font-size:18px;}
.pick-body p {color:#e11d48;font-size:14px;margin-bottom:10px;}
.theater-box {display:grid;grid-template-columns:1.2fr .8fr;gap:0;align-items:center;background:#ffffff;border-radius:20px;overflow:hidden;border:1px solid rgba(212,165,116,.08);}
.theater-box img {width:100%;height:280px;object-fit:cover;}
.theater-info {padding:24px;}
.feat-grid,.step-grid {display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.feat-grid article,.step-grid article {background:#ffffff;border-radius:16px;padding:20px 18px;border:1px solid rgba(212,165,116,.06);}
.feat-grid h3,.step-grid h3 {margin-bottom:8px;font-size:16px;}
.feat-grid p,.step-grid p {color:#e11d48;font-size:14px;}
.step-grid span {display:inline-block;width:28px;height:28px;border-radius:50%;background:rgba(212,165,116,.15);color:#e11d48;text-align:center;line-height:28px;font-weight:700;margin-bottom:10px;}
.table-wrap {overflow-x:auto;}
.spec-table {width:100%;border-collapse:collapse;background:#ffffff;border-radius:16px;overflow:hidden;}
.spec-table th,.spec-table td {padding:14px 16px;text-align:left;border-bottom:1px solid rgba(255,255,255,.04);font-size:14px;}
.spec-table th {width:28%;color:#e11d48;font-weight:600;}
.spec-table td {color:#e11d48;}
@media (max-width:820px){
  .feat-grid,.step-grid,.theater-box {grid-template-columns:1fr;}
  .theater-box img {height:180px;}
}
.cmt-form {display:grid;gap:10px;max-width:640px;margin:0 0 18px;}
.cmt-form input,.cmt-form textarea {background:#ffffff;border:1px solid rgba(212,165,116,.2);border-radius:12px;color:#eee;padding:10px 12px;font:inherit;}
.cmt-form textarea {min-height:80px;resize:vertical;}
.cmt-form .cta {width:fit-content;}

.comment-feed{
  max-width:420px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:4px 0 8px;
}
.comment-feed .talk{
  display:flex;
  gap:12px;
  width:100%;
  max-width:none;
  flex:none;
  background:#ffffff;
  border:1px solid rgba(212,165,116,.08);
  border-radius:16px;
  padding:14px;
}
.comment-feed .avatar{
  width:40px;height:40px;border-radius:50%;
  background:#FEE2E2;color:#E11D48;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;flex-shrink:0;
}
.talk-body{min-width:0;}
.talk-body b{display:inline;margin-right:8px;}
.talk-body em{font-style:normal;color:#E11D48;font-size:12px;}
.talk-body span{display:block;margin-top:6px;color:#E11D48;line-height:1.65;font-size:14px;}
.cmt-form{max-width:420px;margin-left:auto;margin-right:auto;}

.comment-marquee{overflow:hidden;width:100%;padding:8px 0 16px;}
.comment-track{display:flex;gap:14px;width:max-content;animation:cmt-roll 48s linear infinite;}
.comment-marquee:hover .comment-track{animation-play-state:paused;}
@keyframes cmt-roll{from{transform:translateX(0);}to{transform:translateX(-50%);}}
.comment-track .talk{
  display:flex;gap:10px;flex:0 0 280px;width:280px;
  background:#ffffff;border:1px solid rgba(212,165,116,.08);
  border-radius:16px;padding:14px;
}
.comment-track .avatar{
  width:36px;height:36px;border-radius:50%;
  background:#FEE2E2;color:#E11D48;
  display:flex;align-items:center;justify-content:center;font-size:13px;flex-shrink:0;
}
.comment-track .talk-body b{display:inline;margin-right:6px;}
.comment-track .talk-body em{font-style:normal;color:#E11D48;font-size:12px;}
.comment-track .talk-body span{display:block;margin-top:6px;color:#E11D48;line-height:1.6;font-size:13px;}

.download-box{margin:0 0 28px;padding:22px 24px;background:#fff;border:1px solid #FEE2E2;border-radius:18px}
.download-tip{margin:0 0 14px;color:#e11d48;font-size:14px}

body,h1,h2,h3,.page-h1,.lead{color:#18181b!important}

body,h1,h2,h3,.page-h1{color:#18181b!important}.lead{color:#3f3f46!important}
