        * {
            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;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #0d6efd;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0a58ca;
        }
        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, #002244 0%, #0056b3 100%);
            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: 1.8rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            color: #ffd700;
        }
        .logo a:hover {
            color: #ffd700;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffd700;
        }
        .mobile-menu-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #002244;
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
            color: #ffd700;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #0d6efd;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .search-container {
            background-color: #e3f2fd;
            padding: 2rem 20px;
            text-align: center;
            margin: 1rem 0;
            border-radius: 8px;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: #0d6efd;
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #0a58ca;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #002244;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 4px solid #ffd700;
            padding-bottom: 0.5rem;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #0056b3;
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #0a58ca;
            margin: 2rem 0 1rem 0;
        }
        .article-content h4 {
            font-size: 1.2rem;
            color: #6c757d;
            margin: 1.5rem 0 0.8rem 0;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight {
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box {
            background-color: #d1ecf1;
            border-left: 4px solid #0dcaf0;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .article-image {
            margin: 2.5rem auto;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .article-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .article-image figcaption {
            font-style: italic;
            color: #6c757d;
            padding: 0.8rem;
            background-color: #f8f9fa;
        }
        .related-links {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .related-links li {
            background: white;
            padding: 0.8rem 1.2rem;
            border-radius: 6px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .related-links li:hover {
            transform: translateY(-3px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: #002244;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffd700;
        }
        .quick-facts ul {
            list-style: none;
        }
        .quick-facts li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #dee2e6;
            display: flex;
            justify-content: space-between;
        }
        .quick-facts li:last-child {
            border-bottom: none;
        }
        .key-dates ul {
            list-style: none;
        }
        .key-dates li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #dee2e6;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .key-dates i {
            color: #0d6efd;
        }
        .user-interaction {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            margin-top: 2rem;
        }
        .user-interaction h2 {
            color: #002244;
            margin-bottom: 1.5rem;
        }
        .rating-container, .comment-container {
            margin-bottom: 2.5rem;
        }
        .rating-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
        }
        .stars .star {
            transition: transform 0.2s;
        }
        .stars .star:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 150px;
        }
        .form-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .form-row input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
        }
        .submit-btn {
            background: #0d6efd;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .submit-btn:hover {
            background: #0a58ca;
        }
        .site-footer {
            background-color: #002244;
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        .footer-widget h4 {
            color: #ffd700;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-widget ul {
            list-style: none;
        }
        .footer-widget li {
            margin-bottom: 0.8rem;
        }
        .footer-widget a {
            color: #adb5bd;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-widget a:hover {
            color: #ffd700;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 0.5rem;
        }
        friend-link a {
            color: #ffd700;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #adb5bd;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.7rem;
            }
            .form-row {
                flex-direction: column;
            }
        }
