* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #2563eb;
            --secondary-color: #dc2626;
            --accent-color: #f59e0b;
            --text-color: #1f2937;
            --light-bg: #f8fafc;
            --dark-bg: #1e293b;
            --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);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #334155 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-color);
            text-decoration: none;
        }
        .logo span {
            color: white;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-desktop a:hover {
            color: var(--accent-color);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 0.75rem 0;
            border-bottom: 1px solid #374151;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            background: var(--light-bg);
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .search-section {
            background: white;
            padding: 2rem 0;
            margin: 1rem 0;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid var(--primary-color);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #1d4ed8;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 968px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .article-header {
            margin-bottom: 2rem;
        }
        .article-title {
            font-size: 2.5rem;
            color: var(--dark-bg);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            color: #6b7280;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .featured-image {
            width: 100%;
            height: 400px;
            background: #e5e7eb;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .content-section {
            margin-bottom: 2rem;
        }
        .content-section h2 {
            color: var(--primary-color);
            margin: 1.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .content-section h3 {
            color: var(--dark-bg);
            margin: 1.25rem 0 0.75rem;
        }
        .content-section p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight {
            background: #fef3c7;
            padding: 1rem;
            border-left: 4px solid var(--accent-color);
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .tip-box {
            background: #dbeafe;
            padding: 1rem;
            border-radius: var(--border-radius);
            margin: 1rem 0;
            border-left: 4px solid var(--primary-color);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e5e7eb;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.25rem;
            margin: 1rem 0;
        }
        .star {
            color: #d1d5db;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--accent-color);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-input {
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: var(--border-radius);
        }
        .rating-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-button:hover {
            background: #1d4ed8;
        }
        .comments-section {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .comments-title {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            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 #d1d5db;
            border-radius: var(--border-radius);
            font-family: inherit;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            align-self: flex-start;
            transition: background 0.3s;
        }
        .submit-button:hover {
            background: #1d4ed8;
        }
        .comment {
            border: 1px solid #e5e7eb;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .comment-author {
            font-weight: bold;
            color: var(--dark-bg);
        }
        .comment-date {
            color: #6b7280;
            font-size: 0.9rem;
        }
        .comment-content {
            line-height: 1.6;
        }
        .footer-links {
            background: var(--light-bg);
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .web-link a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        footer {
            background: var(--dark-bg);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .copyright {
            color: #9ca3af;
            font-size: 0.9rem;
        }
        .text-bold {
            font-weight: bold;
        }
        .text-accent {
            color: var(--accent-color);
        }
        .text-primary {
            color: var(--primary-color);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.25rem;
        }
