:root {
            --primary: #c00a1e;
            --secondary: #1a1a2e;
            --accent: #ffcc00;
            --light: #f4f4f9;
            --dark: #0d0d1a;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        .logo span {
            color: var(--primary);
        }
        .nav-desktop {
            display: flex;
            gap: 1.8rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover:after,
        .nav-desktop a.active:after {
            width: 100%;
        }
        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--secondary);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            font-size: 0.9rem;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child):after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        article {
            background: white;
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid var(--accent);
            padding-bottom: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        article h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        article strong {
            color: var(--primary);
            font-weight: 700;
        }
        article em {
            color: var(--gray);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        .featured-image {
            width: 100%;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--secondary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-right: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 0 var(--radius) var(--radius) 0;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: var(--accent);
            color: var(--dark);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ffcc00;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form {
            display: none;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .rating-form.active {
            display: flex;
        }
        .rating-form select,
        .rating-form textarea {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-family: inherit;
        }
        .rating-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background: var(--primary);
        }
        .comments-list {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
        }
        .comment {
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: var(--radius);
            font-family: inherit;
        }
        .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background: var(--accent);
            color: var(--dark);
        }
        .footer-links {
            background: var(--secondary);
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            border-radius: var(--radius);
            padding: 1rem;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ddd;
            font-size: 0.95rem;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        .site-footer {
            background: var(--dark);
            color: #aaa;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #aaa;
        }
        .social-links a:hover {
            color: var(--accent);
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .nav-mobile-toggle {
                display: block;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .header-container {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1.5rem;
            }
            .sidebar-widget {
                padding: 1.2rem;
            }
        }
