:root {
            --primary: #E10600; 
            --secondary: #1A1A1A; 
            --accent: #FFD700; 
            --light: #F5F5F5;
            --dark: #0A0A0A;
            --gray: #333333;
            --text: #EAEAEA;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            --radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
            min-height: 100vh;
            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);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo a {
            background: none;
            text-decoration: none;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: var(--radius);
        }
        .nav-desktop a:hover {
            background-color: rgba(225, 6, 0, 0.1);
            text-decoration: none;
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text);
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            padding: 20px;
            box-shadow: var(--shadow);
            border-top: 1px solid var(--primary);
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .nav-mobile a {
            display: block;
            padding: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            background-color: rgba(26, 26, 26, 0.8);
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: var(--primary);
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1551524165-6b6e5a6166f3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center/cover;
            border-radius: var(--radius);
            margin-bottom: 40px;
            border: 2px solid var(--primary);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .highlight {
            color: var(--accent);
            font-weight: bold;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 60px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(26, 26, 26, 0.9);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary);
        }
        h1, h2, h3 {
            color: var(--light);
            margin-top: 1.8em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent);
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--primary);
        }
        h3 {
            font-size: 1.7rem;
            color: var(--primary);
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--accent);
            margin-bottom: 2em;
        }
        strong {
            color: var(--accent);
            font-weight: 700;
        }
        .article-image {
            margin: 40px auto;
            text-align: center;
        }
        .article-image img {
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 2px solid var(--primary);
            max-height: 500px;
            object-fit: cover;
        }
        .caption {
            font-style: italic;
            font-size: 0.9rem;
            color: #AAA;
            margin-top: 10px;
        }
        blockquote {
            border-left: 4px solid var(--primary);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            background-color: rgba(225, 6, 0, 0.05);
            padding: 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 0.8em;
        }
        aside {
            background-color: rgba(26, 26, 26, 0.9);
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-widget h3 i {
            color: var(--primary);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid var(--gray);
            background-color: var(--dark);
            color: var(--text);
            border-radius: var(--radius) 0 0 var(--radius);
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #C10500;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: var(--gray);
            cursor: pointer;
            margin-bottom: 10px;
        }
        .stars .active {
            color: var(--accent);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            background-color: var(--dark);
            border: 1px solid var(--gray);
            color: var(--text);
            border-radius: var(--radius);
            font-family: inherit;
        }
        .btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            display: inline-block;
        }
        .btn:hover {
            background-color: #C10500;
            transform: translateY(-3px);
            box-shadow: 0 7px 12px rgba(225, 6, 0, 0.3);
            text-decoration: none;
        }
        .internal-links {
            background-color: rgba(10, 10, 10, 0.8);
            padding: 50px 20px;
            margin: 60px 0;
            border-top: 2px solid var(--primary);
            border-bottom: 2px solid var(--primary);
        }
        .internal-links h2 {
            text-align: center;
            margin-bottom: 40px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        .web-link {
            background-color: rgba(26, 26, 26, 0.9);
            padding: 25px;
            border-radius: var(--radius);
            border-left: 4px solid var(--accent);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-left-color: var(--primary);
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
            display: block;
            margin-bottom: 10px;
        }
        .web-link p {
            font-size: 0.95rem;
            color: #BBB;
            margin-bottom: 0;
        }
        footer {
            background-color: var(--secondary);
            padding-top: 60px;
            border-top: 3px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .footer-section ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-section li {
            margin-bottom: 12px;
        }
        .copyright {
            text-align: center;
            padding: 25px;
            border-top: 1px solid var(--gray);
            color: #999;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article, aside {
                padding: 25px;
            }
            .content-wrapper {
                gap: 30px;
            }
        }
