        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a237e; 
            --secondary-color: #c2185b; 
            --accent-color: #ffab00; 
            --text-dark: #212121;
            --text-light: #757575;
            --background-light: #f5f5f5;
            --background-white: #ffffff;
            --border-color: #e0e0e0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--background-white);
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', Georgia, serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: var(--secondary-color);
        }
        h4 {
            font-size: 1.4rem;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        header {
            background-color: var(--primary-color);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo:hover {
            text-decoration: none;
            color: var(--accent-color);
        }
        .logo i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: white;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: var(--accent-color);
            text-decoration: none;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        .nav-desktop a:hover:after {
            width: 100%;
        }
        .nav-mobile {
            display: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            transition: var(--transition);
        }
        .mobile-menu {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            height: calc(100vh - 70px);
            background-color: var(--primary-color);
            z-index: 999;
            display: flex;
            flex-direction: column;
            padding: 30px;
            transform: translateX(100%);
            transition: transform 0.4s ease;
        }
        .mobile-menu.active {
            transform: translateX(0);
        }
        .mobile-menu a {
            color: white;
            font-size: 1.3rem;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-menu a:hover {
            color: var(--accent-color);
        }
        .breadcrumb {
            background-color: var(--background-light);
            padding: 12px 0;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--secondary-color);
        }
        .breadcrumb i {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        .article-content {
            background-color: var(--background-white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .feature-img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        .feature-img:hover {
            transform: scale(1.005);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            border-left: 5px solid var(--secondary-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box h3 {
            color: var(--primary-color);
            margin-top: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--background-white);
            padding: 25px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        .search-form {
            display: flex;
            margin-top: 15px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--secondary-color);
        }
        .rating-system {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 5px;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: var(--accent-color);
        }
        .rating-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            margin-top: 10px;
        }
        .rating-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 15px;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: var(--primary-color);
        }
        .comments-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid var(--border-color);
        }
        .comment-form {
            background-color: var(--background-light);
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        .comment-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: var(--secondary-color);
        }
        .comment {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .comment-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--background-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-color);
            flex-shrink: 0;
        }
        .comment-content h4 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-date {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background-color: var(--background-light);
            padding: 15px;
            border-radius: 4px;
            border-left: 3px solid var(--primary-color);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: #e8eaf6;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 10px;
        }
        .footer-column ul li a {
            color: #ddd;
        }
        .footer-column ul li a:hover {
            color: var(--accent-color);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .bold {
            font-weight: 700;
            color: var(--primary-color);
        }
        .italic {
            font-style: italic;
        }
        .emoji {
            font-size: 1.2rem;
            margin: 0 5px;
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .header-container {
                padding: 15px;
            }
            .article-content {
                padding: 20px;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .comment {
                flex-direction: column;
                gap: 10px;
            }
            .comment-avatar {
                width: 50px;
                height: 50px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.9rem;
            }
            .sidebar-widget {
                padding: 20px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        @media print {
            .sidebar, .comment-form, .rating-form, .search-form, .mobile-menu, .hamburger, footer {
                display: none !important;
            }
            .main-content {
                display: block;
            }
            body {
                color: black;
                background: white;
                font-size: 12pt;
            }
            a {
                color: black;
                text-decoration: underline;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
        }
