:root {
            --primary-color: #c72e2e;
            --primary-dark: #9a1f1f;
            --secondary-color: #1a1a2e;
            --accent-color: #f8c630;
            --text-color: #333;
            --text-light: #666;
            --bg-color: #fefefe;
            --bg-alt: #f5f5f7;
            --border-color: #e1e1e1;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --max-width: 1200px;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--bg-color);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary-color);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .logo span {
            color: var(--primary-color);
            font-style: italic;
        }
        .search-box {
            display: flex;
            flex: 0 1 400px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 10px 15px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: var(--primary-dark);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav {
            background-color: rgba(26, 26, 46, 0.95);
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            color: white;
            padding: 15px 20px;
            display: block;
            font-weight: 500;
        }
        .nav-links a:hover {
            background-color: rgba(199, 46, 46, 0.2);
            color: var(--accent-color);
        }
        .nav-links a i {
            margin-right: 8px;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-light);
            background-color: var(--bg-alt);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 20px;
        }
        h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 25px;
            line-height: 1.5;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            position: relative;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            padding: 10px;
            font-size: 0.9rem;
            background-color: var(--bg-alt);
        }
        h2, h3, h4 {
            color: var(--secondary-color);
            margin-top: 2em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 4px solid var(--primary-color);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(248, 198, 48, 0.2);
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight strong {
            color: var(--primary-dark);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background-color: var(--bg-alt);
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
            border-top: 4px solid var(--primary-color);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
        }
        blockquote {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--primary-dark);
            border-left: 4px solid var(--primary-color);
            padding-left: 20px;
            margin: 30px 0;
            background-color: var(--bg-alt);
            padding: 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .related-links {
            background-color: var(--bg-alt);
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 30px 0;
        }
        .related-links h4 {
            margin-top: 0;
            color: var(--primary-dark);
        }
        .related-links ul {
            list-style-position: inside;
            color: var(--text-light);
        }
        .related-links li {
            margin-bottom: 10px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-top: 0;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
            color: var(--primary-dark);
        }
        .user-rating {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 15px 0;
            letter-spacing: 5px;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form select, .rating-form textarea, .rating-form input {
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
        }
        .rating-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: var(--primary-dark);
        }
        .comments-section {
            margin-top: 40px;
        }
        .comment {
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .comment-author {
            font-weight: 600;
            color: var(--secondary-color);
        }
        .longtail-links {
            background-color: var(--secondary-color);
            padding: 40px 0;
            margin-top: 60px;
        }
        .web-link {
            display: inline-block;
            margin: 8px 15px;
            padding: 10px 20px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 30px;
            color: white;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--secondary-color);
            color: #aaa;
            text-align: center;
            padding: 30px 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: var(--accent-color);
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                flex: 1 1 100%;
                margin-top: 15px;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--secondary-color);
                box-shadow: var(--shadow);
            }
            nav.active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
            }
            .nav-links a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
        }
        @media (max-width: 480px) {
            article, .sidebar-widget {
                padding: 20px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .sidebar-widget {
            animation: fadeIn 0.8s ease-out;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
