:root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #1abc9c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --gray-color: #95a5a6;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        * {
            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.8;
            color: var(--text-color);
            background-color: #f9f9f9;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-color);
            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 a {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .desktop-nav ul {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            background-color: var(--accent-color);
            color: white;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--primary-color);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-radius: var(--border-radius);
            border-left: 4px solid transparent;
        }
        .mobile-nav a:hover,
        .mobile-nav a.active {
            border-left-color: var(--accent-color);
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: var(--light-color);
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--gray-color);
        }
        .breadcrumb a:hover {
            color: var(--secondary-color);
        }
        main {
            padding: 3rem 0;
            background-color: white;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            max-width: 100%;
        }
        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--secondary-color);
        }
        h3 {
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-color);
            background-color: #f1f8ff;
            padding: 1.5rem;
            border-left: 5px solid var(--accent-color);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin-bottom: 2.5rem;
        }
        emoji {
            font-style: normal;
            margin-right: 5px;
        }
        .highlight {
            background-color: #fffacd;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        b, strong {
            color: var(--primary-color);
        }
        .article-image {
            margin: 2.5rem auto;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            max-width: 800px;
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background-color: var(--light-color);
            color: var(--dark-color);
        }
        ul.custom-list,
        ol.custom-list {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        ul.custom-list li,
        ol.custom-list li {
            margin-bottom: 0.8rem;
            position: relative;
        }
        ul.custom-list li::before {
            content: '♟️';
            position: absolute;
            left: -2rem;
        }
        aside {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: var(--border-radius);
            height: fit-content;
            box-shadow: var(--shadow);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--gray-color);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--primary-color);
        }
        .comment-form,
        .rating-form {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-top: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--gray-color);
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.2);
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: var(--gray-color);
            cursor: pointer;
        }
        .stars i:hover,
        .stars i.active {
            color: #f39c12;
        }
        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .footer-links {
            background-color: var(--light-color);
            padding: 3rem 0;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .web-links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: white;
            padding: 1.2rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            background-color: var(--accent-color);
            color: white;
        }
        .web-link a {
            font-weight: 600;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
            color: #bdc3c7;
            border-top: 1px solid #34495e;
            padding-top: 1.5rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .header-container { padding: 0 1rem; }
            .content-wrapper { gap: 2rem; }
            .lead { font-size: 1.1rem; padding: 1rem; }
        }
