        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0d131a;
            --secondary-dark: #1a2633;
            --accent-gold: #d4af37;
            --accent-red: #8b0000;
            --text-primary: #e8e6e3;
            --text-secondary: #b0a8a0;
            --card-bg: #232b36;
            --border-color: #3a4553;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffdb70;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        .site-header {
            background-color: var(--secondary-dark);
            padding: 1rem 0;
            border-bottom: 2px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo a:hover {
            text-decoration: none;
            color: #fff;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent-gold);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--card-bg);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: linear-gradient(rgba(13, 19, 26, 0.9), rgba(13, 19, 26, 0.9)), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            border-radius: 10px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: var(--accent-gold);
            text-shadow: 3px 3px 6px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 1.5rem;
            color: var(--text-secondary);
        }
        .search-section {
            background-color: var(--secondary-dark);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 3rem;
            text-align: center;
        }
        .search-section h2 {
            margin-bottom: 1rem;
            color: var(--accent-gold);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--border-color);
            border-radius: 5px 0 0 5px;
            background: var(--primary-dark);
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            border-radius: 0 5px 5px 0;
            padding: 0 1.8rem;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #ffdb70;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--card-bg);
            padding: 2.5rem;
            border-radius: 10px;
            border-left: 5px solid var(--accent-gold);
        }
        .article-content h2, .article-content h3 {
            color: var(--accent-gold);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .article-content h2 {
            font-size: 2.2rem;
        }
        .article-content h3 {
            font-size: 1.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #fff;
            font-weight: 700;
        }
        .article-content em {
            color: var(--text-secondary);
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
            max-width: 900px;
            margin: 0 auto;
        }
        .featured-image figcaption {
            margin-top: 0.8rem;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .inline-link {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
        }
        .sidebar {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 10px;
            height: fit-content;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .sidebar-widget ul {
            list-style: none;
        }
        .sidebar-widget li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .sidebar-widget li::before {
            content: '⯈';
            color: var(--accent-gold);
            position: absolute;
            left: 0;
        }
        .rating-widget {
            text-align: center;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }
        .stars {
            font-size: 2rem;
            color: #ccc;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-gold);
        }
        .rating-form button {
            margin-top: 1rem;
            padding: 0.7rem 1.5rem;
            background-color: var(--secondary-dark);
            color: var(--text-primary);
            border: 1px solid var(--accent-gold);
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
        }
        .comments-section {
            background-color: var(--card-bg);
            padding: 2.5rem;
            border-radius: 10px;
            margin-bottom: 3rem;
        }
        .comments-section h2 {
            color: var(--accent-gold);
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 150px;
            padding: 1rem;
            background-color: var(--primary-dark);
            border: 2px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-primary);
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .comment-form input {
            flex: 1;
            padding: 0.8rem;
            background-color: var(--primary-dark);
            border: 2px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-primary);
        }
        .comment-form button {
            padding: 0.9rem 2.5rem;
            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: #ffdb70;
        }
        .comment-list {
            margin-top: 3rem;
        }
        .comment {
            background-color: var(--secondary-dark);
            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: 0.8rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .footer-links {
            background-color: var(--secondary-dark);
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.5rem 1rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 5px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(212, 175, 55, 0.2);
        }
        .links-container {
            text-align: center;
        }
        .site-footer {
            text-align: center;
            padding: 2rem 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .site-footer p {
            margin-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background-color: var(--secondary-dark);
                padding: 2rem;
                transition: left 0.5s ease;
                z-index: 999;
                border-top: 1px solid var(--border-color);
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .article-content {
                padding: 1.8rem;
            }
            .comment-form .form-row {
                flex-direction: column;
                gap: 0;
            }
            .comment-form input {
                margin-bottom: 1rem;
            }
        }
