        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #e0e0e0;
            background: #0a0a12;
            background-image: radial-gradient(#1a1a2e 1px, transparent 1px);
            background-size: 30px 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Arial Black', Gadget, sans-serif; color: #f0c674; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; text-align: center; border-bottom: 3px solid #8b4513; padding-bottom: 20px; margin-top: 30px; }
        h2 { font-size: 2.2rem; border-left: 5px solid #8b4513; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: 1.8rem; color: #d4af37; margin-top: 2rem; }
        h4 { font-size: 1.4rem; color: #b8860b; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #ffcc00; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #fff; text-shadow: 0 0 8px #ffcc00; }
        strong { color: #d4af37; }
        em { color: #aaa; }
        .container {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-areas:
                "header"
                "breadcrumb"
                "main"
                "sidebar"
                "footer";
            gap: 30px;
        }
        @media (min-width: 992px) {
            .container {
                grid-template-columns: 3fr 1fr;
                grid-template-areas:
                    "header header"
                    "breadcrumb breadcrumb"
                    "main sidebar"
                    "footer footer";
            }
        }
        header { grid-area: header; padding: 20px 0; border-bottom: 2px solid #22223a; }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 3rem;
            color: #ffcc00;
            text-align: center;
            text-decoration: none;
            display: block;
            text-shadow: 2px 2px 4px #000, 0 0 15px #8b4513;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }
        .my-logo:hover { color: #fff; text-shadow: 0 0 20px #ffcc00; }
        nav { background: #1a1a2e; border-radius: 8px; padding: 10px; }
        .nav-desktop { display: none; }
        @media (min-width: 768px) {
            .nav-desktop {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 25px;
                list-style: none;
            }
            .nav-desktop a {
                padding: 10px 15px;
                border: 1px solid #333;
                border-radius: 5px;
                font-weight: bold;
            }
            .nav-desktop a:hover { background: #33334d; border-color: #ffcc00; }
            .hamburger { display: none; }
        }
        .hamburger {
            display: block;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
            margin: 0 auto;
        }
        .nav-mobile {
            list-style: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            text-align: center;
            background: #1a1a2e;
            border-radius: 8px;
            margin-top: 10px;
        }
        .nav-mobile.active { max-height: 500px; padding: 15px 0; }
        .nav-mobile li { margin: 15px 0; }
        .nav-mobile a { display: block; padding: 10px; }
        .breadcrumb { grid-area: breadcrumb; font-size: 0.9rem; color: #aaa; padding: 10px 0; border-bottom: 1px dashed #333; }
        .breadcrumb a { color: #ccc; }
        .breadcrumb i { margin: 0 8px; }
        main { grid-area: main; }
        article { background: rgba(26, 26, 46, 0.8); padding: 25px; border-radius: 12px; border: 1px solid #33334d; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        .article-meta { text-align: center; color: #888; font-style: italic; border-bottom: 1px dashed #444; padding-bottom: 15px; margin-bottom: 25px; }
        aside { grid-area: sidebar; }
        .sidebar-widget {
            background: rgba(26, 26, 46, 0.8);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #33334d;
            margin-bottom: 25px;
        }
        .sidebar-widget h3 { font-size: 1.4rem; margin-top: 0; }
        .search-form { display: flex; }
        .search-form input {
            flex-grow: 1;
            padding: 12px;
            background: #22223a;
            border: 1px solid #444;
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: #fff;
        }
        .search-form button {
            background: #8b4513;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #a0522d; }
        .rating-form, .comment-form { margin-top: 20px; }
        .stars { display: flex; gap: 5px; margin: 10px 0; }
        .star { font-size: 1.5rem; color: #555; cursor: pointer; transition: color 0.2s; }
        .star:hover,
        .star.active { color: #ffcc00; }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background: #22223a;
            border: 1px solid #444;
            border-radius: 6px;
            color: #fff;
        }
        button[type="submit"] {
            background: linear-gradient(to right, #8b4513, #a0522d);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3); }
        .featured-img {
            margin: 30px auto;
            border: 5px solid #33334d;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
        }
        .featured-img img { width: 100%; transition: transform 0.5s; }
        .featured-img:hover img { transform: scale(1.03); }
        .content-links { background: #151525; padding: 20px; border-radius: 8px; margin: 30px 0; border-left: 4px solid #ffcc00; }
        .content-links ul { list-style-position: inside; color: #ccc; }
        .content-links li { margin-bottom: 10px; }
        footer { grid-area: footer; text-align: center; padding: 30px 0; border-top: 2px solid #22223a; margin-top: 40px; }
        friend-link {
            display: block;
            margin: 20px 0;
            font-size: 1.1rem;
        }
        friend-link a { margin: 0 15px; }
        .copyright { color: #777; font-size: 0.9rem; margin-top: 20px; }
        .highlight-box {
            background: linear-gradient(135deg, #1a1a2e, #0f3460);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #3949ab;
            margin: 30px 0;
            box-shadow: inset 0 0 15px rgba(57, 73, 171, 0.3);
        }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .last-updated { text-align: right; font-size: 0.9rem; color: #888; padding-top: 20px; border-top: 1px dashed #444; }
