        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        a {
            text-decoration: none;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1a73e8;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a237e, #4a148c);
            color: white;
            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 a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #ffcc00;
        }
        .logo i {
            font-size: 2.5rem;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .search-form {
            display: flex;
            margin-left: 20px;
        }
        .search-form input {
            padding: 10px 15px;
            border: none;
            border-radius: 25px 0 0 25px;
            width: 220px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #ffcc00;
            border: none;
            padding: 10px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            color: #1a237e;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #ffdb4d;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e8eaf6;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: #666;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
        }
        article h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            color: #666;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        article h2 {
            font-size: 2rem;
            color: #4a148c;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 3px solid #ffcc00;
        }
        article h3 {
            font-size: 1.5rem;
            color: #6a1b9a;
            margin: 25px 0 12px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        article b {
            color: #1a237e;
            font-weight: 700;
        }
        .highlight-box {
            background-color: #f3e5f5;
            border-left: 5px solid #9c27b0;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 3px solid #e1bee7;
        }
        aside {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
            align-self: start;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #1a237e;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffcc00;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form textarea, .rating-form select, .comment-form input {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            width: 100%;
        }
        .comment-form button, .rating-form button {
            background-color: #1a237e;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background-color: #4a148c;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #ffcc00;
        }
        .footer-links {
            background-color: #e8eaf6;
            padding: 30px 0;
            margin-top: 40px;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .web-link {
            background: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .web-link a {
            font-weight: 600;
            color: #4a148c;
            display: block;
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .social-icons {
            display: flex;
            gap: 20px;
            font-size: 1.8rem;
        }
        .social-icons a {
            color: white;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: #ffcc00;
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .web-links-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a237e;
                position: absolute;
                top: 80px;
                left: 0;
                padding: 20px;
                z-index: 1000;
                border-top: 2px solid #ffcc00;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-form {
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
            }
            .search-form input {
                width: 100%;
            }
            .web-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            article h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 576px) {
            .web-links-grid {
                grid-template-columns: 1fr;
            }
            article {
                padding: 20px;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .separator {
            text-align: center;
            margin: 30px 0;
            font-size: 1.5rem;
            color: #9c27b0;
        }
