* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a5276;
            --secondary-color: #e74c3c;
            --accent-color: #f39c12;
            --text-color: #2c3e50;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        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: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }
        .logo span {
            color: var(--secondary-color);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            padding: 10px 15px;
            border: 2px solid #ddd;
            border-radius: 25px;
            width: 300px;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .search-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: var(--secondary-color);
        }
        nav {
            background: var(--primary-color);
        }
        .nav-menu {
            display: flex;
            list-style: none;
            justify-content: center;
        }
        .nav-menu li {
            position: relative;
        }
        .nav-menu a {
            color: white;
            text-decoration: none;
            padding: 1rem 1.5rem;
            display: block;
            transition: var(--transition);
        }
        .nav-menu a:hover {
            background: var(--secondary-color);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--primary-color);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: var(--white);
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #666;
        }
        main {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        .article-content {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .article-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent-color);
        }
        .article-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.9rem;
        }
        .article-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .section-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .subsection-title {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin: 1.5rem 0 1rem 0;
        }
        p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight {
            background: var(--accent-color);
            color: white;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        .tip-box {
            background: #e8f4fd;
            border-left: 4px solid var(--primary-color);
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 5px 5px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .rating-system {
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .rating-stars {
            font-size: 2rem;
            color: #ddd;
            margin: 1rem 0;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-color);
        }
        .comments-section {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .comment-form {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-input, .form-textarea {
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 5px;
            transition: var(--transition);
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }
        .submit-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }
        .web-link {
            background: var(--white);
            padding: 1rem;
            border-radius: 5px;
            box-shadow: var(--shadow);
        }
        .web-link a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .web-link a:hover {
            color: var(--secondary-color);
        }
        footer {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--accent-color);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-color);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .search-input {
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary-color);
            }
            .nav-menu.active {
                display: flex;
            }
            main {
                grid-template-columns: 1fr;
            }
            .article-title {
                font-size: 2rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .article-content {
                padding: 1rem;
            }
            .article-title {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
