* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #faf8f5;
            color: #1e2a3e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #d45a2e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #a83e1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #2d1b4e 0%, #5a2d82 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 26px;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #ffd166;
            text-shadow: 2px 2px 0 #b84a2c;
            transition: transform 0.25s;
            display: block;
            line-height: 1.2;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
            color: #ffe28a;
        }
        .my-logo small {
            font-size: 14px;
            font-weight: 400;
            color: #dbb6f0;
            display: block;
            letter-spacing: 0.3px;
            text-shadow: none;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            color: #f0e8f8;
            padding: 8px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 15px;
            transition: background 0.25s, color 0.25s;
        }
        .nav-bar a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffd166;
            text-decoration: none;
        }
        .nav-bar .active {
            background: rgba(255, 209, 102, 0.2);
            color: #ffd166;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-size: 28px;
            padding: 4px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #efeae3;
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid #ddd6cc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px 0 4px;
            color: #9a8a7a;
        }
        .breadcrumb a {
            color: #7a5a4a;
        }
        .breadcrumb .current {
            color: #2d1b4e;
            font-weight: 600;
        }
        .main-wrap {
            padding: 40px 0 60px;
        }
        article h1 {
            font-size: 38px;
            font-weight: 900;
            color: #1e0f2e;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 30px;
            color: #6b5d4f;
            font-size: 14px;
            margin-bottom: 28px;
            padding-bottom: 16px;
            border-bottom: 2px solid #e8dfd6;
        }
        .article-meta i {
            margin-right: 6px;
            color: #b84a2c;
        }
        .last-updated {
            font-weight: 600;
            color: #2d1b4e;
        }
        article h2 {
            font-size: 30px;
            font-weight: 800;
            color: #2d1b4e;
            margin-top: 52px;
            margin-bottom: 16px;
            border-left: 6px solid #d45a2e;
            padding-left: 18px;
        }
        article h3 {
            font-size: 24px;
            font-weight: 700;
            color: #3a2555;
            margin-top: 36px;
            margin-bottom: 12px;
        }
        article h4 {
            font-size: 20px;
            font-weight: 600;
            color: #4a3565;
            margin-top: 26px;
            margin-bottom: 10px;
        }
        article p {
            margin-bottom: 18px;
            font-size: 17px;
            color: #1e2a3e;
        }
        article p strong {
            color: #2d1b4e;
        }
        .feature-img {
            margin: 28px 0 32px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
        }
        .feature-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .feature-img figcaption {
            background: #f0e8f0;
            padding: 10px 20px;
            font-size: 14px;
            color: #4a3a5a;
            text-align: center;
        }
        .info-box {
            background: #f0ebf5;
            border-left: 6px solid #7a4a9a;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 28px 0;
        }
        .info-box strong {
            color: #2d1b4e;
        }
        article ul,
        article ol {
            margin: 12px 0 22px 24px;
            font-size: 17px;
        }
        article li {
            margin-bottom: 8px;
        }
        .search-section {
            background: #e8dfe8;
            padding: 32px 28px;
            border-radius: 24px;
            margin: 48px 0 32px;
            text-align: center;
        }
        .search-section h2 {
            border-left: none;
            margin-top: 0;
            padding-left: 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 16px auto 0;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1 1 260px;
            padding: 14px 20px;
            border: 2px solid #ccc;
            border-radius: 40px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #7a4a9a;
        }
        .search-form button {
            background: #2d1b4e;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #4a2a6a;
            transform: scale(1.02);
        }
        .comment-section {
            background: #fff;
            border: 2px solid #e0d6e0;
            border-radius: 24px;
            padding: 32px 28px;
            margin: 40px 0;
        }
        .comment-section h2 {
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 700px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 14px 18px;
            border: 2px solid #d6ccd6;
            border-radius: 14px;
            font-size: 16px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
            resize: vertical;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #7a4a9a;
        }
        .comment-form textarea {
            min-height: 120px;
        }
        .comment-form button {
            align-self: flex-start;
            background: #d45a2e;
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .comment-form button:hover {
            background: #a83e1a;
        }
        .rating-section {
            background: linear-gradient(135deg, #faf5f0, #f0e8f0);
            border-radius: 24px;
            padding: 32px 28px;
            margin: 40px 0;
            text-align: center;
        }
        .rating-section h2 {
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            font-size: 44px;
            color: #ccc;
            cursor: pointer;
            margin: 12px 0 18px;
            transition: color 0.2s;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5b342;
            transform: scale(1.15);
        }
        .rating-stars i.active {
            color: #f5b342;
        }
        .rating-form button {
            background: #2d1b4e;
            color: #fff;
            border: none;
            padding: 14px 36px;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .rating-form button:hover {
            background: #4a2a6a;
        }
        .rating-result {
            margin-top: 12px;
            font-weight: 600;
            color: #2d1b4e;
        }
        .site-footer {
            background: #1e0f2e;
            color: #d6c8d6;
            padding: 40px 0 30px;
            margin-top: 60px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: space-between;
        }
        .footer-col h4 {
            color: #ffd166;
            font-size: 18px;
            margin-bottom: 14px;
        }
        .footer-col p,
        .footer-col a {
            font-size: 15px;
            color: #c8b8c8;
        }
        .footer-col a:hover {
            color: #ffd166;
        }
        friend-link {
            display: block;
            margin-top: 10px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            margin-bottom: 6px;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            font-size: 14px;
            color: #dbb6f0;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #ffd166;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            margin-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 14px;
            color: #9a8a9a;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: rgba(45, 27, 78, 0.95);
                padding: 12px 8px;
                border-radius: 16px;
                margin-top: 8px;
            }
            .nav-bar.open {
                display: flex;
            }
            .nav-bar a {
                padding: 12px 16px;
                border-radius: 10px;
            }
            article h1 {
                font-size: 28px;
            }
            article h2 {
                font-size: 24px;
            }
            article h3 {
                font-size: 20px;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 20px;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form input,
            .search-form button {
                width: 100%;
            }
            .rating-stars {
                font-size: 36px;
            }
            .footer-inner {
                flex-direction: column;
                gap: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            article h1 {
                font-size: 24px;
            }
            article p {
                font-size: 16px;
            }
            .comment-form button,
            .rating-form button,
            .search-form button {
                padding: 12px 24px;
                font-size: 15px;
            }
            .breadcrumb {
                font-size: 12px;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .emoji-lg {
            font-size: 1.4em;
        }
        hr {
            border: none;
            border-top: 2px dashed #ddd6cc;
            margin: 36px 0;
        }
        .highlight {
            background: #fff2d6;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
