        * {
            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: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #007bff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0056b3;
            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: 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-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #00ccff;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #ff6600;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        nav a:hover {
            background: rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #007bff;
        }
        .breadcrumb span {
            color: #495057;
        }
        .search-form {
            margin: 2rem auto;
            max-width: 600px;
            display: flex;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: #007bff;
            color: white;
            border: none;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #0056b3;
        }
        main {
            padding: 2rem 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        article {
            padding: 0 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a1a2e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #00ccff;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #16213e;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        h3 {
            font-size: 1.5rem;
            color: #343a40;
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background: #fff3cd;
            padding: 1.5rem;
            border-left: 4px solid #ffc107;
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        .article-image {
            margin: 2.5rem auto;
            max-width: 800px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            color: #6c757d;
            padding: 0.5rem;
            background: #f8f9fa;
        }
        .interactive-section {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .rating-form div, .comment-form div {
            display: flex;
            flex-direction: column;
        }
        label {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ffc107;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        button[type="submit"] {
            background: #28a745;
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        button[type="submit"]:hover {
            background: #218838;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            padding: 3rem 0;
            background: #1a1a2e;
            color: white;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 5px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #00ccff;
            font-weight: 600;
        }
        footer {
            background: #0f0f1a;
            color: #adb5bd;
            text-align: center;
            padding: 2rem 0;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 1024px) {
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a1a2e;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 0 1rem;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .logo a {
                font-size: 1.8rem;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
                border-radius: 10px;
            }
            .search-form input, .search-form button {
                width: 100%;
                border-radius: 0;
            }
        }
