        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        header {
            background: linear-gradient(135deg, #1a237e, #283593);
            color: white;
            padding: 1rem 0;
            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;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            color: #ffeb3b;
            text-shadow: 2px 2px 0 #ff5722;
        }
        .logo a:hover { color: #fff; text-shadow: 2px 2px 0 #1a237e; }
        .desktop-nav ul {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffeb3b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffeb3b;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #283593;
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active { display: block; }
        .mobile-nav ul { flex-direction: column; gap: 1rem; }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e8eaf6;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb a { color: #3949ab; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #666; }
        main { padding: 40px 0; }
        article h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #ff5722;
            padding-left: 20px;
        }
        article h2 {
            font-size: 2rem;
            color: #283593;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px dashed #c5cae9;
        }
        article h3 {
            font-size: 1.5rem;
            color: #3949ab;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: #d32f2f;
            font-weight: 700;
        }
        article emoji { font-size: 1.2em; margin-right: 5px; }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            padding: 12px;
            background-color: #e3f2fd;
            font-style: italic;
            color: #555;
            text-align: center;
        }
        .highlight-box {
            background: linear-gradient(to right, #e3f2fd, #f3e5f5);
            border-left: 5px solid #7b1fa2;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .stat-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            border-top: 4px solid #4caf50;
        }
        .stat-card h4 { color: #388e3c; margin-bottom: 10px; }
        aside {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget { margin-bottom: 35px; }
        .widget h3 {
            color: #1a237e;
            padding-bottom: 10px;
            margin-bottom: 20px;
            border-bottom: 2px solid #ff9800;
            font-size: 1.4rem;
        }
        .search-form { display: flex; }
        .search-form input {
            flex: 1;
            padding: 14px;
            border: 2px solid #c5cae9;
            border-right: none;
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #3949ab;
            color: white;
            border: none;
            padding: 0 22px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .search-form button:hover { background-color: #303f9f; }
        .rating-widget .stars {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
        }
        .rating-widget .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .star:hover,
        .rating-widget .star.active { color: #ffc107; }
        .rating-form textarea, .comment-form textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #c5cae9;
            border-radius: 6px;
            margin-top: 10px;
            resize: vertical;
            min-height: 100px;
        }
        .rating-form button, .comment-form button {
            background-color: #4caf50;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            margin-top: 15px;
            font-weight: 600;
            width: 100%;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover { background-color: #388e3c; }
        .footer-links {
            background-color: #1a237e;
            color: white;
            padding: 50px 0 30px;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #ffeb3b;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #bbdefb;
            font-weight: 500;
        }
        .web-link a:hover { color: #ffeb3b; text-decoration: underline; }
        footer {
            background-color: #0d122b;
            color: #b0bec5;
            text-align: center;
            padding: 30px 0;
            font-size: 0.95rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .copyright {
            border-top: 1px solid #283593;
            padding-top: 25px;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            article h1 { font-size: 2.2rem; }
            article h2 { font-size: 1.7rem; }
            .stats-grid { grid-template-columns: 1fr; }
            .footer-links .container { padding: 0 15px; }
            .web-link-container { grid-template-columns: 1fr; }
        }
