        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #0066cc;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e63946;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style-position: inside;
            padding-left: 1em;
        }
        h1, h2, h3, h4 {
            font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
            color: #222;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            text-shadow: 3px 3px 0 #0033aa, 5px 5px 0 #222;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 0.5rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #0033aa;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #555;
            margin-bottom: 2rem;
        }
        strong {
            font-weight: 700;
            color: #0033aa;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #000428 0%, #004e92 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo a:hover {
            color: white;
        }
        .nav-desktop ul {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop li {
            list-style: none;
        }
        .nav-desktop a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background-color: #ffcc00;
            color: #0033aa;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-mobile {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: #004e92;
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.4s ease, opacity 0.4s ease;
                z-index: 999;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }
            .nav-mobile.active {
                transform: translateY(0);
                opacity: 1;
            }
            .nav-mobile ul {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
            }
            .nav-mobile li {
                list-style: none;
            }
            .nav-mobile a {
                color: white;
                font-size: 1.2rem;
                display: block;
                padding: 0.8rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
        }
        .breadcrumb {
            background-color: #e9ecef;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #0033aa;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.4rem;
            margin-top: 0;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-box button {
            background: #0033aa;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ffcc00;
            color: #0033aa;
        }
        .rating-widget p {
            margin-bottom: 0.5rem;
        }
        .stars {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffcc00;
        }
        .rating-form textarea,
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            margin-bottom: 1rem;
            font-family: inherit;
            font-size: 1rem;
        }
        .rating-form button,
        .comment-form button {
            background: #28a745;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #218838;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 12px;
            border: 5px solid #ffcc00;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-left: 5px solid #0033aa;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: #555;
            border-left: 4px solid #ffcc00;
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .content-links {
            margin: 2.5rem 0;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 8px;
        }
        .content-links h3 {
            margin-top: 0;
        }
        .content-links ul {
            columns: 2;
            column-gap: 2rem;
        }
        .content-links li {
            margin-bottom: 0.8rem;
            break-inside: avoid;
        }
        @media (max-width: 600px) {
            .content-links ul {
                columns: 1;
            }
        }
        .footer-links {
            background: #222;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .web-link-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .web-link-container {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            background: #333;
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: #444;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ffcc00;
            font-weight: 600;
            display: block;
            text-align: center;
        }
        .web-link a:hover {
            color: white;
        }
        .site-footer {
            background: #111;
            color: #aaa;
            padding: 3rem 0 2rem;
            text-align: center;
        }
        .footer-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding-bottom: 2rem;
            border-bottom: 1px solid #333;
        }
        @media (max-width: 768px) {
            .footer-info {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        .copyright {
            font-size: 0.95rem;
            color: #777;
            margin-top: 2rem;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 1.5rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3em;
        }
