* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #dc2626;
            --secondary-color: #1e293b;
            --accent-color: #f59e0b;
            --text-color: #334155;
            --light-bg: #f8fafc;
            --dark-bg: #0f172a;
            --border-radius: 8px;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg), var(--secondary-color));
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo:hover {
            color: var(--accent-color);
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        nav {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }
        .breadcrumb {
            background-color: var(--light-bg);
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            gap: 0.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: var(--text-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        .content-section {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        h1 {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin: 2rem 0 1rem 0;
            padding-left: 1rem;
            border-left: 4px solid var(--primary-color);
        }
        h3 {
            color: var(--secondary-color);
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem 0;
        }
        p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 1rem;
            border-left: 4px solid var(--accent-color);
            margin: 1rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .search-section {
            background: linear-gradient(135deg, var(--primary-color), #ef4444);
            color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            margin-bottom: 2rem;
        }
        .search-form {
            display: flex;
            max-width: 500px;
            margin: 1rem auto 0;
        }
        .search-input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-button {
            background: var(--dark-bg);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: var(--secondary-color);
        }
        .rating-section {
            text-align: center;
            padding: 1.5rem;
            background: var(--light-bg);
            border-radius: var(--border-radius);
            margin-bottom: 2rem;
        }
        .stars {
            font-size: 2rem;
            color: var(--accent-color);
            margin: 1rem 0;
        }
        .star {
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .comment-section {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .comment-form {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input, .form-textarea {
            padding: 0.75rem;
            border: 1px solid #cbd5e1;
            border-radius: var(--border-radius);
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s ease;
        }
        .submit-button:hover {
            background: #b91c1c;
            transform: translateY(-2px);
        }
        sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--light-bg);
            padding-bottom: 0.5rem;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 1rem 0;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .web-links {
            background: var(--secondary-color);
            padding: 2rem 1rem;
            margin-top: 3rem;
        }
        .web-links-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: var(--dark-bg);
            padding: 1rem;
            border-radius: var(--border-radius);
            text-align: center;
        }
        .web-link a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .web-link a:hover {
            color: var(--accent-color);
        }
        footer {
            background: var(--dark-bg);
            color: white;
            text-align: center;
            padding: 2rem 1rem;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--dark-bg);
                flex-direction: column;
                padding: 1rem;
            }
            nav.active {
                display: flex;
            }
            main {
                grid-template-columns: 1fr;
            }
            sidebar {
                position: static;
            }
            .header-container {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-section {
            animation: fadeIn 0.6s ease-out;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: bold; }
        .text-accent { color: var(--accent-color); }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
