        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0c2461, #1e3799);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffdd59;
        }
        .nav-menu {
            display: flex;
            gap: 25px;
            list-style: none;
        }
        .nav-menu li a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-menu li a:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 12px 0;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #495057;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            padding: 30px 0;
        }
        .article-area {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
        }
        .article-area h1 {
            font-size: 2.8rem;
            color: #0c2461;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-meta {
            color: #6c757d;
            margin-bottom: 25px;
            font-style: italic;
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #1a73e8;
            margin-top: 2em;
            margin-bottom: 1em;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffdd59;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #333;
            margin-top: 1.8em;
            margin-bottom: 0.8em;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight-box {
            background-color: #fffde7;
            border-left: 5px solid #ffdd59;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .featured-image figcaption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 10px;
        }
        .sidebar {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
            align-self: start;
        }
        .sidebar h3 {
            color: #0c2461;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 30px;
        }
        .search-box input, .comment-form textarea, .comment-form input, .rating-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
        }
        .search-box button, .comment-form button, .rating-form button {
            background: #1a73e8;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
            width: 100%;
        }
        .search-box button:hover, .comment-form button:hover, .rating-form button:hover {
            background: #0d47a1;
        }
        .star-rating {
            display: flex;
            justify-content: space-around;
            margin-bottom: 15px;
            font-size: 1.8rem;
            color: #ffc107;
        }
        .star-rating i {
            cursor: pointer;
        }
        .site-footer {
            background: #0c2461;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ffdd59;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .friend-links {
            list-style: none;
        }
        .friend-links li {
            margin-bottom: 10px;
        }
        .friend-links a {
            color: #bdc3c7;
        }
        .friend-links a:hover {
            color: #ffdd59;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            margin-top: 30px;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .nav-menu {
                gap: 15px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e3799;
                position: absolute;
                top: 70px;
                left: 0;
                padding: 20px;
                gap: 15px;
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-area h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .article-area, .sidebar {
                padding: 20px;
            }
        }
        .nav-menu li a, .search-box button, .comment-form button, .rating-form button {
            transition: transform 0.2s ease, background 0.3s;
        }
        .nav-menu li a:active, .search-box button:active, .comment-form button:active, .rating-form button:active {
            transform: scale(0.98);
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .friend-links a {
            position: relative;
            padding-left: 15px;
        }
        .friend-links a::before {
            content: '🔗';
            position: absolute;
            left: 0;
        }
