:root {
            --primary-red: #e10600;
            --dark-bg: #15151e;
            --content-bg: #1e1e28;
            --text-light: #f0f0f0;
            --text-grey: #b0b0b0;
            --accent-gold: #ffd700;
            --border-color: #333344;
            --spacing-unit: 1rem;
            --max-content-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-light);
            background-color: var(--dark-bg);
            font-size: 1.05rem;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary-red);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: var(--max-content-width);
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        .site-header {
            background-color: rgba(21, 21, 30, 0.95);
            border-bottom: 2px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-red);
            text-transform: uppercase;
            letter-spacing: -1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo a:hover {
            text-decoration: none;
            color: #fff;
        }
        .my-logo span {
            color: var(--text-light);
            font-weight: 300;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: var(--primary-red);
            color: white;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--content-bg);
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 0.5rem;
            color: var(--text-grey);
        }
        .breadcrumb a {
            color: var(--text-grey);
        }
        .search-bar {
            background-color: var(--content-bg);
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-radius: 8px;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            background-color: #2a2a35;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #c10500;
        }
        .main-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            .main-content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--content-bg);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .sidebar {
            background-color: var(--content-bg);
            padding: 1.5rem;
            border-radius: 8px;
            align-self: start;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .sidebar-links ul {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 0.8rem;
        }
        h1, h2, h3, h4 {
            color: var(--text-light);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-red);
            border-bottom: 3px solid var(--primary-red);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--accent-gold);
        }
        h3 {
            font-size: 1.6rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-grey);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--text-grey);
            margin-bottom: 2rem;
        }
        strong, b {
            color: var(--accent-gold);
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #d4d4d4;
        }
        blockquote {
            border-left: 4px solid var(--primary-red);
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: var(--text-grey);
            font-style: italic;
        }
        .article-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem auto;
            display: block;
            border: 1px solid var(--border-color);
        }
        .img-caption {
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-grey);
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        .content-links {
            background-color: #2a2a35;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 4px solid var(--accent-gold);
        }
        .content-links h4 {
            margin-top: 0;
            color: var(--accent-gold);
        }
        .interactive-section {
            background-color: var(--content-bg);
            padding: 2rem;
            border-radius: 8px;
            margin-top: 3rem;
            border-top: 2px solid var(--border-color);
        }
        .rating-widget, .comment-widget {
            margin-bottom: 3rem;
        }
        .rating-widget h3, .comment-widget h3 {
            color: var(--accent-gold);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--accent-gold);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            background-color: #2a2a35;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-light);
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            min-height: 150px;
            margin-bottom: 1rem;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background-color: #2a2a35;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-light);
        }
        .comment-form button, .rating-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background-color: #c10500;
        }
        .site-footer {
            background-color: #0f0f15;
            margin-top: 4rem;
            padding: 3rem 0 1.5rem;
            border-top: 2px solid var(--primary-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links h4 {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background-color: #1a1a24;
            border-radius: 4px;
            margin-bottom: 1rem;
            border-left: 3px solid var(--accent-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-grey);
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .last-updated {
            font-size: 0.9rem;
            color: var(--text-grey);
            font-style: italic;
            margin-bottom: 2rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .main-nav ul { gap: 1rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 10px 15px rgba(0,0,0,0.5);
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid var(--border-color);
            }
            .header-container {
                flex-wrap: wrap;
            }
            .my-logo a {
                font-size: 2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
