        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #8B0000;
            --secondary: #1a1a2e;
            --accent: #FFD700;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0f1a;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 4px solid var(--primary);
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff6b6b;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary) 0%, #000000 100%);
            box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: var(--transition);
        }
        .logo:hover {
            color: #fff;
            transform: scale(1.05);
        }
        .logo span {
            color: var(--primary);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: var(--transition);
        }
        nav a:hover {
            background-color: var(--primary);
            color: var(--accent);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--light);
            cursor: pointer;
            transition: var(--transition);
        }
        .mobile-toggle:hover {
            color: var(--accent);
        }
        .breadcrumb {
            background-color: rgba(26, 26, 46, 0.9);
            padding: 12px 0;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .breadcrumb li::after {
            content: "›";
            margin-left: 10px;
            color: var(--gray);
        }
        .breadcrumb li:last-child::after {
            content: "";
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(139, 0, 0, 0.3);
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 3px solid var(--primary);
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .meta-info i {
            margin-right: 8px;
            color: var(--accent);
        }
        .featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid var(--primary);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.01);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(26, 26, 46, 0.8) 100%);
            border-left: 5px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
            font-size: 1.2rem;
            font-weight: 600;
        }
        .search-container {
            background: rgba(26, 26, 46, 0.9);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: none;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-button {
            background: linear-gradient(to right, var(--primary), #b30000);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .search-button:hover {
            background: linear-gradient(to right, #b30000, var(--primary));
        }
        .rating-container {
            background: rgba(26, 26, 46, 0.9);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .rating-title {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .rating-title h3 {
            margin-bottom: 0;
            margin-left: 10px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2.5rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent);
            transform: scale(1.2);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-input {
            padding: 12px;
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .rating-button {
            background: linear-gradient(to right, #007bff, #0056b3);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-button:hover {
            background: linear-gradient(to right, #0056b3, #007bff);
        }
        .comments-container {
            background: rgba(26, 26, 46, 0.9);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-input {
            padding: 15px;
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .comment-button {
            background: linear-gradient(to right, #28a745, #1e7e34);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            align-self: flex-start;
        }
        .comment-button:hover {
            background: linear-gradient(to right, #1e7e34, #28a745);
        }
        aside {
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        .sidebar-section {
            background: rgba(26, 26, 46, 0.9);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .sidebar-title {
            color: var(--accent);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .related-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: var(--transition);
            display: block;
        }
        .related-links a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background: rgba(26, 26, 46, 0.9);
            border-radius: 10px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        .web-link {
            flex: 1 1 200px;
            padding: 15px;
            background: rgba(139, 0, 0, 0.2);
            border-radius: 5px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(139, 0, 0, 0.4);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            display: block;
            text-align: center;
        }
        footer {
            background: linear-gradient(135deg, #000000 0%, var(--secondary) 100%);
            padding: 50px 0 20px;
            margin-top: 60px;
            border-top: 3px solid var(--primary);
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            text-align: center;
            color: var(--gray);
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .mobile-toggle {
                display: block;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 500px;
                margin-top: 20px;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            article {
                padding: 25px;
            }
            .featured-image {
                height: 300px;
            }
            .meta-info {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .sidebar-section, .footer-links {
            animation: fadeIn 0.8s ease forwards;
        }
        .emoji {
            font-size: 1.3rem;
            margin: 0 5px;
        }
        strong {
            color: var(--accent);
            font-weight: 700;
        }
        .important {
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            padding: 15px;
            border-radius: 5px;
            margin: 20px 0;
            border-left: 3px solid var(--accent);
        }
        p, li {
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }
        section {
            margin-bottom: 3rem;
        }
