:root {
            --primary-color: #4f46e5;
            --secondary-color: #f59e0b;
            --accent-color: #10b981;
            --dark-color: #1f2937;
            --light-color: #f9fafb;
            --text-color: #374151;
            --border-radius: 12px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #ffffff;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-color), #3730a3);
            color: white;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: var(--secondary-color);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            transition: var(--transition);
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background-color: rgba(255, 255, 255, 0.15);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: var(--dark-color);
            padding: 2rem;
            transition: var(--transition);
            z-index: 1001;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        .close-nav {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 0.8rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .mobile-nav-links a:hover {
            background-color: var(--primary-color);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f3f4f6;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #6b7280;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-section {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        .article-title {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #6b7280;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #e5e7eb;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .article-image {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .article-image img:hover {
            transform: scale(1.03);
        }
        .article-image figcaption {
            padding: 1rem;
            background-color: #f8fafc;
            font-style: italic;
            color: #64748b;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary-color);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark-color);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(to right, #f0f9ff, #e0f2fe);
            border-left: 5px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            border-top: 4px solid var(--accent-color);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }
        .stat-label {
            color: var(--text-color);
            font-weight: 600;
        }
        .quote {
            font-size: 1.4rem;
            font-style: italic;
            color: var(--primary-color);
            text-align: center;
            margin: 2.5rem auto;
            padding: 2rem;
            max-width: 800px;
            background-color: #fefce8;
            border-radius: var(--border-radius);
            position: relative;
        }
        .quote::before,
        .quote::after {
            content: '"';
            font-size: 4rem;
            color: var(--secondary-color);
            position: absolute;
            opacity: 0.3;
        }
        .quote::before {
            top: 0;
            left: 20px;
        }
        .quote::after {
            bottom: -30px;
            right: 20px;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        .comparison-table th,
        .comparison-table td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9fafb;
        }
        .comparison-table tr:hover {
            background-color: #f0f9ff;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary-color), #6366f1);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(79, 70, 229, 0.4);
        }
        .btn-secondary {
            background: linear-gradient(to right, var(--secondary-color), #f97316);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            padding: 1.8rem;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #d1d5db;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--primary-color);
        }
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #3730a3;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #fbbf24;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #d1d5db;
            border-radius: var(--border-radius);
            min-height: 150px;
            font-family: inherit;
            resize: vertical;
            margin-bottom: 1rem;
            transition: var(--transition);
        }
        .comment-form textarea:focus {
            border-color: var(--primary-color);
            outline: none;
        }
        .web-links-section {
            background-color: #f8fafc;
            padding: 3rem 0;
            margin-top: 2rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        .footer-links h4 {
            color: var(--secondary-color);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .bold { font-weight: 700; }
        .emoji { font-size: 1.2em; }
        .hidden { display: none; }
        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 768px) {
            .article-title { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .article-section { padding: 1.8rem; }
            .main-content { padding: 1.5rem 0; }
            .stats-grid { grid-template-columns: 1fr; }
        }
