        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #e50914;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #b2070d;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a1a1a;
            color: #fff;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
        }
        .logo a {
            color: #ffd700;
            font-style: italic;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #fff;
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            color: #fff;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: #e50914;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #ffd700;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a1a1a;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            padding: 20px;
            z-index: 1000;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #333;
        }
        .nav-mobile a:hover {
            color: #ffd700;
        }
        .breadcrumb {
            padding: 10px 0;
            background-color: #f1f1f1;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #666;
        }
        .breadcrumb a:hover {
            color: #e50914;
        }
        .search-form {
            margin: 20px 0;
            display: flex;
            justify-content: center;
        }
        .search-form input {
            padding: 12px 15px;
            width: 300px;
            max-width: 100%;
            border: 2px solid #ddd;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            padding: 12px 25px;
            background-color: #e50914;
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #b2070d;
        }
        main {
            padding: 30px 0;
            background-color: white;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid #ffd700;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h2 {
            font-size: 2rem;
            color: #e50914;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd700;
        }
        h3 {
            font-size: 1.6rem;
            color: #333;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            background-color: #fffacd;
            padding: 15px;
            border-left: 5px solid #ffd700;
            margin: 25px 0;
            font-style: italic;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }
        .link-in-content {
            color: #e50914;
            font-weight: bold;
            text-decoration: underline;
        }
        .link-in-content:hover {
            color: #b2070d;
        }
        .user-interaction {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 50px 0;
        }
        .comment-form, .rating-form {
            background-color: #f9f9f9;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #e50914;
            outline: none;
        }
        button[type="submit"] {
            background-color: #e50914;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.3s;
        }
        button[type="submit"]:hover {
            background-color: #b2070d;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffd700;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background-color: #1a1a1a;
            border-radius: 10px;
        }
        .web-link {
            background-color: #333;
            padding: 15px;
            border-radius: 5px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #444;
        }
        .web-link a {
            color: #ffd700;
            font-weight: 500;
            display: block;
            font-size: 1rem;
        }
        .web-link a:hover {
            color: #fff;
        }
        footer {
            background-color: #1a1a1a;
            color: #ccc;
            text-align: center;
            padding: 30px 0;
            margin-top: 40px;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 20px;
            color: #999;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .user-interaction {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .search-form input {
                width: 70%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .search-form input {
                width: 60%;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
