        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #f0f0f0;
            background-color: #0d1117;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #ffcc00;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff9900;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #b8860b;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .my-logo:hover {
            color: #ff9900;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            background: rgba(255, 204, 0, 0.1);
        }
        .nav-links a:hover {
            background: rgba(255, 204, 0, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ffcc00;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 12px;
            border-left: 5px solid #b8860b;
        }
        .sidebar {
            background: #1a1a1a;
            padding: 1.5rem;
            border-radius: 12px;
            border-right: 5px solid #b8860b;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 1.5rem;
            text-align: center;
            text-shadow: 1px 1px 3px #000;
            border-bottom: 2px dashed #b8860b;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #ffcc00;
            margin: 2rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 4px solid #b8860b;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff9900;
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #ffcc99;
            margin: 1.2rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .emphasis {
            font-weight: bold;
            color: #ffcc00;
            font-size: 1.2rem;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #aaa;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .widget {
            margin-bottom: 2rem;
            padding: 1rem;
            background: #252525;
            border-radius: 8px;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffcc00;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #444;
            border-radius: 5px;
            background: #333;
            color: #fff;
        }
        .search-form button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background: #ffcc00;
            color: #000;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            background: #ff9900;
        }
        footer {
            background: #1a1a1a;
            padding: 2rem 0;
            border-top: 3px solid #b8860b;
            margin-top: 2rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: #252525;
            border-radius: 5px;
            border: 1px solid #444;
            transition: transform 0.3s;
        }
        friend-link:hover {
            transform: scale(1.02);
            border-color: #ffcc00;
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a1a;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 2px solid #b8860b;
            }
            .nav-links.active {
                display: flex;
            }
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                justify-content: space-between;
            }
            .footer-content {
                flex-direction: column;
            }
        }
