* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a0a0a;
            --secondary-dark: #2a150f;
            --accent-red: #8b0000;
            --accent-gold: #d4af37;
            --accent-brown: #5d4037;
            --text-light: #f5f5f5;
            --text-gray: #cccccc;
            --card-bg: rgba(42, 21, 15, 0.85);
            --border-color: #3e2723;
            --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.6);
            --shadow-light: 0 4px 16px rgba(0, 0, 0, 0.4);
            --transition: all 0.3s ease;
        }
        body {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            color: var(--text-light);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd54f;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(26, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent-red);
            box-shadow: var(--shadow-heavy);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--accent-gold), #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .logo a:hover {
            text-decoration: none;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 4px;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-red);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-dark);
            padding: 20px;
            border-top: 1px solid var(--border-color);
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1.1rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            border: 1px solid var(--border-color);
        }
        .article-header {
            margin-bottom: 40px;
            border-bottom: 2px solid var(--accent-red);
            padding-bottom: 25px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--accent-gold);
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .article-body h2 {
            font-size: 2rem;
            margin: 50px 0 25px;
            color: var(--accent-gold);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .article-body h3 {
            font-size: 1.6rem;
            margin: 40px 0 20px;
            color: #e0a64e;
        }
        .article-body h4 {
            font-size: 1.3rem;
            margin: 30px 0 15px;
            color: #f0c674;
        }
        .article-body p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .article-body em {
            color: #ffb74d;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.15) 0%, rgba(94, 53, 0, 0.15) 100%);
            border-left: 5px solid var(--accent-red);
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: var(--shadow-light);
        }
        .feature-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: var(--shadow-heavy);
            border: 3px solid var(--border-color);
            transition: transform 0.5s ease;
        }
        .feature-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: -20px;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: rgba(42, 21, 15, 0.7);
            border-radius: 8px;
            overflow: hidden;
        }
        .comparison-table th, .comparison-table td {
            padding: 18px 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        .comparison-table th {
            background-color: rgba(139, 0, 0, 0.3);
            color: var(--accent-gold);
            font-weight: 700;
        }
        .comparison-table tr:hover {
            background-color: rgba(139, 0, 0, 0.1);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-light);
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 6px 0 0 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .search-form button:hover {
            background-color: #a00;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #555;
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: var(--accent-gold);
            transform: scale(1.2);
        }
        .rating-form button {
            width: 100%;
            padding: 12px;
            background-color: var(--accent-brown);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            margin-top: 10px;
        }
        .rating-form button:hover {
            background-color: var(--accent-red);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .comment-form button {
            width: 100%;
            padding: 12px;
            background-color: var(--accent-brown);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: var(--accent-red);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links i {
            color: var(--accent-red);
            font-size: 0.9rem;
        }
        .footer-links-section {
            margin-top: 60px;
            padding: 40px 0;
            border-top: 2px solid var(--accent-red);
            border-bottom: 1px solid var(--border-color);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            background-color: rgba(42, 21, 15, 0.7);
            padding: 18px;
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(139, 0, 0, 0.2);
            transform: translateX(5px);
        }
        .web-link a {
            font-weight: 600;
            color: var(--text-light);
        }
        .web-link a:hover {
            color: var(--accent-gold);
        }
        .site-footer {
            background-color: rgba(20, 8, 8, 0.95);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 1px solid var(--border-color);
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }
        .social-links {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        .social-links a {
            color: var(--text-gray);
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--accent-gold);
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .main-content {
                gap: 30px;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 3px;
        }
        .separator {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: var(--accent-red);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }
