:root {
            --primary: #2c5aa0;
            --primary-dark: #1e3a6e;
            --secondary: #e67e22;
            --accent: #27ae60;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --gray: #7f8c8d;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--light);
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--secondary);
        }
        .my-logo:hover {
            color: var(--primary-dark);
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        @media (max-width: 992px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        .nav-desktop a:hover::after,
        .nav-desktop a.active::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 992px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--light);
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-150%);
            opacity: 0;
            transition: var(--transition);
            z-index: 999;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
        }
        .nav-mobile a {
            display: block;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-weight: 600;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .main-content {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            max-width: 100%;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 25px;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--gray);
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--dark);
            font-weight: 500;
            margin-bottom: 30px;
            padding-left: 15px;
            border-left: 5px solid var(--secondary);
        }
        .highlight {
            background-color: #fff9e6;
            padding: 25px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--secondary);
            margin: 25px 0;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .inline-link {
            color: var(--primary);
            font-weight: 600;
            border-bottom: 2px dotted var(--primary);
        }
        .inline-link:hover {
            color: var(--secondary);
            border-bottom-style: solid;
        }
        .sidebar {
            background-color: var(--light);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: var(--primary);
        }
        .search-widget {
            margin-bottom: 30px;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .search-button:hover {
            background-color: var(--primary-dark);
        }
        .rating-widget {
            margin-bottom: 30px;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 10px 0 15px;
        }
        .star {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .rating-form input, .rating-form button {
            width: 100%;
            padding: 10px;
            margin-top: 10px;
            border-radius: var(--border-radius);
            border: 1px solid #ccc;
        }
        .rating-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
        }
        .rating-form button:hover {
            background-color: #219653;
        }
        .comments-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #eee;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: var(--border-radius);
            border: 1px solid #ccc;
            margin-bottom: 15px;
            font-family: inherit;
            min-height: 150px;
        }
        .comment-form button {
            background-color: var(--primary);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
        }
        .comment-form button:hover {
            background-color: var(--primary-dark);
        }
        .site-footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-col {
            flex: 1;
            min-width: 250px;
        }
        .footer-col h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        friend-link a {
            color: #ccc;
            padding: 5px 0;
            display: inline-block;
        }
        friend-link a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 700; color: var(--dark); }
