        *,
        *::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, sans-serif;
            background: #f5f0eb;
            color: #2c241e;
            line-height: 1.7;
            padding: 0 16px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b45a2c;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #8a3f1a;
            text-decoration: underline;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            color: #1f1a16;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            letter-spacing: -0.5px;
            border-left: 6px solid #b45a2c;
            padding-left: 20px;
            margin-top: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #d9c8b8;
            padding-bottom: 6px;
        }
        h3 {
            font-size: 1.35rem;
            color: #3d2e24;
        }
        h4 {
            font-size: 1.1rem;
            color: #5a4032;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.6rem 0 1.4rem 1.8rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        strong {
            color: #1f1a16;
        }
        em {
            font-style: italic;
            color: #6b4f3c;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #fffcf9;
            padding: 20px 28px 32px;
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 8px;
            border-bottom: 2px solid #e5d7cc;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #7a3e1a, #b45a2c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(180, 90, 44, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: default;
        }
        .my-logo i {
            -webkit-text-fill-color: #b45a2c;
            font-size: 1.6rem;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        nav.main-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav.main-nav a {
            padding: 6px 14px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #3d2e24;
            background: transparent;
            transition: background 0.2s, color 0.2s;
        }
        nav.main-nav a:hover,
        nav.main-nav a:focus {
            background: #b45a2c;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.7rem;
            background: none;
            border: none;
            color: #3d2e24;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e5d7cc;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4px 10px;
            font-size: 0.85rem;
            color: #7a6a5c;
            padding: 10px 0 4px;
            border-bottom: 1px solid #ede3da;
            margin-bottom: 18px;
        }
        .breadcrumb a {
            color: #7a6a5c;
        }
        .breadcrumb a:hover {
            color: #b45a2c;
        }
        .breadcrumb span {
            color: #b45a2c;
            font-weight: 600;
        }
        .search-wrap {
            display: flex;
            max-width: 500px;
            margin: 18px 0 24px;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #d9c8b8;
            background: #fff;
            transition: border-color 0.2s;
        }
        .search-wrap:focus-within {
            border-color: #b45a2c;
        }
        .search-wrap input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            font-size: 1rem;
            background: transparent;
            outline: none;
            color: #2c241e;
        }
        .search-wrap input::placeholder {
            color: #a18f7e;
        }
        .search-wrap button {
            padding: 0 22px;
            background: #b45a2c;
            color: #fff;
            border: none;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-wrap button:hover {
            background: #8a3f1a;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 36px;
            margin: 20px 0 32px;
        }
        .main-article {
            min-width: 0;
        }
        .sidebar {
            background: #f8f2ec;
            border-radius: 18px;
            padding: 20px 18px;
            border: 1px solid #e5d7cc;
            height: fit-content;
            position: sticky;
            top: 20px;
        }
        .sidebar h3 {
            font-size: 1.15rem;
            border-bottom: 2px solid #d9c8b8;
            padding-bottom: 8px;
            margin-bottom: 14px;
        }
        .sidebar ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar a {
            font-weight: 500;
            font-size: 0.95rem;
        }
        figure {
            margin: 24px 0 28px;
            background: #f8f2ec;
            border-radius: 18px;
            padding: 12px;
            border: 1px solid #ede3da;
        }
        figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #6b4f3c;
            padding: 10px 0 4px;
            font-style: italic;
        }
        .comment-section,
        .rating-section {
            background: #f8f2ec;
            border-radius: 18px;
            padding: 24px 22px;
            margin: 28px 0 20px;
            border: 1px solid #e5d7cc;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            border-bottom: 2px solid #d9c8b8;
            padding-bottom: 8px;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 12px;
        }
        .comment-section input,
        .comment-section textarea,
        .rating-section select,
        .rating-section input {
            padding: 12px 16px;
            border: 2px solid #d9c8b8;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            transition: border-color 0.2s;
            font-family: inherit;
            width: 100%;
        }
        .comment-section input:focus,
        .comment-section textarea:focus,
        .rating-section select:focus,
        .rating-section input:focus {
            border-color: #b45a2c;
            outline: none;
        }
        .comment-section textarea {
            resize: vertical;
            min-height: 90px;
        }
        .btn {
            padding: 12px 28px;
            background: #b45a2c;
            color: #fff;
            border: none;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .btn:hover {
            background: #8a3f1a;
            transform: scale(1.02);
        }
        .btn:active {
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #d9c8b8;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #e8a72a;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            background: #f0e8e0;
            border-radius: 18px;
            padding: 20px 22px;
            margin: 28px 0 16px;
            border: 1px solid #d9c8b8;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            font-weight: 500;
        }
        friend-link::before {
            content: "🤝 Friends & Related ";
            font-weight: 700;
            font-size: 1.1rem;
            display: block;
            color: #3d2e24;
            margin-bottom: 8px;
        }
        footer {
            border-top: 2px solid #e5d7cc;
            padding: 24px 0 12px;
            margin-top: 28px;
            text-align: center;
            font-size: 0.9rem;
            color: #7a6a5c;
        }
        footer p {
            margin-bottom: 4px;
        }
        footer .copyright {
            font-weight: 500;
            color: #3d2e24;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a6a5c;
            background: #f0e8e0;
            display: inline-block;
            padding: 4px 16px;
            border-radius: 40px;
            margin: 6px 0 12px;
        }
        @media (max-width: 820px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .container {
                padding: 16px 16px 24px;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hamburger {
                display: block;
            }
            nav.main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fffcf9;
                padding: 12px 0 8px;
                border-top: 1px solid #e5d7cc;
                margin-top: 8px;
            }
            nav.main-nav.open {
                display: flex;
            }
            nav.main-nav a {
                padding: 10px 16px;
                border-radius: 0;
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 12px 12px 20px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h2 {
                font-size: 1.2rem;
            }
            .search-wrap {
                flex-direction: column;
                border-radius: 16px;
                border: 2px solid #d9c8b8;
            }
            .search-wrap input {
                padding: 12px 16px;
                border-radius: 16px 16px 0 0;
            }
            .search-wrap button {
                padding: 12px 16px;
                border-radius: 0 0 16px 16px;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
            figure {
                padding: 6px;
            }
        }
        .tag {
            display: inline-block;
            background: #ede3da;
            border-radius: 40px;
            padding: 2px 14px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #5a4032;
        }
        .highlight-box {
            background: #faf3ed;
            border-left: 5px solid #b45a2c;
            padding: 16px 20px;
            border-radius: 0 16px 16px 0;
            margin: 20px 0;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 16px 0;
        }
        @media (max-width: 600px) {
            .two-col {
                grid-template-columns: 1fr;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 16px 0;
            border-radius: 12px;
            border: 1px solid #e5d7cc;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fffcf9;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #ede3da;
        }
        th {
            background: #f0e8e0;
            font-weight: 700;
            color: #3d2e24;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .fa-ul {
            margin-left: 2.2rem;
        }
        .fa-ul li {
            margin-bottom: 0.6rem;
        }
