        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a1f3a; 
            --primary-accent: #c00a2d; 
            --secondary-accent: #f0b400; 
            --light-bg: #f5f7fa;
            --dark-text: #222;
            --medium-text: #555;
            --light-text: #777;
            --border-color: #e1e5eb;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        body {
            color: var(--dark-text);
            background-color: var(--light-bg);
            line-height: 1.7;
            font-size: 1.1rem;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--primary-dark);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo span {
            color: var(--primary-accent);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav li {
            margin-left: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:hover {
            text-decoration: none;
            color: var(--secondary-accent);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary-accent);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: #e9edf2;
            padding: 0.8rem 0;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--medium-text);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .breadcrumb .separator {
            margin: 0 0.5rem;
            color: var(--light-text);
        }
        .search-box {
            background: white;
            border-radius: 50px;
            padding: 0.3rem 0.3rem 0.3rem 1.2rem;
            display: flex;
            align-items: center;
            box-shadow: var(--shadow);
            max-width: 300px;
        }
        .search-box input {
            border: none;
            outline: none;
            flex-grow: 1;
            font-size: 1rem;
            padding: 0.5rem 0;
        }
        .search-box button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: var(--primary-dark);
        }
        main {
            flex-grow: 1;
            padding: 2rem 0;
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 2rem;
        }
        .article-header h1 {
            font-size: 3rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--medium-text);
            font-size: 1rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
            color: var(--primary-accent);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary-accent);
        }
        .article-content h3 {
            font-size: 1.7rem;
            color: var(--primary-dark);
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            font-size: 1.4rem;
            color: var(--medium-text);
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-content .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-dark);
            line-height: 1.5;
            margin-bottom: 2rem;
        }
        .article-content .highlight-box {
            background-color: #f0f8ff;
            border-left: 5px solid var(--primary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .article-content .highlight-box h4 {
            margin-top: 0;
            color: var(--primary-accent);
        }
        .article-content ul, .article-content ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .article-content li {
            margin-bottom: 0.7rem;
        }
        .article-content strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 8px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            font-style: italic;
            color: var(--light-text);
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }
        .content-link {
            font-weight: 600;
            background-color: rgba(192, 10, 45, 0.05);
            padding: 0.1rem 0.3rem;
            border-radius: 3px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-widget input, .rating-widget select, .rating-widget textarea,
        .comment-widget input, .comment-widget textarea {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-size: 1rem;
            width: 100%;
        }
        .rating-widget button, .comment-widget button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget button:hover, .comment-widget button:hover {
            background-color: var(--primary-dark);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--secondary-accent);
        }
        .related-links ul {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dotted var(--border-color);
        }
        .related-links li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .related-links a {
            display: flex;
            align-items: center;
            color: var(--dark-text);
        }
        .related-links a:hover {
            color: var(--primary-accent);
        }
        .related-links i {
            margin-right: 0.8rem;
            color: var(--primary-accent);
            font-size: 0.9rem;
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-accent);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 1rem;
        }
        friend-link a {
            color: #fff;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 300px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
            }
            .main-nav li {
                margin: 0;
                text-align: center;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
        }
