        * {
            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: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .header {
            background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-desktop a:hover {
            background: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            gap: 1rem;
            background: #1e3c72;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-mobile a:hover {
            background: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background: #e3f2fd;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #1a73e8;
        }
        .breadcrumb span {
            color: #666;
        }
        .search-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: #ff9800;
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: #f57c00;
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        h1, h2, h3, h4 {
            color: #1a237e;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
        }
        h2 {
            font-size: 2rem;
            margin-top: 2.5rem;
            color: #283593;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: #3949ab;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: #e3f2fd;
            padding: 1.5rem;
            border-left: 4px solid #1a73e8;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .keyword-link {
            font-weight: bold;
            color: #d32f2f;
        }
        .keyword-link:hover {
            text-decoration: underline;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            max-width: 800px;
            margin: 0 auto;
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .comment-form, .rating-form {
            margin-top: 2rem;
            padding: 1.5rem;
            background: #f9f9f9;
            border-radius: 8px;
            border: 1px solid #ddd;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #1a73e8;
            outline: none;
        }
        button[type="submit"] {
            background: #4caf50;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        button[type="submit"]:hover {
            background: #388e3c;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: #ffd700;
        }
        .footer-links {
            background: #1e3c72;
            color: white;
            padding: 3rem 2rem;
            margin-top: 3rem;
        }
        .footer-links-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 6px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffd700;
            font-weight: 600;
            display: block;
            padding: 0.5rem 0;
        }
        .web-link a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding: 1.5rem;
            background: #0d1b3e;
            color: #aaa;
            font-size: 0.9rem;
        }
        .copyright a {
            color: #ffd700;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .main-container {
                padding: 0 1rem;
            }
            .article-content, .sidebar {
                padding: 1.5rem;
            }
        }
