:root {
            --primary-dark: #1a2b3c;
            --primary-accent: #c9a35e;
            --secondary-accent: #4a6fa5;
            --light-bg: #f5f7fa;
            --dark-text: #333333;
            --light-text: #666666;
            --highlight: #e8f4f8;
            --shadow: rgba(0, 0, 0, 0.08);
            --border: #e1e5eb;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--primary-accent);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2c3e50 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-accent);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: #fff;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            color: var(--primary-accent);
            border-bottom-color: var(--primary-accent);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            width: 100%;
            background-color: var(--primary-dark);
            padding: 1rem 0;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            text-align: center;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            color: white;
            font-size: 1.2rem;
            display: block;
            padding: 0.5rem;
        }
        .breadcrumb {
            background-color: var(--highlight);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--secondary-accent);
        }
        .breadcrumb span {
            color: var(--light-text);
            margin: 0 5px;
        }
        .search-container {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow);
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-input:focus {
            border-color: var(--secondary-accent);
        }
        .search-button {
            background: linear-gradient(to right, var(--secondary-accent), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 1.8rem;
            cursor: pointer;
            font-weight: 600;
            transition: opacity 0.3s;
        }
        .search-button:hover {
            opacity: 0.9;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid var(--primary-accent);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--light-text);
            font-style: italic;
            margin-top: 1rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px var(--shadow);
        }
        .article-content h2 {
            color: var(--primary-dark);
            border-left: 5px solid var(--primary-accent);
            padding-left: 1rem;
            margin: 2.5rem 0 1.5rem;
            font-size: 2rem;
        }
        .article-content h3 {
            color: var(--secondary-accent);
            margin: 2rem 0 1rem;
            font-size: 1.6rem;
        }
        .article-content h4 {
            color: var(--dark-text);
            margin: 1.5rem 0 0.8rem;
            font-size: 1.3rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content p.lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-dark);
            background-color: var(--highlight);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-accent);
        }
        .article-content strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        .article-content em {
            color: var(--light-text);
        }
        .img-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 3px solid white;
        }
        .img-caption {
            font-style: italic;
            color: var(--light-text);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdfcfb 0%, #f5f7fa 100%);
            border-left: 5px solid var(--primary-accent);
            padding: 1.8rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px var(--shadow);
        }
        .link-list {
            background-color: var(--highlight);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .link-list ul {
            list-style: none;
            columns: 2;
            column-gap: 2rem;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            break-inside: avoid;
        }
        @media (max-width: 768px) {
            .link-list ul {
                columns: 1;
            }
        }
        .link-list a {
            display: block;
            padding: 0.5rem 0.8rem;
            background: white;
            border-radius: 5px;
            border: 1px solid var(--border);
        }
        .link-list a:hover {
            background-color: var(--primary-accent);
            color: white;
            border-color: var(--primary-accent);
            text-decoration: none;
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px var(--shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: var(--primary-dark);
            border-bottom: 2px solid var(--primary-accent);
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 1rem;
        }
        .sidebar a {
            display: block;
            padding: 0.7rem 1rem;
            background-color: var(--light-bg);
            border-radius: 6px;
            color: var(--dark-text);
            font-weight: 500;
            transition: all 0.3s;
        }
        .sidebar a:hover {
            background-color: var(--secondary-accent);
            color: white;
            transform: translateX(5px);
            text-decoration: none;
        }
        .user-interaction {
            margin: 3rem 0;
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px var(--shadow);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .rating-widget, .comment-widget {
            padding: 1.5rem;
            border: 1px solid var(--border);
            border-radius: 10px;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: #ddd;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form button, .comment-form button {
            align-self: flex-start;
            padding: 0.8rem 2rem;
            background-color: var(--secondary-accent);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: var(--primary-dark);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        textarea:focus, input:focus {
            border-color: var(--secondary-accent);
            outline: none;
        }
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: var(--primary-accent);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 0.8rem;
        }
        .footer-section a {
            color: #ccc;
        }
        .footer-section a:hover {
            color: white;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 0.8rem;
            text-align: center;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h2 {
                font-size: 1.7rem;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 0 1rem;
            }
            .user-interaction {
                padding: 1.5rem;
            }
        }
