        *,
        *::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: #0b0c10;
            color: #e8e8e8;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding: 0 16px;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        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;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f5f5;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #f0c040;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #2a2a3a;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0d080;
        }
        h4 {
            font-size: 1.15rem;
            color: #c0b8a8;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            flex: 1;
        }
        .site-header {
            background: linear-gradient(145deg, #12141c, #1a1d2a);
            border-bottom: 2px solid #2a2a3a;
            padding: 16px 24px;
            border-radius: 0 0 20px 20px;
            margin-bottom: 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f0c040, #d4a020);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(240, 192, 64, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            background: #1a1d2a;
            padding: 8px;
            border-radius: 50%;
            font-size: 1.4rem;
            -webkit-text-fill-color: #f0c040;
            color: #f0c040;
        }
        .my-logo small {
            font-size: 0.65rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            font-weight: 400;
            letter-spacing: 1px;
            display: block;
        }
        .nav-toggle {
            display: none;
            background: transparent;
            border: 2px solid #f0c040;
            color: #f0c040;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f0c04022;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            padding: 6px 0;
            font-weight: 500;
            position: relative;
            color: #d0d0d0;
            font-size: 0.95rem;
        }
        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f0c040;
            transition: width 0.3s;
        }
        .nav-menu li a:hover::after,
        .nav-menu li a:focus-visible::after {
            width: 100%;
        }
        .nav-menu li a.active {
            color: #f0c040;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            font-size: 0.85rem;
            padding: 12px 0 8px 0;
            color: #999;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 14px;
            color: #666;
        }
        .breadcrumb a {
            color: #bbb;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #f0c040;
        }
        .search-block {
            background: #1a1d2a;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 28px 0 32px 0;
            border: 1px solid #2a2a3a;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 640px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 40px;
            border: 1px solid #3a3a4a;
            background: #0b0c10;
            color: #eee;
            font-size: 1rem;
            transition: 0.3s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c040;
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: #f0c040;
            color: #0b0c10;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .img-hero {
            margin: 24px 0 32px 0;
            border-radius: 18px;
            overflow: hidden;
            background: #1a1d2a;
            padding: 8px;
            border: 1px solid #2a2a3a;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .img-hero img {
            width: 100%;
            border-radius: 12px;
            aspect-ratio: 1200/630;
            object-fit: cover;
            background: #222;
        }
        .img-hero figcaption {
            padding: 12px 16px 6px 16px;
            font-size: 0.9rem;
            color: #aaa;
            text-align: center;
            font-style: italic;
        }
        .content-section {
            background: #12141c;
            border-radius: 18px;
            padding: 28px 24px;
            margin-bottom: 28px;
            border: 1px solid #1e1e2e;
        }
        .content-section p,
        .content-section li {
            color: #d5d5d5;
        }
        .rating-area,
        .comment-area {
            background: #1a1d2a;
            border-radius: 16px;
            padding: 24px 20px;
            margin: 28px 0;
            border: 1px solid #2a2a3a;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #444;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c040;
        }
        .rating-form button,
        .comment-form button {
            margin-top: 12px;
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: #f0c040;
            color: #0b0c10;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 14px;
            border: 1px solid #3a3a4a;
            background: #0b0c10;
            color: #eee;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            transition: 0.3s;
            outline: none;
        }
        .comment-form textarea:focus {
            border-color: #f0c040;
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.1);
        }
        .comment-form input[type="text"] {
            width: 100%;
            max-width: 360px;
            padding: 12px 18px;
            border-radius: 40px;
            border: 1px solid #3a3a4a;
            background: #0b0c10;
            color: #eee;
            font-size: 1rem;
            margin-bottom: 12px;
            outline: none;
            transition: 0.3s;
        }
        .comment-form input[type="text"]:focus {
            border-color: #f0c040;
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.1);
        }
        friend-link {
            display: block;
            background: #1a1d2a;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 32px 0 20px 0;
            border: 1px solid #2a2a3a;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: #f0c040;
            margin-bottom: 10px;
        }
        .site-footer {
            background: #0d0e14;
            border-top: 2px solid #1e1e2e;
            padding: 28px 20px 20px;
            border-radius: 20px 20px 0 0;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
            margin-top: 32px;
        }
        .site-footer .copyright {
            margin-top: 12px;
            font-size: 0.85rem;
            color: #666;
        }
        .site-footer .copyright strong {
            color: #aaa;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 10px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .site-header {
                padding: 12px 16px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 14px;
                padding-top: 14px;
                border-top: 1px solid #2a2a3a;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 10px 0;
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                width: 100%;
            }
            .content-section {
                padding: 18px 14px;
            }
            .img-hero {
                padding: 4px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 10px;
            }
            .breadcrumb li+li::before {
                margin-right: 10px;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0c10;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a4a;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        .text-gold {
            color: #f0c040;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .gap-8 {
            gap: 8px;
        }
        .align-center {
            align-items: center;
        }
