        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #0a58ca;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #084298;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 2rem;
            margin: 1rem 0;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b3a5a 100%);
            color: white;
            padding: 1.2rem 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;
            color: #fff;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: #ffd700;
            margin-right: 10px;
            font-size: 2.5rem;
        }
        .logo a:hover {
            color: #ffd700;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            background-color: #1b3a5a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e0e0e0;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #2a4a6a;
        }
        .mobile-nav a:hover {
            background-color: #2a4a6a;
            color: white;
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #0a58ca;
        }
        .breadcrumb span {
            color: #495057;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
            flex: 1;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #0d1b2a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 0.7rem;
        }
        h2 {
            font-size: 2rem;
            color: #1b3a5a;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e9ecef;
        }
        h3 {
            font-size: 1.6rem;
            color: #2a4a6a;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #3a5a7a;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #495057;
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-left: 5px solid #0a58ca;
            border-radius: 8px;
            margin-bottom: 2.5rem;
        }
        strong {
            color: #0d1b2a;
            font-weight: 700;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .widget {
            background-color: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.4rem;
            color: #1b3a5a;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem;
            border: 2px solid #ced4da;
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #0a58ca;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #084298;
        }
        .featured-img {
            width: 100%;
            border-radius: 10px;
            margin: 2.5rem 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border: 1px solid #dee2e6;
        }
        .interaction-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #e9ecef;
        }
        .rating-form, .comment-form {
            background-color: #f8f9fa;
            padding: 1.8rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #495057;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #ced4da;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #0a58ca;
            outline: none;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd700;
            margin: 0.5rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .btn-submit {
            background-color: #198754;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .btn-submit:hover {
            background-color: #157347;
        }
        .related-links {
            background-color: #e7f1ff;
            padding: 1.8rem;
            border-radius: 10px;
            margin: 2.5rem 0;
        }
        .related-links h3 {
            color: #0a58ca;
            margin-top: 0;
        }
        .related-links ul {
            list-style-type: none;
            padding-left: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .related-links li {
            background-color: white;
            padding: 1rem;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .related-links li:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        .related-links li a {
            color: #1b3a5a;
            font-weight: 600;
            display: block;
        }
        .related-links li a:hover {
            color: #0a58ca;
        }
        .site-footer {
            background-color: #0d1b2a;
            color: #adb5bd;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-section h4 {
            color: #ffd700;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #adb5bd;
        }
        .footer-links a:hover {
            color: #ffd700;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background-color: #1b3a5a;
            border-radius: 8px;
            margin: 1rem 0;
            color: white;
            font-weight: 600;
        }
        friend-link a {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #2a4a6a;
            font-size: 0.9rem;
            color: #6c757d;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #6c757d;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #dee2e6;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
