        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f3ef;
            color: #2d2a26;
            line-height: 1.7;
            font-size: 16px;
        }
        .top-bar {
            background: #1a1a2e;
            color: #c9a96e;
            font-size: 13px;
            padding: 6px 0;
            text-align: center;
            border-bottom: 2px solid #c9a96e;
        }
        .top-bar i { margin-right: 4px; }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .my-logo {
            font-size: 26px;
            font-weight: 800;
            text-decoration: none;
            color: #fff;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #c9a96e;
            font-size: 30px;
        }
        .my-logo span {
            background: linear-gradient(90deg, #c9a96e, #e8c886);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .my-logo small {
            display: block;
            font-size: 11px;
            color: rgba(255,255,255,0.6);
            -webkit-text-fill-color: rgba(255,255,255,0.6);
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .main-nav a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            padding: 8px 14px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.25s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: rgba(201,169,110,0.2);
            color: #c9a96e;
        }
        .hamburger {
            display: none;
            background: none;
            border: 1px solid rgba(255,255,255,0.3);
            color: #fff;
            font-size: 22px;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: #16213e;
                padding: 20px;
                box-shadow: 0 8px 20px rgba(0,0,0,0.4);
            }
            .main-nav.open { display: flex; }
            .hamburger { display: block; }
        }
        .breadcrumb-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 15px 20px 0;
        }
        .breadcrumb {
            font-size: 14px;
            color: #777;
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 6px;
            color: #bbb;
        }
        .breadcrumb a { color: #c9a96e; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb li.active { color: #555; font-weight: 500; }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; }
        }
        .article-body {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }
        .article-body h1 {
            font-size: 2.4rem;
            line-height: 1.2;
            color: #1a1a2e;
            margin-bottom: 10px;
            border-left: 4px solid #c9a96e;
            padding-left: 18px;
        }
        .article-body h2 {
            font-size: 1.6rem;
            color: #16213e;
            margin: 40px 0 16px;
            border-bottom: 2px solid #e8e2d8;
            padding-bottom: 8px;
            position: relative;
        }
        .article-body h2::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #c9a96e;
        }
        .article-body h3 {
            font-size: 1.2rem;
            color: #2d2a26;
            margin: 28px 0 10px;
            font-weight: 600;
        }
        .article-body h4 {
            font-size: 1.05rem;
            color: #555;
            margin: 20px 0 8px;
            font-weight: 600;
            font-style: italic;
        }
        .article-body p {
            margin-bottom: 16px;
            line-height: 1.82;
        }
        .article-body ul,
        .article-body ol {
            margin: 0 0 18px 24px;
            line-height: 1.75;
        }
        .article-body li { margin-bottom: 6px; }
        .info-box {
            background: #f8f5f0;
            border-left: 4px solid #c9a96e;
            padding: 18px 20px;
            border-radius: 0 8px 8px 0;
            margin: 24px 0;
        }
        .info-box strong { color: #a08030; }
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0 28px;
            font-size: 14px;
        }
        .price-table th {
            background: #1a1a2e;
            color: #c9a96e;
            padding: 12px 14px;
            text-align: left;
            border: 1px solid #1a1a2e;
        }
        .price-table td {
            padding: 11px 14px;
            border: 1px solid #e0dcd4;
        }
        .price-table tr:nth-child(even) td { background: #faf8f5; }
        .price-table tr:hover td { background: #f0ece6; }
        .article-image {
            margin: 28px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .article-image figcaption {
            background: #f0ece6;
            padding: 10px 16px;
            font-size: 13px;
            color: #666;
            text-align: center;
            font-style: italic;
        }
        .search-module {
            background: #f0ece6;
            border-radius: 8px;
            padding: 20px;
            margin: 32px 0;
            text-align: center;
        }
        .search-module h3 {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .search-module form {
            display: flex;
            max-width: 480px;
            margin: 0 auto;
            gap: 8px;
        }
        .search-module input[type="text"] {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #ccc;
            border-radius: 50px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-module input[type="text"]:focus {
            border-color: #c9a96e;
        }
        .search-module button {
            background: #1a1a2e;
            color: #c9a96e;
            border: none;
            border-radius: 50px;
            padding: 12px 24px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-module button:hover { background: #2d2d4e; }
        .comment-form, .score-form {
            background: #f8f5f0;
            border-radius: 8px;
            padding: 24px;
            margin: 24px 0;
            border: 1px solid #e0dcd4;
        }
        .comment-form h3, .score-form h3 {
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .comment-form textarea {
            width: 100%;
            height: 100px;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            resize: vertical;
            margin-bottom: 10px;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid #ccc;
            border-radius: 6px;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .comment-form button, .score-form button {
            background: #16213e;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .comment-form button:hover, .score-form button:hover { background: #0f3460; }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-start;
            gap: 4px;
            margin-bottom: 12px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 32px;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c518;
        }
        .sidebar {
            background: #fff;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: #1a1a2e;
            border-bottom: 2px solid #c9a96e;
            padding-bottom: 6px;
        }
        .sidebar ul {
            list-style: none;
            margin-bottom: 20px;
        }
        .sidebar ul li a {
            display: block;
            padding: 7px 0;
            color: #555;
            text-decoration: none;
            border-bottom: 1px dashed #e8e2d8;
            transition: color 0.2s, padding-left 0.2s;
        }
        .sidebar ul li a:hover {
            color: #c9a96e;
            padding-left: 6px;
        }
        .sidebar .highlight-link {
            background: #f0ece6;
            border-radius: 6px;
            padding: 12px;
            margin-bottom: 14px;
            font-size: 14px;
        }
        .video-embed {
            background: #000;
            border-radius: 12px;
            margin: 24px 0;
            padding: 20px;
            text-align: center;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.4);
            font-size: 14px;
        }
        .video-embed i { font-size: 48px; margin-bottom: 10px; display: block; }
        .last-updated {
            font-size: 13px;
            color: #888;
            background: #f8f5f0;
            display: inline-block;
            padding: 4px 16px;
            border-radius: 20px;
            margin: 10px 0 20px;
        }
        .site-footer {
            background: #1a1a2e;
            color: rgba(255,255,255,0.7);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-col h4 {
            color: #c9a96e;
            margin-bottom: 14px;
            font-size: 1rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover { color: #c9a96e; }
        .friend-link {
            display: block;
            padding: 6px 0;
            font-size: 14px;
        }
        .friend-link a {
            color: #c9a96e;
            text-decoration: none;
        }
        .friend-link a:hover { text-decoration: underline; }
        .copyright {
            text-align: center;
            padding: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            font-size: 13px;
            color: rgba(255,255,255,0.4);
        }
        @media (max-width: 768px) {
            .article-body { padding: 24px; }
            .article-body h1 { font-size: 1.8rem; }
            .article-body h2 { font-size: 1.3rem; }
            .header-inner { flex-wrap: wrap; }
            .my-logo { font-size: 20px; }
            .search-module form { flex-direction: column; }
            .price-table { font-size: 12px; }
            .price-table th, .price-table td { padding: 8px 6px; }
        }
        @media (max-width: 480px) {
            .article-body { padding: 16px; }
            .article-body h1 { font-size: 1.5rem; }
            .breadcrumb-wrap { padding: 10px 12px 0; }
        }
