:root {
            --primary-blue: #0033a0;
            --secondary-red: #d22630;
            --accent-gold: #ffd700;
            --light-gray: #f5f5f5;
            --dark-gray: #333333;
            --text-color: #222;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo i {
            color: var(--accent-gold);
        }
        .logo a:hover {
            color: var(--accent-gold);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.15);
            color: var(--accent-gold);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--primary-blue);
            flex-direction: column;
            padding: 2rem;
            gap: 1rem;
            display: none;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: var(--accent-gold);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: var(--light-gray);
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--dark-gray);
        }
        .breadcrumb a:hover {
            color: var(--secondary-red);
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            min-height: 80vh;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            font-size: 1.1rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-gray);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary-red);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--dark-gray);
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .inline-link {
            color: var(--secondary-red);
            font-weight: 600;
            border-bottom: 1px dotted var(--secondary-red);
        }
        .inline-link:hover {
            color: var(--primary-blue);
            border-bottom: 1px solid var(--primary-blue);
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.5rem;
            background-color: var(--light-gray);
            color: #666;
        }
        aside {
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: var(--border-radius);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            color: var(--primary-blue);
        }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ccc;
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--secondary-red);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: #b0202a;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
        }
        .quick-links a {
            display: block;
            padding: 0.8rem 1rem;
            background-color: white;
            border-radius: var(--border-radius);
            border-left: 3px solid var(--primary-blue);
        }
        .quick-links a:hover {
            background-color: #e9e9e9;
            border-left-color: var(--secondary-red);
            transform: translateX(5px);
        }
        .rating-widget, .comment-widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-top: 2rem;
            box-shadow: var(--shadow);
        }
        .rating-widget h3, .comment-widget h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-gold);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .rating-form input,
        .comment-form input,
        .comment-form textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            align-self: flex-start;
        }
        .btn:hover {
            background-color: #002244;
            transform: translateY(-2px);
        }
        .btn-red {
            background-color: var(--secondary-red);
        }
        .btn-red:hover {
            background-color: #b0202a;
        }
        footer {
            background-color: var(--dark-gray);
            color: #ddd;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        .footer-column h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
        }
        friend-link a {
            color: var(--accent-gold);
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #aaa;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 2px;
        }
        .bold {
            font-weight: 800;
            color: var(--primary-blue);
        }
        .text-center {
            text-align: center;
        }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
