:root {
            --primary: #c00a0a;
            --secondary: #0a0a0a;
            --accent: #f0b00a;
            --light: #f5f5f5;
            --dark: #222;
            --gray: #444;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--light);
            background-color: var(--secondary);
            background-image: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 2px solid var(--primary);
            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 {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 0 var(--dark);
        }
        .logo span {
            color: var(--accent);
        }
        .logo:hover {
            transform: scale(1.02);
        }
        .desktop-nav ul {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        .desktop-nav a {
            color: var(--light);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.98);
            border-top: 1px solid var(--gray);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .mobile-nav a {
            color: var(--light);
            font-size: 1.1rem;
            padding: 10px 0;
            border-bottom: 1px solid var(--gray);
            display: block;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(34, 34, 34, 0.7);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child):after {
            content: '>';
            margin-left: 10px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            border-bottom: 1px solid var(--gray);
        }
        .hero h1 {
            font-size: 3.2rem;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 3px 3px 0 #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        .stat {
            text-align: center;
        }
        .stat .number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent);
            display: block;
        }
        .stat .label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #aaa;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(34, 34, 34, 0.7);
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        article h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gray);
        }
        article h2:first-child {
            margin-top: 0;
        }
        article h3 {
            color: var(--accent);
            font-size: 1.7rem;
            margin: 30px 0 15px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
            color: #ddd;
        }
        article strong {
            color: var(--accent);
            font-weight: 700;
        }
        article em {
            color: #aaa;
            font-style: italic;
        }
        .article-img {
            float: right;
            margin: 15px 0 20px 30px;
            max-width: 450px;
            border: 3px solid var(--primary);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        @media (max-width: 768px) {
            .article-img {
                float: none;
                margin: 20px auto;
                max-width: 100%;
            }
        }
        .article-img img {
            border-radius: calc(var(--radius) - 3px);
        }
        .caption {
            font-size: 0.9rem;
            text-align: center;
            color: #999;
            padding: 10px;
            background-color: rgba(0,0,0,0.5);
            border-top: 1px solid var(--gray);
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(192, 10, 10, 0.1), rgba(240, 176, 10, 0.05));
            border-left: 4px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .quote {
            font-size: 1.4rem;
            color: var(--light);
            text-align: center;
            font-style: italic;
            padding: 30px;
            position: relative;
        }
        .quote:before, .quote:after {
            content: '"';
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.5;
            position: absolute;
        }
        .quote:before {
            top: 0;
            left: 10px;
        }
        .quote:after {
            bottom: -20px;
            right: 10px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: rgba(34, 34, 34, 0.7);
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--accent);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--gray);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            background-color: #111;
            border: 1px solid var(--gray);
            border-right: none;
            border-radius: var(--radius) 0 0 var(--radius);
            color: var(--light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 0 var(--radius) var(--radius) 0;
            padding: 0 20px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #a00909;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #555;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .star {
            margin: 0 2px;
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent);
            transform: scale(1.2);
        }
        .rating-form textarea {
            width: 100%;
            height: 100px;
            padding: 12px;
            background-color: #111;
            border: 1px solid var(--gray);
            border-radius: var(--radius);
            color: var(--light);
            margin-bottom: 15px;
            resize: vertical;
            font-family: inherit;
        }
        .rating-form button {
            width: 100%;
            padding: 12px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: #a00909;
        }
        .comment-list {
            max-height: 400px;
            overflow-y: auto;
            margin-bottom: 20px;
        }
        .comment {
            padding: 15px;
            background-color: rgba(0,0,0,0.3);
            border-radius: var(--radius);
            margin-bottom: 15px;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #aaa;
        }
        .comment-user {
            font-weight: bold;
            color: var(--accent);
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background-color: #111;
            border: 1px solid var(--gray);
            border-radius: var(--radius);
            color: var(--light);
            font-family: inherit;
        }
        .comment-form button {
            width: 100%;
            padding: 12px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #a00909;
        }
        .long-tail-section {
            padding: 50px 0;
            border-top: 1px solid var(--gray);
            border-bottom: 1px solid var(--gray);
            background-color: rgba(20, 20, 20, 0.8);
        }
        .long-tail-section h2 {
            text-align: center;
            color: var(--accent);
            margin-bottom: 30px;
            font-size: 2rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: rgba(34, 34, 34, 0.8);
            padding: 15px;
            border-radius: var(--radius);
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .web-link:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }
        footer {
            background-color: #111;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .footer-column h4 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--gray);
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column li {
            margin-bottom: 10px;
        }
        .footer-column a {
            color: #bbb;
        }
        .footer-column a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--gray);
            color: #777;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mt-40 { margin-top: 40px; }
        .emoji { font-size: 1.2em; }
        @media (max-width: 768px) {
            html { font-size: 15px; }
            .hero h1 { font-size: 2.5rem; }
            article h2 { font-size: 1.9rem; }
            article h3 { font-size: 1.5rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .mobile-nav { display: flex; }
            .header-container { padding: 12px 0; }
            .content-wrapper, article, .sidebar-widget { padding: 25px; }
            .hero-stats { gap: 20px; }
            .stat .number { font-size: 2rem; }
        }
