:root {
            --primary-dark: #0a0a0f;
            --secondary-dark: #1a1a2e;
            --accent-gold: #d4af37;
            --accent-red: #8b0000;
            --text-primary: #f0f0f0;
            --text-secondary: #b8b8b8;
            --border-color: #333348;
            --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
            --transition-speed: 0.3s;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--primary-dark);
            background-image: radial-gradient(circle at 15% 50%, rgba(26, 26, 46, 0.9) 0%, rgba(10, 10, 15, 1) 100%);
            min-height: 100vh;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: #ffdf70;
            text-shadow: var(--shadow-glow);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 15, 0.95);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .logo a:hover {
            color: #ffdf70;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-size: 1.1rem;
            font-weight: 500;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: width var(--transition-speed);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(26, 26, 46, 0.7);
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .main-content {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 35px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1, h2, h3, h4 {
            color: var(--accent-gold);
            margin-top: 1.8em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 15px;
            margin-top: 0;
        }
        h2 {
            font-size: 2.1rem;
            border-left: 5px solid var(--accent-red);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.7rem;
        }
        h4 {
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.15rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.4rem;
            font-weight: 300;
            color: #fff;
            background: linear-gradient(90deg, rgba(139,0,0,0.1) 0%, rgba(26,26,46,0.1) 100%);
            padding: 25px;
            border-radius: 8px;
            border-left: 5px solid var(--accent-red);
            margin-bottom: 2.5em;
        }
        strong {
            color: #fff;
            font-weight: 600;
        }
        em {
            color: var(--text-secondary);
            font-style: italic;
        }
        .info-box, .warning-box, .tip-box {
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
            border-left-width: 5px;
            border-left-style: solid;
            background-color: rgba(40, 40, 60, 0.5);
        }
        .info-box {
            border-left-color: #3498db;
        }
        .warning-box {
            border-left-color: #e74c3c;
        }
        .tip-box {
            border-left-color: var(--accent-gold);
        }
        .info-box h4, .warning-box h4, .tip-box h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .article-image {
            margin: 40px auto;
            text-align: center;
            max-width: 100%;
        }
        .article-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow-glow);
            transition: transform var(--transition-speed);
        }
        .article-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            margin-top: 0;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 14px;
            background-color: rgba(15, 15, 25, 0.8);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            padding: 0 20px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color var(--transition-speed);
        }
        .search-form button:hover {
            background-color: #a30000;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 2rem;
            gap: 5px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #444;
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--accent-gold);
        }
        .rating-form button {
            background-color: var(--secondary-dark);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            padding: 12px;
            border-radius: 5px;
            cursor: pointer;
            transition: all var(--transition-speed);
            font-weight: 600;
        }
        .rating-form button:hover {
            background-color: var(--accent-red);
            border-color: var(--accent-red);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 150px;
            padding: 15px;
            background-color: rgba(15, 15, 25, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-primary);
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
        }
        .comment-form button {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 14px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color var(--transition-speed);
        }
        .comment-form button:hover {
            background-color: #ffdf70;
        }
        .footer-links {
            background-color: var(--secondary-dark);
            padding: 50px 0 30px;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 25px;
        }
        .web-link {
            background-color: rgba(40, 40, 60, 0.5);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid transparent;
            transition: all var(--transition-speed);
        }
        .web-link:hover {
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-glow);
            transform: translateY(-3px);
        }
        .site-footer {
            text-align: center;
            padding: 30px 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            background-color: rgba(10, 10, 15, 0.9);
        }
        .site-footer p {
            margin-bottom: 0.5em;
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 80px);
                background-color: var(--secondary-dark);
                border-right: 1px solid var(--border-color);
                transition: left 0.4s ease;
                overflow-y: auto;
                padding: 30px 20px;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            .main-nav a {
                display: block;
                padding: 18px 10px;
                font-size: 1.2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .lead {
                font-size: 1.2rem;
                padding: 20px;
            }
            article, .sidebar-widget {
                padding: 25px 20px;
            }
            .header-container, .breadcrumb, .container {
                padding-left: 15px;
                padding-right: 15px;
            }
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
