* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f5f2;
            color: #1e1a1d;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #9b4b8a;
            text-decoration: underline;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #6d2f6e;
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #2d1b2e 0%, #4a2b4a 100%);
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f2e6f0;
            text-decoration: none;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f2e6f0, #d9b8d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo i {
            -webkit-text-fill-color: #d9b8d4;
            margin-right: 6px;
        }
        nav.main-nav {
            display: flex;
            gap: 8px 16px;
            align-items: center;
            flex-wrap: wrap;
        }
        nav.main-nav a {
            color: #f0e3ee;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 40px;
            transition: background 0.2s ease, color 0.2s ease;
        }
        nav.main-nav a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e3ee;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        .breadcrumb {
            background: #f0ebe8;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e0d6d0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 8px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 8px;
            color: #9a7b8a;
        }
        .breadcrumb a {
            color: #7a4b6a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #3d2a38;
            font-weight: 500;
        }
        main {
            padding: 30px 0 50px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #2d1b2e;
            line-height: 1.2;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #3d2240;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            border-bottom: 3px solid #d9b8d4;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #4a2b4a;
            margin-top: 2rem;
            margin-bottom: 0.7rem;
            line-height: 1.35;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #5a3a5a;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #7a6a72;
            background: #f0ebe8;
            display: inline-block;
            padding: 4px 16px;
            border-radius: 40px;
            margin-bottom: 1.5rem;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-main {
            min-width: 0;
        }
        .sidebar {
            border-left: 1px solid #e0d6d0;
            padding-left: 30px;
        }
        .sidebar-box {
            background: #f0ebe8;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 24px;
        }
        .sidebar-box h4 {
            margin-top: 0;
            border-bottom: 2px solid #d9b8d4;
            padding-bottom: 6px;
        }
        .sidebar-box ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-box ul li {
            padding: 6px 0;
            border-bottom: 1px solid #e0d6d0;
        }
        .sidebar-box ul li:last-child {
            border-bottom: none;
        }
        .sidebar-box ul li a {
            text-decoration: none;
            font-weight: 500;
        }
        .sidebar-box ul li a:hover {
            text-decoration: underline;
        }
        .info-box {
            background: #f5edf2;
            border-left: 5px solid #9b4b8a;
            padding: 18px 22px;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .info-box strong {
            color: #3d2240;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 16px;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 14px;
            padding: 18px 14px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede4e0;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #9b4b8a;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #6a5a62;
            margin-top: 4px;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 1.8rem 0;
            max-width: 500px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #d9c8d4;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #9b4b8a;
        }
        .search-form button {
            padding: 12px 28px;
            background: #9b4b8a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #7a3a6e;
        }
        .comment-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            margin-top: 3rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede4e0;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #3d2a38;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0d6d0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #faf8f7;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #9b4b8a;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            padding: 12px 32px;
            background: #9b4b8a;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn-primary:hover {
            background: #7a3a6e;
            transform: scale(1.02);
        }
        .btn-secondary {
            padding: 10px 24px;
            background: #e0d6d0;
            color: #3d2a38;
            border: none;
            border-radius: 40px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
        }
        .btn-secondary:hover {
            background: #d0c4be;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #d9c8d4;
            cursor: pointer;
        }
        .rating-stars .star.active {
            color: #f5b342;
        }
        friend-link {
            display: block;
            background: #f0ebe8;
            border-radius: 16px;
            padding: 24px 28px;
            margin-top: 40px;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            padding: 0;
        }
        friend-link ul li a {
            text-decoration: none;
            font-weight: 500;
        }
        friend-link ul li a:hover {
            text-decoration: underline;
        }
        footer {
            background: #2d1b2e;
            color: #d9c8d4;
            padding: 30px 0 20px;
            margin-top: 40px;
            font-size: 0.9rem;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        footer a {
            color: #d9b8d4;
            text-decoration: none;
        }
        footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
        footer .copyright {
            text-align: center;
            width: 100%;
            margin-top: 16px;
            border-top: 1px solid #4a2b4a;
            padding-top: 16px;
            font-size: 0.85rem;
            color: #a88a9e;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                border-left: none;
                padding-left: 0;
                order: -1;
            }
            .sidebar-box {
                background: #f0ebe8;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                flex-direction: row;
            }
            nav.main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 12px;
                gap: 4px;
            }
            nav.main-nav.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 500px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .comment-section {
                padding: 18px 16px;
            }
            friend-link ul {
                flex-direction: column;
                gap: 6px;
            }
        }
        .emoji-lg {
            font-size: 1.3em;
        }
        .text-muted {
            color: #7a6a72;
        }
        .mt-2 {
            margin-top: 1.5rem;
        }
        .mb-1 {
            margin-bottom: 0.5rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
            background: #ede4e0;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #6a5a62;
            background: #f8f5f2;
            border-top: 1px solid #ede4e0;
        }
