* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #e10600;
            --secondary: #1a1a1a;
            --accent: #0077cc;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary);
            color: var(--light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            transition: var(--transition);
        }
        .logo a:hover {
            color: #ff4d4d;
            text-shadow: 0 0 10px rgba(225, 6, 0, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background-color: var(--primary);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        #nav-toggle {
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--secondary);
            padding: 1rem;
            border-top: 1px solid #444;
        }
        .nav-mobile a {
            padding: 0.75rem;
            border-bottom: 1px solid #333;
        }
        .nav-mobile a:hover {
            background-color: #333;
        }
        #nav-toggle:checked ~ .nav-mobile {
            display: flex;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f1f1f1;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        h1 {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--gray);
            margin-bottom: 2rem;
            font-size: 0.9rem;
            display: flex;
            gap: 1rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
        }
        .intro {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 2rem;
            padding: 1rem;
            background-color: #f8f9fa;
            border-left: 4px solid var(--primary);
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 1.5rem;
            border-radius: 6px;
            border-left: 5px solid #ffc107;
            margin: 1.5rem 0;
        }
        .highlight strong {
            color: #856404;
        }
        .image-wrapper {
            margin: 2rem 0;
            text-align: center;
        }
        .image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        figcaption {
            margin-top: 0.5rem;
            font-style: italic;
            color: var(--gray);
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .link-inline {
            color: var(--accent);
            font-weight: 600;
            border-bottom: 1px dashed var(--accent);
            transition: var(--transition);
        }
        .link-inline:hover {
            color: var(--primary);
            border-bottom: 1px solid var(--primary);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar h3 {
            font-size: 1.25rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #ddd;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #ccc;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.25rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #c10500;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.5rem;
            color: #ffc107;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i:hover {
            color: #ff9800;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 100px;
        }
        .comment-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #0056b3;
        }
        .footer-links {
            background-color: #f8f9fa;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .web-link {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.5rem 1rem;
            background: white;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link a {
            color: var(--accent);
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .footer-links .container {
            text-align: center;
        }
        footer {
            background-color: var(--secondary);
            color: var(--light);
            padding: 2rem 0;
            text-align: center;
        }
        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .footer-nav a {
            padding: 0.5rem;
            transition: var(--transition);
        }
        .footer-nav a:hover {
            color: var(--primary);
        }
        .copyright {
            font-size: 0.9rem;
            color: #aaa;
            border-top: 1px solid #444;
            padding-top: 1rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .sidebar {
                position: static;
            }
        }
