        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f5f7fa;
            overflow-x: hidden;
        }
        a {
            color: #e10600;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ff4500;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #e10600, #ff8c00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .logo a {
            color: inherit;
            background: none;
        }
        .logo a:hover {
            transform: none;
            opacity: 0.9;
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
            margin: 0 2rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: #e10600;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ff4500;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            display: flex;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: white;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #e10600;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #e10600;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
        }
        .article-content h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #1a1a2e;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            color: #16213e;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        .article-content h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #e10600;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #495057;
            background: #f8f9fa;
            padding: 1.2rem;
            border-left: 5px solid #e10600;
            border-radius: 4px;
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffecd2 0%, #fcb69f 100%);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 5px solid #e10600;
        }
        .highlight strong {
            color: #c00;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .interactive-link {
            display: inline-block;
            background: #f1f3f4;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            border: 1px dashed #ccc;
        }
        .interactive-link:hover {
            background: #e2e6ea;
            border-color: #e10600;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            color: #16213e;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-widget h3 i {
            color: #e10600;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 10px 0;
        }
        .stars .selected,
        .stars .hovered {
            color: #ffc107;
        }
        .rating-widget button {
            background: #28a745;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-widget button:hover {
            background: #218838;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 12px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-family: inherit;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-form button {
            background: #007bff;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #0056b3;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dotted #dee2e6;
        }
        .related-links a {
            color: #495057;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .related-links a:hover {
            color: #e10600;
        }
        .footer-links-section {
            background: #1a1a2e;
            padding: 2.5rem 0;
            margin-top: 2rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #e0e0e0;
            font-size: 1rem;
            display: block;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            background: #0f0f1a;
            color: #aaa;
            padding: 2.5rem 0 1.5rem;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.9rem;
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                flex: 1 1 100%;
                margin: 1rem 0 0;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background: #16213e;
                flex-direction: column;
                transition: left 0.3s ease;
                padding-top: 2rem;
                z-index: 999;
            }
            nav.active {
                left: 0;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
                padding-left: 2rem;
            }
            .nav-links li {
                margin: 0 0 1.5rem 0;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
