        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0a14;
            --secondary-dark: #1a1a2e;
            --accent-gold: #c9a145;
            --accent-crimson: #8b0000;
            --text-light: #f0e6d2;
            --text-dim: #b8b8b8;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(201, 161, 69, 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, rgba(10, 10, 20, 0.95), transparent);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            background: linear-gradient(45deg, var(--accent-gold), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--secondary-dark);
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-dim);
            border-bottom: 1px solid #333;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(26, 26, 46, 0.7);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-content h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #333;
            color: var(--text-dim);
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
            color: var(--accent-gold);
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: #fff;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-crimson);
        }
        .article-content h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: var(--text-light);
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(201, 161, 69, 0.1), rgba(139, 0, 0, 0.1));
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .featured-image img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            font-style: italic;
            color: var(--text-dim);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .sidebar-widget {
            background-color: rgba(26, 26, 46, 0.7);
            padding: 1.8rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border: 1px solid #333;
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .search-form input {
            width: 100%;
            padding: 0.9rem;
            background-color: var(--primary-dark);
            border: 1px solid #444;
            border-radius: 5px;
            color: var(--text-light);
            margin-bottom: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.9rem;
            background-color: var(--accent-crimson);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #a30000;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .stars i.active {
            color: gold;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            background-color: var(--primary-dark);
            border: 1px solid #444;
            border-radius: 5px;
            color: var(--text-light);
            min-height: 120px;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-form button {
            padding: 0.9rem 2rem;
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #e0c060;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #444;
        }
        .related-links a::before {
            content: '▶';
            margin-right: 0.7rem;
            font-size: 0.8rem;
            color: var(--accent-gold);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            padding: 3rem 0;
            border-top: 2px solid #333;
            border-bottom: 2px solid #333;
            margin-top: 3rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.03);
            padding: 1.2rem;
            border-radius: 5px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(201, 161, 69, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--text-dim);
            display: block;
        }
        .web-link a:hover {
            color: var(--accent-gold);
        }
        .site-footer {
            text-align: center;
            padding: 2rem 0;
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        .copyright {
            margin-top: 1rem;
            opacity: 0.7;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
