        * { 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: #f0f0f0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            padding-bottom: 60px;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif; color: #e53935; margin-bottom: 1rem; text-shadow: 2px 2px 4px #000; }
        h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); border-bottom: 4px solid #e53935; padding-bottom: 0.5rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #ff9800; }
        h3 { font-size: clamp(1.4rem, 3vw, 2rem); color: #4fc3f7; }
        h4 { font-size: 1.2rem; color: #81c784; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #4fc3f7; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #ffeb3b; text-shadow: 0 0 8px #ffeb3b; }
        strong { color: #ff9800; }
        em { color: #81c784; }
        .container {
            width: 95%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: rgba(10, 10, 10, 0.95);
            padding: 1rem 0;
            border-bottom: 3px solid #e53935;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Impact', sans-serif;
            font-size: 2.5rem;
            color: #e53935;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(90deg, #e53935, #ff9800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(229, 57, 53, 0.5);
        }
        .my-logo:hover {
            text-shadow: 0 0 25px rgba(229, 57, 53, 0.9);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
        }
        .hamburger span {
            height: 3px;
            width: 25px;
            background: #e53935;
            margin: 4px;
            border-radius: 2px;
            transition: 0.3s;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #f0f0f0;
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            border: 1px solid transparent;
        }
        nav a:hover {
            border-color: #e53935;
            background: rgba(229, 57, 53, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #4fc3f7; }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }
        .content-area {
            background: rgba(30, 30, 46, 0.8);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            border: 1px solid #333;
        }
        .intro-lead {
            font-size: 1.4rem;
            color: #ffeb3b;
            border-left: 5px solid #e53935;
            padding-left: 1rem;
            margin-bottom: 2.5rem;
        }
        .sidebar {
            background: rgba(20, 20, 35, 0.9);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #444;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            border-bottom: 2px solid #ff9800;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border-radius: 6px;
            border: 1px solid #555;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(to right, #e53935, #ff5722);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .star-rating span:hover,
        .star-rating span:hover ~ span {
            color: #ff9800;
        }
        .star-rating .selected {
            color: #ff9800;
        }
        .featured-img {
            margin: 2.5rem 0;
            border: 5px solid #333;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(255, 152, 0, 0.3);
        }
        .featured-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-img:hover img {
            transform: scale(1.03);
        }
        .article-section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px dashed #444;
        }
        .highlight-box {
            background: rgba(255, 152, 0, 0.1);
            border-left: 4px solid #ff9800;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .related-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        .related-links a {
            display: block;
            background: rgba(60, 60, 80, 0.6);
            padding: 1rem;
            border-radius: 6px;
            border: 1px solid #444;
            text-align: center;
            transition: all 0.3s;
        }
        .related-links a:hover {
            background: rgba(79, 195, 247, 0.2);
            border-color: #4fc3f7;
        }
        friend-link {
            display: block;
            background: rgba(40, 40, 60, 0.8);
            margin: 1rem 0;
            padding: 1.5rem;
            border-radius: 8px;
            border: 2px solid #e53935;
            text-align: center;
            font-weight: bold;
        }
        footer {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 3px solid #333;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: flex;
                position: absolute;
                right: 15px;
                top: 25px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                background: rgba(20, 20, 35, 0.95);
                border-radius: 8px;
                padding: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            .content-area {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.8rem;
            }
            .related-links {
                grid-template-columns: 1fr;
            }
        }
