        * { 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.7;
            color: #eee;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #f06; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #ff9; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 2rem; margin: 1rem 0; }
        .container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }
        h1, h2, h3, h4 { font-family: 'Impact', 'Arial Black', sans-serif; color: #ff4444; margin-top: 1.5em; margin-bottom: 0.7em; line-height: 1.2; text-shadow: 2px 2px 4px #000; }
        h1 { font-size: 3.2rem; border-bottom: 5px solid #f06; padding-bottom: 10px; }
        h2 { font-size: 2.5rem; border-left: 6px solid #f06; padding-left: 15px; }
        h3 { font-size: 2rem; }
        h4 { font-size: 1.5rem; color: #ff9966; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        strong { color: #ffcc00; font-weight: 700; }
        em { color: #aaffaa; font-style: italic; }
        .highlight { background-color: rgba(255, 68, 0, 0.15); padding: 2px 6px; border-radius: 3px; }
        .site-header {
            background: rgba(20, 20, 30, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #f06;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Impact', fantasy;
            font-size: 2.8rem;
            color: #ff0000;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 10px #ff0000, 2px 2px 0 #000;
            background: linear-gradient(90deg, #ff0000, #ff8800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .my-logo:hover { text-shadow: 0 0 20px #ff5555, 3px 3px 0 #000; }
        .desktop-nav { display: flex; gap: 2rem; }
        .desktop-nav a {
            color: #ccc;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            border: 1px solid transparent;
        }
        .desktop-nav a:hover { color: #fff; background: rgba(255, 68, 0, 0.3); border-color: #f06; }
        .hamburger { display: none; font-size: 1.8rem; color: #fff; background: none; border: none; cursor: pointer; }
        .mobile-nav {
            display: none;
            flex-direction: column;
            width: 100%;
            background: rgba(10, 10, 20, 0.98);
            margin-top: 1rem;
            border-radius: 10px;
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.5s ease-out;
        }
        .mobile-nav.active { display: flex; max-height: 500px; }
        .mobile-nav a { padding: 1rem; color: #ddd; border-bottom: 1px solid #333; text-align: center; }
        .mobile-nav a:hover { background: #f06; color: #000; }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #ff9966; }
        .breadcrumb span { color: #fff; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(30, 30, 46, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #444;
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            border: 3px solid #f06;
            margin: 2rem auto;
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }
        .info-box {
            background: rgba(0, 40, 80, 0.3);
            border-left: 5px solid #00aaff;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(255, 68, 0, 0.05);
            border-radius: 10px;
        }
        .link-list a {
            background: rgba(255, 68, 0, 0.2);
            padding: 0.7rem 1.2rem;
            border-radius: 50px;
            border: 1px solid #f06;
        }
        .link-list a:hover { background: rgba(255, 68, 0, 0.6); }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(25, 25, 35, 0.8);
            padding: 1.5rem;
            border-radius: 10px;
            border-top: 4px solid #f06;
        }
        .widget h3 { font-size: 1.5rem; margin-top: 0; }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border-radius: 5px;
            border: 1px solid #555;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        button, .btn {
            background: linear-gradient(to right, #ff0000, #ff6600);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        button:hover, .btn:hover { background: linear-gradient(to right, #ff3300, #ff9900); transform: scale(1.05); box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4); }
        .stars { display: flex; gap: 0.5rem; font-size: 1.5rem; color: #555; cursor: pointer; }
        .stars .active { color: #ffcc00; }
        .update-time { font-size: 0.9rem; color: #88ff88; text-align: right; margin-top: 2rem; padding-top: 1rem; border-top: 1px dashed #444; }
        .site-footer {
            background: rgba(10, 10, 20, 0.95);
            margin-top: 4rem;
            padding: 3rem 0 2rem;
            border-top: 3px solid #f06;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            font-size: 1.2rem;
        }
        friend-link a { color: #00ccff; font-weight: bold; }
        .copyright { color: #aaa; font-size: 0.9rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #333; }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .desktop-nav { display: none; }
            .hamburger { display: block; align-self: flex-end; margin-top: -3rem; }
            .article-content { padding: 1.5rem; }
        }
        @media (min-width: 769px) {
            .mobile-nav { display: none !important; }
        }
