        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100%;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; }
        ul, ol { list-style-position: inside; }
        img { max-width: 100%; height: auto; display: block; }
        :root {
            --primary: #4f46e5;
            --secondary: #10b981;
            --accent: #f59e0b;
            --dark: #1f2937;
            --light: #f3f4f6;
            --text: #374151;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 12px;
            --transition: all 0.3s ease;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background: linear-gradient(120deg, #a5f3fc 0%, #a5f3fc 100%); padding: 0 4px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .site-header {
            background-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-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .logo span { color: var(--accent); }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a {
            font-weight: 600;
            color: var(--dark);
            padding: 8px 0;
            border-bottom: 3px solid transparent;
            transition: var(--transition);
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: var(--shadow);
            padding: 20px;
            transform: translateY(-150%);
            opacity: 0;
            transition: var(--transition);
            z-index: 999;
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-nav ul { display: flex; flex-direction: column; gap: 20px; }
        .mobile-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 15px 20px;
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb a { color: var(--primary); }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: var(--text); margin: 0 8px; }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
            color: white;
            padding: 60px 20px;
            border-radius: var(--radius);
            margin: 30px auto;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            padding: 18px 40px;
            border-radius: 50px;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
        }
        .cta-button:hover {
            background-color: #e69500;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.6);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px auto;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-body {
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-body h2 {
            color: var(--dark);
            font-size: 2.2rem;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary);
        }
        .article-body h3 {
            color: var(--primary);
            font-size: 1.7rem;
            margin: 30px 0 15px;
        }
        .article-body p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: var(--text);
            text-align: justify;
        }
        .article-body ul, .article-body ol {
            margin: 20px 0 20px 25px;
        }
        .article-body li { margin-bottom: 10px; }
        .feature-img {
            width: 100%;
            border-radius: var(--radius);
            margin: 30px 0;
            border: 5px solid var(--light);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            color: var(--dark);
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 14px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
        }
        button[type="submit"] {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        button[type="submit"]:hover { background-color: #4338ca; }
        .stars { display: flex; gap: 10px; }
        .star { font-size: 2rem; color: #ddd; cursor: pointer; transition: var(--transition); }
        .star:hover, .star.active { color: var(--accent); }
        .web-links-section {
            background: var(--light);
            padding: 40px 20px;
            margin: 50px 0 30px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1280px;
            margin: 0 auto;
        }
        .web-link {
            background: white;
            padding: 18px;
            border-radius: 10px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            background-color: #e0f2fe;
        }
        .web-link a {
            color: var(--primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover { text-decoration: underline; }
        .site-footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 20px 30px;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-col h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: var(--accent);
        }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a {
            color: #d1d5db;
            transition: var(--transition);
        }
        .footer-col a:hover { color: white; padding-left: 5px; }
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid #4b5563;
            color: #9ca3af;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .article-body { padding: 25px; }
            .article-body h2 { font-size: 1.9rem; }
            .article-body h3 { font-size: 1.5rem; }
            .header-container, .article-body, .widget { padding-left: 20px; padding-right: 20px; }
        }
