:root {
            --primary: #e10600;
            --secondary: #1a1a1a;
            --accent: #00a8ff;
            --light: #f5f5f5;
            --dark: #0a0a0a;
            --gray: #333;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--light);
            background-color: var(--secondary);
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: linear-gradient(to bottom, var(--dark), var(--secondary));
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            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(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(225, 6, 0, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            color: var(--light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: var(--primary);
            color: var(--dark);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light);
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid var(--gray);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--light);
            padding: 1rem;
            border-bottom: 1px solid var(--gray);
        }
        .nav-mobile a:hover {
            background-color: var(--gray);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--dark);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--light);
        }
        .breadcrumb span {
            color: #aaa;
        }
        .search-bar {
            padding: 2rem 0;
            background-color: rgba(10,10,10,0.9);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid var(--primary);
            border-radius: 4px 0 0 4px;
            background: var(--light);
            color: var(--dark);
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article {
            background: rgba(26,26,26,0.9);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .article h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article h2 {
            color: var(--accent);
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gray);
        }
        .article h3 {
            color: #ddd;
            font-size: 1.5rem;
            margin: 1.8rem 0 1rem;
        }
        .article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #ccc;
        }
        .article strong {
            color: var(--primary);
            font-weight: 700;
        }
        .article em {
            color: #aaa;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(225,6,0,0.1), rgba(0,168,255,0.1));
            border-left: 5px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            border: 2px solid var(--primary);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(26,26,26,0.9);
            padding: 1.5rem;
            border-radius: 8px;
            border-top: 4px solid var(--primary);
        }
        .sidebar-widget h3 {
            color: var(--light);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .comments-section, .rating-section {
            background: rgba(26,26,26,0.9);
            padding: 2rem;
            border-radius: 8px;
            margin-top: 3rem;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .star-rating .active {
            color: gold;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            background: var(--dark);
            border: 1px solid var(--gray);
            border-radius: 4px;
            color: var(--light);
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-submit {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            align-self: flex-start;
        }
        .footer-links {
            background-color: var(--dark);
            padding: 3rem 0;
            border-top: 2px solid var(--gray);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: var(--gray);
            padding: 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--light);
            display: block;
        }
        .footer {
            background-color: var(--dark);
            text-align: center;
            padding: 2rem;
            border-top: 1px solid var(--gray);
            color: #aaa;
            font-size: 0.9rem;
        }
        .emoji { font-size: 1.2em; }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
