:root {
            --primary-color: #0066b2; 
            --secondary-color: #e41f27; 
            --accent-color: #f7e10d; 
            --dark-color: #1a1a1a;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 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;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            border-bottom-color: var(--accent-color);
            color: var(--accent-color);
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: white;
        }
        .breadcrumb {
            background-color: var(--light-color);
            padding: 1rem 0;
            border-bottom: 1px solid #dee2e6;
            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: var(--gray-color);
        }
        .breadcrumb a {
            color: var(--gray-color);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .article-content {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        .widget h3 {
            color: var(--primary-color);
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .search-btn:hover {
            background: #005299;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .form-control {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 14px;
            border-radius: var(--border-radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: #c11a22;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            margin: 10px 0;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--accent-color);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--primary-color);
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark-color);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--gray-color);
            margin: 1.5rem 0 0.8rem;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            margin-bottom: 30px;
            color: var(--gray-color);
            font-size: 0.95rem;
        }
        .featured-image {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--primary-color);
            line-height: 1.5;
            background: #f0f8ff;
            padding: 25px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--primary-color);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff9db;
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-color);
            margin: 25px 0;
            font-style: italic;
        }
        strong {
            color: var(--dark-color);
            font-weight: 700;
        }
        .related-links {
            background: #f8f9fa;
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
        }
        .related-links h4 {
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .related-links li {
            padding: 10px 15px;
            background: white;
            border-radius: 6px;
            transition: var(--transition);
        }
        .related-links li:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        }
        .related-links a {
            display: block;
            font-weight: 600;
        }
        .site-footer {
            background: var(--dark-color);
            color: #ccc;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px 0;
            border-bottom: 1px dashed #444;
            color: #aaa;
        }
        friend-link a:hover {
            color: var(--accent-color);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .main-nav ul {
                gap: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--dark-color);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                z-index: 999;
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid #333;
            }
            .main-nav a {
                display: block;
                padding: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mt-3 { margin-top: 1.5rem; }
        .py-2 { padding-top: 0.8rem; padding-bottom: 0.8rem; }
        .emoji { font-size: 1.2em; }
