        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #c00a0a;
            --secondary-color: #1a1a1a;
            --accent-color: #d4af37;
            --text-color: #f0f0f0;
            --text-secondary: #aaa;
            --bg-dark: #111;
            --bg-card: #1e1e1e;
            --border-color: #333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-dark);
            overflow-x: hidden;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background-color: var(--secondary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: var(--text-color);
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            transition: var(--transition);
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: calc(100vh - 70px);
            background-color: var(--secondary-color);
            padding: 30px;
            transition: var(--transition);
            z-index: 999;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
            overflow-y: auto;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav a {
            display: block;
            color: var(--text-color);
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(30, 30, 30, 0.8);
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-color);
        }
        .hero {
            padding: 40px 0;
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 25px;
            color: #ddd;
        }
        .search-container {
            max-width: 600px;
            margin: 30px auto;
            padding: 0 20px;
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-box input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            outline: none;
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #a00808;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content h2, .article-content h3 {
            margin: 35px 0 15px;
            color: var(--accent-color);
        }
        .article-content h2 {
            font-size: 2rem;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }
        .article-content h3 {
            font-size: 1.5rem;
        }
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #e0e0e0;
            line-height: 1.7;
        }
        .article-content strong {
            color: var(--accent-color);
            font-weight: 600;
        }
        .article-content em {
            color: #ff9999;
            font-style: italic;
        }
        .ranking-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: var(--shadow);
            background-color: var(--bg-card);
        }
        .ranking-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 15px;
            text-align: left;
        }
        .ranking-table td {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        .ranking-table tr:hover {
            background-color: rgba(192, 10, 10, 0.1);
        }
        .score-badge {
            display: inline-block;
            padding: 5px 15px;
            background-color: #6c3;
            color: white;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            padding: 10px;
            background-color: var(--bg-card);
            color: var(--text-secondary);
            font-style: italic;
            text-align: center;
        }
        .sidebar {
            background-color: var(--bg-card);
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed var(--border-color);
        }
        .related-links a {
            color: var(--text-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links a:hover {
            color: var(--accent-color);
        }
        .related-links i {
            color: var(--primary-color);
        }
        .interactive-section {
            margin: 50px 0;
            background-color: var(--bg-card);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .interactive-section h2 {
            color: var(--accent-color);
            margin-bottom: 25px;
            text-align: center;
        }
        .rating-widget {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc00;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            font-weight: 500;
            color: #ddd;
        }
        .form-group input,
        .form-group textarea {
            padding: 12px 15px;
            background-color: #2a2a2a;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .submit-btn:hover {
            background-color: #a00808;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
            padding: 30px;
            background-color: var(--bg-card);
            border-radius: 10px;
        }
        .web-link {
            background-color: #252525;
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 4px solid var(--primary-color);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .web-link a {
            color: var(--text-color);
            font-weight: 500;
            display: block;
            margin-bottom: 10px;
        }
        .web-link p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .footer {
            background-color: var(--secondary-color);
            padding: 50px 0 20px;
            margin-top: 50px;
            border-top: 3px solid var(--primary-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: var(--text-secondary);
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 25px;
            border-left: 4px solid var(--accent-color);
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-style: italic;
            padding: 20px;
            background-color: rgba(30, 30, 30, 0.8);
            border-radius: 8px;
            margin: 25px 0;
            position: relative;
        }
        .quote::before {
            content: '"';
            font-size: 4rem;
            color: var(--primary-color);
            position: absolute;
            top: -20px;
            left: 10px;
            opacity: 0.5;
        }
        .note {
            background-color: rgba(0, 85, 170, 0.1);
            padding: 15px;
            border-radius: 5px;
            border-left: 4px solid #0099ff;
            margin: 20px 0;
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            .hero {
                padding: 30px 0;
            }
            .main-content {
                gap: 30px;
            }
            .interactive-section {
                padding: 20px;
            }
            .web-links-container {
                grid-template-columns: 1fr;
                padding: 20px;
            }
        }
