        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #faf9f6;
            color: #1e1e1e;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b55a2b;
            text-decoration: underline;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #7a3b1a;
            text-decoration: none;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1a1a1a;
            margin-top: 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #1a1a1a;
            padding: 0.75rem 0;
            border-bottom: 4px solid #b55a2b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            color: #f5e7d3;
            text-decoration: none;
            background: linear-gradient(135deg, #f5e7d3, #b55a2b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.25s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: #b55a2b;
            margin-right: 0.2rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f5e7d3;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.25rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            color: #e8ddd0;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.4rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            display: inline-block;
        }
        .nav-menu li a:hover,
        .nav-menu li a.active {
            border-bottom-color: #b55a2b;
            color: #ffffff;
        }
        .breadcrumb {
            background: #f0ece6;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6cc;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #8a7a6a;
        }
        .breadcrumb a {
            color: #7a3b1a;
            text-decoration: underline;
        }
        .breadcrumb a:hover {
            text-decoration: none;
        }
        .breadcrumb .current {
            color: #4a3a2a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2c241c 0%, #1a1a1a 100%);
            color: #f5e7d3;
            padding: 3rem 0 2.5rem 0;
            margin-bottom: 2rem;
            position: relative;
        }
        .hero::after {
            content: "♫";
            position: absolute;
            right: 5%;
            bottom: 10%;
            font-size: 8rem;
            opacity: 0.06;
            color: #b55a2b;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: #f5e7d3;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            opacity: 0.85;
            margin-bottom: 1.2rem;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        .hero-meta i {
            margin-right: 0.3rem;
            color: #b55a2b;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            padding: 0 0 3rem 0;
        }
        @media(max-width:960px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        .content-primary {
            min-width: 0;
        }
        .content-sidebar {
            position: sticky;
            top: 6rem;
            align-self: start;
        }
        @media(max-width:960px) {
            .content-sidebar {
                position: static;
            }
        }
        .section-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8e0;
            transition: box-shadow 0.25s;
        }
        .section-card:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        .section-card h2 {
            font-size: 1.9rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
            border-left: 5px solid #b55a2b;
            padding-left: 1rem;
        }
        .section-card h3 {
            font-size: 1.4rem;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            color: #2c241c;
        }
        .section-card h4 {
            font-size: 1.15rem;
            margin-top: 1.4rem;
            margin-bottom: 0.4rem;
            color: #4a3a2a;
            font-weight: 600;
        }
        .section-card p {
            margin-bottom: 1rem;
        }
        .section-card p:last-child {
            margin-bottom: 0;
        }
        .highlight-box {
            background: #f8f4ef;
            border-left: 4px solid #b55a2b;
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.2rem 0;
        }
        .highlight-box strong {
            color: #7a3b1a;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: #f8f4ef;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #e5ddd0;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #b55a2b;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #5a4a3a;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .featured-image {
            margin: 1.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #ddd6cc;
        }
        .featured-image figcaption {
            background: #f8f4ef;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #5a4a3a;
            font-style: italic;
        }
        .sidebar-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8e0;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #ede8e0;
            padding-bottom: 0.5rem;
            color: #1a1a1a;
        }
        .link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .link-list li {
            padding: 0.45rem 0;
            border-bottom: 1px solid #f0ece6;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            color: #4a3a2a;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.2s, padding-left 0.2s;
        }
        .link-list a:hover {
            color: #b55a2b;
            padding-left: 0.3rem;
        }
        .link-list i {
            color: #b55a2b;
            font-size: 0.75rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: #2c241c;
            font-size: 0.9rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #ddd6cc;
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
            background: #faf9f6;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #b55a2b;
            box-shadow: 0 0 0 3px rgba(181, 90, 43, 0.12);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #b55a2b;
            color: #ffffff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            text-decoration: none;
        }
        .btn:hover {
            background: #7a3b1a;
            color: #ffffff;
            transform: translateY(-1px);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #b55a2b;
            color: #b55a2b;
        }
        .btn-outline:hover {
            background: #b55a2b;
            color: #ffffff;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #ddd6cc;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e8a838;
        }
        .rating-value {
            display: inline-block;
            margin-left: 0.6rem;
            font-weight: 700;
            color: #2c241c;
            vertical-align: middle;
        }
        .comment-item {
            padding: 1rem 0;
            border-bottom: 1px solid #ede8e0;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: #1a1a1a;
        }
        .comment-date {
            font-size: 0.8rem;
            color: #8a7a6a;
            margin-left: 0.6rem;
        }
        .comment-body {
            margin-top: 0.3rem;
            color: #3a3a3a;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
        }
        .site-footer {
            background: #1a1a1a;
            color: #ccc5bb;
            padding: 2.5rem 0 1.5rem 0;
            margin-top: 2rem;
            border-top: 4px solid #b55a2b;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media(max-width:720px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-inner h4 {
            color: #f5e7d3;
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #b55a2b;
            text-decoration: underline;
        }
        .footer-inner a:hover {
            color: #e8a838;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 1.5rem auto 0;
            padding: 1rem 1.25rem 0;
            border-top: 1px solid #3a3a3a;
            font-size: 0.85rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0.5rem;
            color: #8a7a6a;
        }
        friend-link {
            display: block;
            margin-top: 0.5rem;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1rem;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem 0;
                gap: 0.25rem;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                margin-top: 0.75rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.5rem 0;
                width: 100%;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .section-card {
                padding: 1.25rem 1rem;
            }
            .section-card h2 {
                font-size: 1.5rem;
            }
        }
        @media(max-width:480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media(prefers-reduced-motion:reduce) {
            * {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
        :focus-visible {
            outline: 3px solid #b55a2b;
            outline-offset: 2px;
        }
        .tag {
            display: inline-block;
            background: #ede8e0;
            padding: 0.1rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #4a3a2a;
            margin-right: 0.3rem;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #8a7a6a;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .last-updated i {
            color: #b55a2b;
        }
        .warn-callout {
            background: #fff6e8;
            border: 1px solid #e8c8a8;
            border-radius: 8px;
            padding: 1rem 1.25rem;
            margin: 1.2rem 0;
            font-size: 0.95rem;
        }
