        * { 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: #f0f0f0;
            background: #0a0a0a;
            background-image: radial-gradient(circle at 15% 50%, rgba(90, 10, 20, 0.15) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(120, 20, 30, 0.1) 0%, transparent 20%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 { font-family: 'Impact', 'Haettenschweiler', 'Franklin Gothic Bold', sans-serif; color: #d32f2f; margin-bottom: 1rem; letter-spacing: 0.5px; }
        h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); text-transform: uppercase; text-shadow: 3px 3px 0 #500, 6px 6px 10px rgba(0,0,0,0.8); border-bottom: 4px solid #8b0000; padding-bottom: 1rem; margin-top: 1.5rem; }
        h2 { font-size: 2.5rem; border-left: 5px solid #b71c1c; padding-left: 15px; margin-top: 3rem; }
        h3 { font-size: 1.8rem; color: #ff5252; margin-top: 2.5rem; }
        h4 { font-size: 1.4rem; color: #ff8a80; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; text-align: justify; font-size: 1.1rem; }
        a { color: #ff6b6b; text-decoration: none; transition: all 0.3s ease; border-bottom: 1px dashed transparent; }
        a:hover { color: #ffd54f; border-bottom: 1px dashed #ffd54f; text-shadow: 0 0 8px rgba(255, 107, 107, 0.5); }
        strong { color: #ffccbc; font-weight: 700; }
        em { color: #bdbdbd; font-style: italic; }
        .site-header {
            padding: 1.5rem 0;
            border-bottom: 2px solid #333;
            background: rgba(20, 10, 10, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Courier New', monospace;
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #8b0000, #ff0000, #8b0000);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: -1px;
            text-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
        }
        .my-logo:hover { transform: scale(1.03); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ccc;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover { background: rgba(211, 47, 47, 0.2); }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #d32f2f;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #ff8a80; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 1024px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-body {
            background: rgba(30, 20, 20, 0.7);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #444;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        }
        .intro {
            font-size: 1.3rem;
            color: #ffcc80;
            padding: 1.5rem;
            border: 2px dashed #d32f2f;
            border-radius: 8px;
            margin-bottom: 3rem;
            background: rgba(70, 0, 0, 0.2);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(100,0,0,0.3), rgba(50,0,0,0.5));
            padding: 2rem;
            border-left: 6px solid #ff0000;
            margin: 2.5rem 0;
            box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border: 5px solid #500;
            border-radius: 8px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.8);
            transition: transform 0.5s ease;
        }
        .article-image:hover { transform: scale(1.02); }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(40, 30, 30, 0.8);
            border-radius: 8px;
            margin: 2rem 0;
            justify-content: center;
        }
        .link-list a {
            background: rgba(120, 30, 30, 0.7);
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            border: 1px solid #8b0000;
        }
        .link-list a:hover { background: rgba(180, 40, 40, 0.9); }
        .sidebar {
            background: rgba(25, 15, 15, 0.8);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #444;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            border-bottom: 2px solid #d32f2f;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            background: #222;
            border: 1px solid #8b0000;
            color: #fff;
            border-radius: 4px 0 0 4px;
        }
        .search-form button {
            background: #8b0000;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #b71c1c; }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            justify-content: center;
        }
        .stars .star:hover,
        .stars .star.active { color: #ffd700; }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            background: #222;
            border: 1px solid #555;
            color: #fff;
            border-radius: 4px;
        }
        .form-btn {
            background: linear-gradient(90deg, #8b0000, #b71c1c);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .form-btn:hover { background: linear-gradient(90deg, #b71c1c, #d32f2f); box-shadow: 0 0 15px rgba(211, 47, 47, 0.5); }
        .site-footer {
            margin-top: 4rem;
            padding: 3rem 0;
            border-top: 3px solid #333;
            background: rgba(15, 10, 10, 0.9);
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            font-size: 1.2rem;
        }
        friend-link a {
            font-weight: bold;
            font-size: 1.3rem;
        }
        .copyright {
            color: #777;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #444;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #555;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; }
            .main-nav { width: 100%; margin-top: 1rem; display: none; }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 0.5rem; }
            .hamburger { display: block; align-self: flex-end; margin-top: -3rem; }
            .article-body { padding: 1.5rem; }
            .sidebar { position: static; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
        }
