        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #f7f4f0;
            color: #1e1e2a;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        a {
            color: #c84b31;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #a0351f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
            color: #1e1e2a;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #f2a65a;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #c84b31;
            padding-left: 1rem;
            margin-top: 2.6rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #2d2d44;
        }
        h4 {
            font-size: 1.2rem;
            color: #3a3a54;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e1e2a 0%, #2d2d44 100%);
            color: #fff;
            padding: 16px 0;
            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;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            color: #f2a65a;
            text-shadow: 0 2px 8px rgba(242, 166, 90, 0.3);
            transition: transform 0.2s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #f2a65a;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            color: #bbb;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-list li a {
            color: #eee;
            padding: 8px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s ease;
            display: inline-block;
        }
        .nav-list li a:hover {
            background: #f2a65a;
            color: #1e1e2a;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .nav-list li a i {
            margin-right: 6px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: rotate(90deg);
        }
        .breadcrumb {
            background: #ece8e2;
            padding: 10px 0 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6ce;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 10px;
            color: #888;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb .current {
            color: #c84b31;
            font-weight: 600;
        }
        .main-content {
            padding: 30px 0 50px;
        }
        .section-card {
            background: #fff;
            border-radius: 24px;
            padding: 32px 28px;
            margin-bottom: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8e2;
            transition: box-shadow 0.3s ease;
        }
        .section-card:hover {
            box-shadow: 0 8px 36px rgba(0, 0, 0, 0.07);
        }
        .featured-image-wrapper {
            margin: 24px 0 28px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
        }
        .featured-image-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .featured-image-wrapper:hover img {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-size: 0.85rem;
            color: #777;
            margin-top: 8px;
            font-style: italic;
        }
        .search-form {
            display: flex;
            gap: 10px;
            max-width: 500px;
            margin: 16px 0 8px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #ddd6ce;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s ease;
            background: #faf8f6;
        }
        .search-form input:focus {
            border-color: #c84b31;
        }
        .search-form button {
            background: #c84b31;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #a0351f;
            transform: translateY(-2px);
        }
        .rating-area {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px 30px;
            margin: 18px 0 10px;
            padding: 16px 20px;
            background: #faf8f6;
            border-radius: 60px;
            border: 1px solid #ede8e2;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #f2a65a;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.15s ease, color 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.25);
            color: #d98a3c;
        }
        .rating-stars i.active {
            color: #c84b31;
        }
        .rating-form {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .rating-form input[type="number"] {
            width: 80px;
            padding: 6px 10px;
            border: 2px solid #ddd6ce;
            border-radius: 30px;
            text-align: center;
            font-size: 1rem;
        }
        .rating-form button {
            background: #2d2d44;
            color: #fff;
            border: none;
            padding: 8px 22px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #1e1e2a;
        }
        .rating-score-display {
            font-weight: 700;
            font-size: 1.2rem;
            color: #c84b31;
        }
        .comment-form-area {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px dashed #ddd6ce;
        }
        .comment-form-area textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #ddd6ce;
            border-radius: 18px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.3s;
            background: #faf8f6;
        }
        .comment-form-area textarea:focus {
            border-color: #c84b31;
        }
        .comment-form-area .comment-inputs {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin: 12px 0;
        }
        .comment-form-area .comment-inputs input {
            flex: 1;
            min-width: 180px;
            padding: 10px 16px;
            border: 2px solid #ddd6ce;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            background: #faf8f6;
        }
        .comment-form-area .comment-inputs input:focus {
            border-color: #c84b31;
        }
        .comment-form-area .comment-btn {
            background: #2d2d44;
            color: #fff;
            border: none;
            padding: 10px 32px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form-area .comment-btn:hover {
            background: #1e1e2a;
            transform: translateY(-2px);
        }
        friend-link {
            display: block;
            padding: 20px 0 8px;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 16px;
            background: #2d2d44;
            color: #eee;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.25s ease;
        }
        friend-link a:hover {
            background: #c84b31;
            color: #fff;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .site-footer {
            background: #1e1e2a;
            color: #ccc;
            padding: 28px 0 20px;
            margin-top: 40px;
            border-top: 4px solid #f2a65a;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #f2a65a;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .copyright {
            width: 100%;
            text-align: center;
            padding-top: 16px;
            border-top: 1px solid #3a3a54;
            margin-top: 12px;
            font-size: 0.85rem;
            color: #999;
        }
        @media (max-width: 820px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .section-card {
                padding: 20px 16px;
            }
            .header-inner {
                flex-direction: row;
            }
            .nav-list {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #2d2d44;
                padding: 16px 12px;
                border-radius: 18px;
                margin-top: 8px;
                gap: 4px;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
                border-radius: 24px;
                padding: 16px;
            }
            .rating-stars {
                font-size: 2rem;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .featured-image-wrapper {
                margin: 16px 0 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.35rem;
                padding-left: 0.6rem;
            }
            .section-card {
                padding: 16px 12px;
                border-radius: 16px;
            }
            .rating-stars {
                font-size: 1.6rem;
                gap: 4px;
            }
            .comment-form-area .comment-inputs input {
                min-width: 100%;
            }
            .site-footer .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            friend-link a {
                margin: 4px 6px;
                font-size: 0.8rem;
                padding: 4px 12px;
            }
        }
        .last-updated {
            display: inline-block;
            background: #f2a65a20;
            color: #8a5a2a;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
            border: 1px solid #f2a65a40;
        }
        .highlight-box {
            background: #faf3eb;
            border-left: 6px solid #c84b31;
            padding: 16px 22px;
            border-radius: 12px;
            margin: 20px 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            vertical-align: middle;
        }
        .inline-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }
        .inline-list li:before {
            content: "🔥";
            margin-right: 4px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        @media (max-width: 640px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .styled-table th {
            background: #2d2d44;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .styled-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #ede8e2;
            background: #fcfaf8;
        }
        .styled-table tr:hover td {
            background: #f5f0ea;
        }
