        * {
            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;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: #ffcc00;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .logo a:hover {
            color: #ffdd44;
        }
        .search-form {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
        }
        .search-form button {
            background: #ffcc00;
            color: #1e3c72;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ffdd44;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffcc00;
        }
        nav {
            margin-top: 1rem;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s, color 0.3s;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #ffcc00;
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: #ffcc00;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        article {
            padding: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 1rem;
            text-align: center;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #2a5298;
            margin: 2rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #ffcc00;
        }
        h3 {
            font-size: 1.5rem;
            color: #3a6bd1;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        .highlight {
            background: #fffacd;
            padding: 1.5rem;
            border-left: 4px solid #ffcc00;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.5rem;
        }
        .image-container {
            text-align: center;
            margin: 2rem 0;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border: 3px solid #2a5298;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: #e3f2fd;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #1e3c72;
            margin-bottom: 1rem;
        }
        .interaction-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
            padding: 2rem;
            background: #f1f8ff;
            border-radius: 10px;
        }
        .comment-form, .score-form {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #1e3c72;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        button[type="submit"] {
            background: #1e3c72;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.3s;
        }
        button[type="submit"]:hover {
            background: #2a5298;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .internal-links {
            background: #1e3c72;
            color: white;
            padding: 2rem;
            margin-top: 3rem;
        }
        .internal-links h3 {
            color: #ffcc00;
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 500;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #0d1b3e;
            color: white;
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
        }
        footer p {
            margin-bottom: 0.5rem;
            text-align: center;
        }
        footer a {
            color: #ffcc00;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                margin-top: 1rem;
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                margin-top: 1rem;
            }
            .nav-links {
                flex-direction: column;
                gap: 0.5rem;
            }
            .nav-links a {
                display: block;
                padding: 1rem;
                background: rgba(255, 255, 255, 0.1);
            }
            #menu-toggle:checked ~ nav {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            main {
                padding: 0 1rem;
            }
            article {
                padding: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .interaction-section {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .web-links {
                grid-template-columns: 1fr;
            }
        }
