* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #faf8f5;
            color: #2d2d2d;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #8b1a1a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d4a843;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 16px 0;
            border-bottom: 4px solid #d4a843;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #d4a843;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 0 rgba(139, 26, 26, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #e6c06a;
            text-decoration: none;
        }
        .my-logo span {
            color: #fff;
            font-weight: 300;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(212, 168, 67, 0.2);
        }
        nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #f0e6d3;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.25s;
            border: 1px solid transparent;
        }
        nav a:hover {
            background: rgba(212, 168, 67, 0.15);
            border-color: #d4a843;
            color: #d4a843;
            text-decoration: none;
        }
        nav a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #f0ebe4;
            padding: 12px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e0d6cc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #8b1a1a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b4f3a;
        }
        .breadcrumb .current {
            color: #8b1a1a;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        article h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 12px;
            line-height: 1.2;
            border-left: 6px solid #d4a843;
            padding-left: 20px;
        }
        .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 18px 30px;
            color: #6b6b6b;
            font-size: 0.9rem;
            margin-bottom: 28px;
            padding-bottom: 18px;
            border-bottom: 2px dashed #e0d6cc;
        }
        .meta i {
            margin-right: 6px;
            color: #d4a843;
        }
        .hero-img {
            margin: 28px 0 36px;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }
        .hero-img figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #6b6b6b;
            margin-top: 10px;
            font-style: italic;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-top: 48px;
            margin-bottom: 14px;
            border-bottom: 3px solid #d4a843;
            padding-bottom: 6px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d2d2d;
            margin-top: 32px;
            margin-bottom: 10px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4a3a2a;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
        }
        .highlight {
            background: #fdf5e6;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        blockquote {
            border-left: 5px solid #d4a843;
            background: #f9f4ed;
            padding: 16px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d3d3d;
        }
        blockquote strong {
            color: #8b1a1a;
        }
        ul,
        ol {
            margin: 12px 0 18px 24px;
        }
        li {
            margin-bottom: 8px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        th {
            background: #1a1a2e;
            color: #d4a843;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #eee;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #fdf5e6;
        }
        .interactive-section {
            background: #fff;
            border-radius: 16px;
            padding: 32px 28px;
            margin: 40px 0;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8e0d6;
        }
        .interactive-section h2 {
            margin-top: 0;
            border-bottom-color: #d4a843;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #2d2d2d;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0d6cc;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.25s;
            background: #faf8f5;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #d4a843;
            outline: none;
            background: #fff;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #8b1a1a;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #b02a2a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 26, 26, 0.3);
        }
        .btn-secondary {
            background: #d4a843;
            color: #1a1a2e;
        }
        .btn-secondary:hover {
            background: #e6c06a;
            box-shadow: 0 6px 20px rgba(212, 168, 67, 0.3);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            color: #ddd;
            transition: color 0.15s;
        }
        .star-rating .star.active {
            color: #d4a843;
        }
        .star-rating .star:hover,
        .star-rating .star.hover {
            color: #e6c06a;
        }
        .score-display {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-top: 8px;
        }
        footer {
            background: #1a1a2e;
            color: #e0d6cc;
            padding: 40px 0 20px;
            border-top: 4px solid #d4a843;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        footer h3 {
            color: #d4a843;
            font-size: 1.2rem;
            margin-bottom: 12px;
            border: none;
        }
        footer a {
            color: #c4b8aa;
        }
        footer a:hover {
            color: #d4a843;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: rgba(212, 168, 67, 0.08);
            border-radius: 20px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: rgba(212, 168, 67, 0.2);
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 32px;
            border-top: 1px solid #2d2d4a;
            font-size: 0.85rem;
            color: #8a7a6a;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding-top: 16px;
                border-top: 1px solid rgba(212, 168, 67, 0.2);
                margin-top: 12px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            article h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .interactive-section {
                padding: 20px 16px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            article h1 {
                font-size: 1.4rem;
            }
            .meta {
                font-size: 0.8rem;
                gap: 10px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .tag {
            display: inline-block;
            background: #f0ebe4;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #6b4f3a;
            margin: 2px 4px;
        }
        .tag:hover {
            background: #d4a843;
            color: #fff;
            text-decoration: none;
        }
