        *,
        *::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, sans-serif;
            background: #0d0b0a;
            color: #f0ebe3;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1400px;
            margin: 0 auto;
            min-height: 100vh;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5e7d3;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f5c542;
            padding-bottom: 0.5rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f5c542;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0d9b5;
        }
        h4 {
            font-size: 1.15rem;
            color: #e8d5b0;
        }
        p {
            margin-bottom: 1.2rem;
            word-break: break-word;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0;
            border-bottom: 1px solid #2e2a26;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c542, #e8a820);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c542;
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        nav a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #f5c542;
            transition: width 0.25s;
        }
        nav a:hover::after,
        nav a:focus-visible::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c542;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            color: #b0a89a;
            padding: 0.8rem 0 0.2rem;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: '›';
            color: #f5c542;
            font-weight: 700;
            margin-right: 0.4rem;
        }
        .breadcrumb a {
            color: #cbb88a;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .search-box {
            display: flex;
            gap: 0.4rem;
            max-width: 480px;
            margin: 1.5rem 0 2rem;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 160px;
            padding: 0.7rem 1rem;
            border: 1px solid #3e3730;
            border-radius: 40px;
            background: #1e1a17;
            color: #f0ebe3;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .search-box input:focus {
            border-color: #f5c542;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.2);
        }
        .search-box button {
            padding: 0.7rem 1.6rem;
            border: none;
            border-radius: 40px;
            background: linear-gradient(135deg, #f5c542, #d4941a);
            color: #0d0b0a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 197, 66, 0.3);
        }
        section {
            margin: 2.8rem 0;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 1.5rem 0;
        }
        .card {
            background: #1a1613;
            border-radius: 16px;
            padding: 1.6rem 1.4rem;
            border: 1px solid #2e2924;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
            border-color: #f5c54240;
        }
        .card h3 {
            margin-top: 0;
        }
        .card h4 {
            margin-top: 0.6rem;
            color: #f5c542;
        }
        .highlight {
            background: linear-gradient(135deg, #2a221b, #1e1814);
            border-left: 6px solid #f5c542;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .highlight p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 0.3rem;
        }
        .tag {
            display: inline-block;
            background: #f5c54220;
            color: #f5c542;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
            border: 1px solid #f5c54230;
        }
        .feature-img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
            border-radius: 16px;
            margin: 1.2rem 0 1.8rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .comment-section,
        .rating-section {
            background: #1a1613;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            border: 1px solid #2e2924;
            margin: 2rem 0;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #e8d5b0;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #3e3730;
            border-radius: 10px;
            background: #0d0b0a;
            color: #f0ebe3;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.2s;
            resize: vertical;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f5c542;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.15);
        }
        .btn-submit {
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 40px;
            background: linear-gradient(135deg, #f5c542, #d4941a);
            color: #0d0b0a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(245, 197, 66, 0.35);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #4a423a;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.1s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5c542;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            padding: 1.6rem 0;
            border-top: 1px solid #2e2a26;
            margin-top: 2.5rem;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
            list-style: none;
            padding: 0;
            margin-top: 0.6rem;
        }
        friend-link ul li a {
            color: #cbb88a;
            font-size: 0.95rem;
        }
        friend-link ul li a:hover {
            color: #f5c542;
        }
        footer {
            padding: 1.8rem 0 2.5rem;
            border-top: 1px solid #2e2a26;
            text-align: center;
            font-size: 0.85rem;
            color: #8a8278;
        }
        footer .copyright {
            margin-top: 0.5rem;
            letter-spacing: 0.3px;
        }
        @media (max-width: 900px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
                padding: 1rem 0 0.5rem;
                background: #0d0b0a;
            }
            #nav-toggle:checked~nav {
                display: flex;
            }
            header {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .comment-section,
            .rating-section {
                padding: 1.2rem 1rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .search-box button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .card {
                padding: 1.2rem 1rem;
            }
            .highlight {
                padding: 1rem 1.2rem;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .text-gold {
            color: #f5c542;
        }
        .text-muted {
            color: #b0a89a;
        }
        .fw-700 {
            font-weight: 700;
        }
        .fs-small {
            font-size: 0.85rem;
        }
        .updated-badge {
            display: inline-block;
            background: #2a221b;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #f5c542;
            border: 1px solid #3e3730;
        }
        :target {
            scroll-margin-top: 90px;
        }
