        * {
            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;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }
        .logo a:hover {
            color: #ffffff;
        }
        .search-form {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 30px;
            padding: 5px 15px;
            min-width: 250px;
        }
        .search-form input {
            border: none;
            outline: none;
            padding: 10px;
            width: 100%;
            border-radius: 30px;
        }
        .search-form button {
            background: #ffcc00;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            color: #1e3c72;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #e6b800;
        }
        nav {
            background: #2a5298;
            margin-top: 15px;
        }
        .nav-desktop {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 15px;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .nav-desktop a:hover {
            background: #ffcc00;
            color: #1e3c72;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        #menu-toggle {
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #2a5298;
            padding: 15px;
        }
        .nav-mobile a {
            color: white;
            padding: 10px;
            border-bottom: 1px solid #3a6bc8;
        }
        .nav-mobile a:hover {
            background: #ffcc00;
            color: #1e3c72;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #e9ecef;
            color: #555;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
            padding: 30px 0;
        }
        .article-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #1e3c72;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: #2a5298;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffcc00;
        }
        .article-content h3 {
            font-size: 1.8rem;
            color: #3a6bc8;
            margin: 20px 0 10px;
        }
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content b {
            color: #1e3c72;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .internal-links {
            background: #f1f8ff;
            padding: 20px;
            border-left: 5px solid #ffcc00;
            margin: 30px 0;
        }
        .internal-links a {
            color: #2a5298;
            text-decoration: underline;
            font-weight: 600;
        }
        .internal-links a:hover {
            color: #ffcc00;
        }
        .sidebar {
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .sidebar h3 {
            color: #1e3c72;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .comment-form, .rating-form {
            margin-bottom: 30px;
        }
        .comment-form textarea, .rating-form select, .rating-form input {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-form button, .rating-form button {
            background: #2a5298;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background: #1e3c72;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 10px 0;
        }
        .stars i {
            color: #ffcc00;
            cursor: pointer;
            font-size: 1.5rem;
        }
        .footer-links {
            background: #1e3c72;
            padding: 30px 0;
            color: white;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(255, 204, 0, 0.2);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 600;
        }
        footer {
            background: #0d1b3e;
            color: white;
            text-align: center;
            padding: 20px 0;
        }
        .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-top {
                flex-direction: column;
                gap: 15px;
            }
            .search-form {
                width: 100%;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            #menu-toggle:checked ~ .nav-mobile {
                display: flex;
            }
            .nav-mobile {
                display: none;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
            .web-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .web-links-grid {
                grid-template-columns: 1fr;
            }
            .article-content {
                padding: 20px;
            }
        }
        a, button {
            transition: all 0.3s ease;
        }
        .web-link:hover a {
            color: #ffffff;
        }
        .nav-desktop a:hover, .nav-mobile a:hover {
            transform: scale(1.05);
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
