        *,
        *::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: #0b0a0d;
            color: #e8e3da;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5e7c8;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 12px rgba(245, 197, 66, 0.18);
        }
        h2 {
            font-size: 2rem;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-left: 5px solid #f5c542;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #ecd8a8;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #d9c79a;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 1rem 0 1.5rem 1.8rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        header {
            background: linear-gradient(145deg, #1a161f 0%, #0f0d13 100%);
            border-bottom: 2px solid #2d2638;
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0.6rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            background: linear-gradient(135deg, #f5c542, #e8a63d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(245, 197, 66, 0.25);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #a8947a;
            display: block;
            font-weight: 400;
            letter-spacing: 0.15em;
            margin-top: -4px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 0.1rem;
        }
        .nav-list li a {
            display: block;
            padding: 0.6rem 1.1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #cdc2b0;
            transition: background 0.25s, color 0.25s;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: rgba(245, 197, 66, 0.12);
            color: #f5c542;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            border-radius: 6px;
            color: #f5c542;
            font-size: 1.6rem;
            padding: 0.3rem 0.7rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .hamburger:hover {
            background: rgba(245, 197, 66, 0.12);
        }
        .breadcrumb {
            background: #16131b;
            padding: 0.7rem 1.5rem;
            border-radius: 10px;
            margin: 1rem 0 1.8rem 0;
            font-size: 0.9rem;
            color: #a89b88;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            border: 1px solid #2d2638;
        }
        .breadcrumb span {
            color: #a89b88;
        }
        .breadcrumb a {
            color: #f5c542;
        }
        .breadcrumb a:hover {
            color: #ffd966;
        }
        .breadcrumb .current {
            color: #e8dcc8;
            font-weight: 600;
        }
        .last-updated {
            display: inline-block;
            background: #1f1a28;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #b8aa94;
            border: 1px solid #2d2638;
            margin-bottom: 1.8rem;
        }
        .last-updated i {
            color: #f5c542;
            margin-right: 6px;
        }
        .content-section {
            background: #121016;
            border-radius: 18px;
            padding: 2rem 2.2rem;
            margin-bottom: 2.2rem;
            border: 1px solid #221f2a;
            transition: border-color 0.3s;
        }
        .content-section:hover {
            border-color: #3d334a;
        }
        .content-section .highlight {
            background: rgba(245, 197, 66, 0.07);
            border-left: 4px solid #f5c542;
            padding: 0.8rem 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 1.5rem 0;
        }
        .insight-box {
            background: #1e1a26;
            border-radius: 14px;
            padding: 1.5rem 1.8rem;
            margin: 1.8rem 0;
            border: 1px solid #2f283a;
            position: relative;
        }
        .insight-box::before {
            content: "\f0eb";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: -12px;
            left: 20px;
            background: #f5c542;
            color: #0b0a0d;
            padding: 0 12px;
            border-radius: 30px;
            font-size: 0.9rem;
        }
        .emoji-lg {
            font-size: 1.6rem;
            margin-right: 0.3rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a1620;
            padding: 0.6rem;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            text-align: center;
            padding: 0.8rem 0 0.2rem 0;
            font-size: 0.9rem;
            color: #b8aa94;
            font-style: italic;
        }
        .search-section {
            background: #16131b;
            border-radius: 18px;
            padding: 2rem 2.2rem;
            margin: 2.5rem 0;
            border: 1px solid #2d2638;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #3d334a;
            background: #0f0d13;
            color: #e8e3da;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.15);
        }
        .search-form button {
            padding: 0.8rem 2rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5c542, #e0951f);
            color: #0b0a0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .search-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(245, 197, 66, 0.3);
        }
        .comment-section,
        .rating-section {
            background: #16131b;
            border-radius: 18px;
            padding: 2rem 2.2rem;
            margin: 2rem 0;
            border: 1px solid #2d2638;
        }
        .comment-section textarea,
        .rating-section textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border-radius: 12px;
            border: 1px solid #3d334a;
            background: #0f0d13;
            color: #e8e3da;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .comment-section textarea:focus,
        .rating-section textarea:focus {
            border-color: #f5c542;
        }
        .comment-section input[type="text"],
        .rating-section input[type="text"],
        .rating-section input[type="number"] {
            padding: 0.7rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #3d334a;
            background: #0f0d13;
            color: #e8e3da;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            width: 100%;
            max-width: 380px;
        }
        .comment-section input:focus,
        .rating-section input:focus {
            border-color: #f5c542;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.4rem;
            color: #cdc2b0;
            font-weight: 500;
        }
        .btn-submit {
            padding: 0.7rem 2.2rem;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #f5c542, #e0951f);
            color: #0b0a0d;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .btn-submit:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(245, 197, 66, 0.25);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #3d334a;
            cursor: pointer;
            margin: 0.5rem 0 1rem 0;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5c542;
            transform: scale(1.1);
        }
        footer {
            background: #0f0d13;
            border-top: 2px solid #2d2638;
            padding: 3rem 0 2rem 0;
            margin-top: 3rem;
        }
        friend-link {
            display: block;
            padding: 1.5rem 2rem;
            background: #1a1620;
            border-radius: 16px;
            border: 1px solid #2d2638;
            margin-bottom: 2rem;
        }
        friend-link::before {
            content: "🌐 Friendly Links";
            display: block;
            font-size: 1.1rem;
            font-weight: 700;
            color: #f5c542;
            margin-bottom: 0.8rem;
            letter-spacing: 0.04em;
        }
        .friend-links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .friend-links-list li a {
            color: #cdc2b0;
            font-size: 0.95rem;
            padding: 0.2rem 0;
            border-bottom: 1px solid transparent;
            transition: border-color 0.25s, color 0.25s;
        }
        .friend-links-list li a:hover {
            color: #f5c542;
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: #7a6f5e;
            font-size: 0.9rem;
            padding: 1.5rem 0 0.5rem 0;
            border-top: 1px solid #1f1a28;
        }
        .copyright strong {
            color: #b8aa94;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 0.7rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                padding: 0.2rem 0;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a161f;
                border-radius: 0 0 16px 16px;
                padding: 0.8rem 0;
                margin-top: 0.8rem;
                border: 1px solid #2d2638;
            }
            .nav-list.show {
                display: flex;
            }
            .nav-list li a {
                padding: 0.7rem 1.5rem;
                border-radius: 0;
            }
            .hamburger {
                display: block;
            }
            .container {
                padding: 0 1rem;
            }
            .content-section {
                padding: 1.3rem 1.2rem;
            }
            .search-section,
            .comment-section,
            .rating-section {
                padding: 1.3rem 1.2rem;
            }
            .breadcrumb {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
                flex-wrap: wrap;
            }
            .featured-image {
                padding: 0.4rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            friend-link {
                padding: 1rem 1.2rem;
            }
            .friend-links-list {
                gap: 0.5rem 1rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                max-width: 100%;
            }
            .search-form button {
                width: 100%;
            }
            .comment-section input[type="text"],
            .rating-section input[type="text"],
            .rating-section input[type="number"] {
                max-width: 100%;
            }
        }
        .text-glow {
            color: #f5c542;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
        }
        .gap-1 {
            gap: 1rem;
        }
        .rounded-pill {
            border-radius: 40px;
        }
        .op-7 {
            opacity: 0.7;
        }
        .fw-600 {
            font-weight: 600;
        }
        .inline-link {
            color: #f5c542;
            font-weight: 500;
            padding: 0.1rem 0.2rem;
            border-bottom: 1px dotted rgba(245, 197, 66, 0.3);
        }
        .inline-link:hover {
            border-bottom-style: solid;
            text-decoration: none;
        }
        .hash-link {
            scroll-margin-top: 90px;
        }
