        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-red: #9a0000;
            --secondary-red: #6a0000;
            --accent-gold: #d4af37;
            --dark-bg: #0a0a0a;
            --medium-bg: #1a1a1a;
            --light-text: #f0f0f0;
            --gray-text: #aaaaaa;
            --border-color: #333;
            --section-padding: 2rem;
            --header-height: 80px;
            --max-content: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--light-text);
            background: var(--dark-bg);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary-red);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #fff;
            margin-top: 2.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        strong {
            color: #fff;
            font-weight: 700;
        }
        em {
            color: var(--gray-text);
        }
        .container {
            width: 100%;
            max-width: var(--max-content);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .main-header {
            background: rgba(10, 10, 10, 0.95);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--header-height);
            border-bottom: 3px solid var(--primary-red);
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }
        .logo {
            font-family: 'Impact', 'Haettenschweiler', sans-serif;
            font-size: 2.2rem;
            color: var(--primary-red);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 3px 3px 0 #000;
        }
        .logo span {
            color: var(--accent-gold);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            text-decoration: none;
            color: var(--accent-gold);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: transparent;
            border: none;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background: var(--accent-gold);
            transition: 0.3s;
        }
        .breadcrumb {
            background: var(--medium-bg);
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--gray-text);
        }
        .article-header {
            padding: 2rem 0;
            text-align: center;
            background: linear-gradient(rgba(26,26,26,0.9), rgba(10,10,10,0.9)), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDAsIDAsIDAuMDUpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
            color: var(--gray-text);
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
            color: var(--accent-gold);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        .article-content {
            background: var(--medium-bg);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 8px;
            border: 3px solid var(--primary-red);
            margin: 2rem 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(154,0,0,0.2), rgba(106,0,0,0.2));
            border-left: 5px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--medium-bg);
            padding: 1.5rem;
            border-radius: 8px;
            border-top: 4px solid var(--primary-red);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 1.2rem;
        }
        .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;
            background: rgba(255,255,255,0.1);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: white;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
        }
        button, .btn {
            background: linear-gradient(to bottom, var(--primary-red), var(--secondary-red));
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to bottom, #aa0000, #7a0000);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(154,0,0,0.4);
            text-decoration: none;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--accent-gold);
        }
        .comment {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--border-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--gray-text);
        }
        .comment-author {
            font-weight: bold;
            color: var(--accent-gold);
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: var(--medium-bg);
            border-radius: 8px;
        }
        .web-link {
            background: rgba(255,255,255,0.03);
            padding: 1.2rem;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .web-link:hover {
            background: rgba(154,0,0,0.1);
            border-color: var(--primary-red);
            transform: translateY(-3px);
        }
        .main-footer {
            background: #050505;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--gray-text);
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .longtail-links {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                position: fixed;
                top: var(--header-height);
                left: -100%;
                width: 100%;
                height: calc(100vh - var(--header-height));
                background: rgba(10,10,10,0.98);
                flex-direction: column;
                align-items: center;
                padding-top: 3rem;
                transition: left 0.4s ease;
                z-index: 999;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 8px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .longtail-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .featured-image {
                height: 300px;
            }
        }
        @media (max-width: 480px) {
            .longtail-links {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }
        }
