        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a12;
            --primary-red: #c00a1e;
            --primary-gold: #d4af37;
            --secondary-gray: #2a2a3a;
            --text-light: #f0f0f0;
            --text-dim: #aaa;
            --accent-bronze: #cd7f32;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-gold);
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: var(--primary-red);
            text-shadow: 0 0 8px rgba(192, 10, 30, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #1a1a2a, var(--primary-dark));
            border-bottom: 3px solid var(--primary-red);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--primary-red), var(--primary-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .my-logo a {
            background: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(192, 10, 30, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-gold);
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--secondary-gray);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:not(:last-child)::after {
            content: " > ";
            margin: 0 8px;
            color: var(--text-dim);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(42, 42, 58, 0.7);
            padding: 2.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--primary-red);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
            border-bottom: 3px solid var(--accent-bronze);
            padding-bottom: 1rem;
        }
        .last-updated {
            font-style: italic;
            color: var(--text-dim);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        h2 {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-gray);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-bronze);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-light);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(192,10,30,0.1), rgba(212,175,55,0.1));
            border-left: 5px solid var(--primary-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 3rem auto;
            text-align: center;
            max-width: 800px;
        }
        .featured-image img {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
            border: 3px solid var(--accent-bronze);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-dim);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--secondary-gray);
            padding: 1.5rem;
            border-radius: 8px;
            border-top: 4px solid var(--primary-red);
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: var(--text-light);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border-radius: 5px;
            border: 1px solid #555;
            background-color: #1a1a2a;
            color: var(--text-light);
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button, .btn {
            background: linear-gradient(to right, var(--primary-red), #a00816);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        button:hover, .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(192, 10, 30, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: var(--text-dim);
            cursor: pointer;
            margin: 0.5rem 0;
        }
        .stars .active {
            color: var(--primary-gold);
        }
        .site-footer {
            background-color: #0f0f1a;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-red);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .friend-links {
            margin: 2rem 0;
        }
        friend-link {
            display: inline-block;
            background-color: var(--secondary-gray);
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 5px;
            border: 1px solid #444;
        }
        .copyright {
            text-align: center;
            color: var(--text-dim);
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease-out;
            }
            .main-nav.active {
                max-height: 500px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
                border-bottom: 1px solid #333;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
        }
