        * {
            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.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #0056b3;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6600;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #0056b3, #003d82);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background: linear-gradient(135deg, #ff6600, #cc5200);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        header {
            background: linear-gradient(135deg, #1a237e, #283593);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: #ffeb3b;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #e3f2fd;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        nav a:hover, nav a.active {
            color: #ffeb3b;
            border-bottom-color: #ffeb3b;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 10px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #1a237e;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        h1 {
            color: #1a237e;
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            display: flex;
            gap: 15px;
        }
        .meta-item i {
            margin-right: 5px;
        }
        h2, h3, h4 {
            color: #283593;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffeb3b;
        }
        h3 {
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #1a237e;
            background-color: #e8eaf6;
            padding: 20px;
            border-left: 5px solid #ff6600;
            border-radius: 5px;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid #ff9800;
            margin: 25px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        .stat-card {
            background: #f5f5f5;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border-top: 4px solid #0056b3;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a237e;
            display: block;
        }
        .stat-label {
            color: #666;
            font-size: 0.9rem;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        .img-container img {
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            margin: 0 auto;
        }
        .img-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        blockquote {
            border-left: 5px solid #4caf50;
            background-color: #e8f5e9;
            padding: 20px;
            margin: 25px 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }
        blockquote footer {
            margin-top: 10px;
            font-weight: bold;
            color: #2e7d32;
        }
        ul, ol {
            margin-left: 20px;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .keyword-link {
            font-weight: bold;
            color: #d32f2f;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            color: #1a237e;
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffeb3b;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: #0056b3;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ff6600;
        }
        .latest-results {
            list-style: none;
        }
        .latest-results li {
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            justify-content: space-between;
        }
        .latest-results li:last-child {
            border-bottom: none;
        }
        .result-date {
            color: #666;
            font-size: 0.9rem;
        }
        .result-numbers {
            font-weight: bold;
            color: #1a237e;
            letter-spacing: 2px;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ddd;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .fas {
            margin: 0 3px;
            transition: color 0.2s;
        }
        .stars .fas:hover,
        .stars .fas.active {
            color: #ff9800;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 5px;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        .footer-links-section {
            background: #e8eaf6;
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-link {
            display: inline-block;
            margin: 10px 20px 10px 0;
            padding: 10px 20px;
            background: white;
            border-radius: 30px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.12);
        }
        .web-link a {
            color: #333;
            font-weight: 500;
        }
        footer {
            background: #1a237e;
            color: #e3f2fd;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            color: #ffeb3b;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 10px;
        }
        .footer-col a {
            color: #bbdefb;
        }
        .footer-col a:hover {
            color: #ffeb3b;
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: background 0.3s, transform 0.3s;
        }
        .social-icons a:hover {
            background: #ff6600;
            transform: scale(1.1);
        }
        .copyright {
            padding-top: 20px;
            border-top: 1px solid #3949ab;
            font-size: 0.9rem;
            color: #90a4ae;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .header-top {
                flex-wrap: wrap;
            }
            nav ul {
                gap: 15px;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 400px;
                margin-top: 15px;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav a {
                display: block;
                padding: 15px;
            }
            h1 {
                font-size: 2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                gap: 5px;
            }
        }
