        * {
            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: 100vw;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        ul {
            list-style: none;
        }
        button, input, textarea {
            font-family: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 0 5px;
            border-radius: 3px;
        }
        .section-spacing {
            padding: 60px 0;
        }
        :root {
            --primary-dark: #1a237e; 
            --primary: #283593;
            --primary-light: #5c6bc0;
            --accent: #ff9800; 
            --accent-light: #ffb74d;
            --text-dark: #212121;
            --text-light: #757575;
            --bg-light: #ffffff;
            --bg-alt: #f5f5f5;
            --border: #e0e0e0;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffeb3b, var(--accent-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo .subtitle {
            font-size: 0.8rem;
            color: #bbdefb;
            letter-spacing: 1px;
        }
        .main-nav ul {
            display: flex;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 1.1rem;
        }
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: var(--bg-alt);
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb .container {
            display: flex;
            gap: 10px;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb i {
            margin: 0 5px;
            color: var(--text-light);
        }
        .hero {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(40, 53, 147, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background-color: var(--bg-light);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .article-content h2 {
            color: var(--primary-dark);
            border-left: 6px solid var(--accent);
            padding-left: 15px;
            margin: 40px 0 20px;
            font-size: 2rem;
        }
        .article-content h3 {
            color: var(--primary);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content blockquote {
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            font-style: italic;
            color: var(--text-light);
            margin: 30px 0;
            background-color: var(--bg-alt);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .article-content img.featured {
            width: 100%;
            border-radius: 10px;
            margin: 30px auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .inline-link {
            color: var(--primary);
            font-weight: 600;
            border-bottom: 2px dotted var(--primary-light);
        }
        .inline-link:hover {
            color: var(--accent);
            border-bottom-style: solid;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: var(--bg-light);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: var(--primary-dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: var(--accent);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 14px;
            border: 2px solid var(--primary-light);
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: var(--primary-dark);
        }
        .rating-container {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .star {
            margin: 0 3px;
            transition: transform 0.2s;
        }
        .stars .star:hover {
            transform: scale(1.2);
        }
        #rating-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-dark);
        }
        .rate-btn {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            margin-top: 15px;
            width: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .rate-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(40, 53, 147, 0.3);
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            border: 2px solid var(--border);
            border-radius: 8px;
            resize: vertical;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 2px solid var(--border);
            border-radius: 6px;
        }
        .comment-form button {
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            color: white;
            border: none;
            padding: 14px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            width: 100%;
            transition: opacity 0.3s;
        }
        .comment-form button:hover {
            opacity: 0.9;
        }
        .footer-links {
            background-color: var(--primary-dark);
            color: white;
            padding: 50px 0 30px;
        }
        .web-link {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.08);
            margin: 8px;
            padding: 12px 24px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
            border-color: var(--accent);
        }
        .site-footer {
            background-color: #0d1533;
            color: #b0bec5;
            padding: 40px 0 20px;
            text-align: center;
        }
        .site-footer .container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .copyright {
            font-size: 0.9rem;
            border-top: 1px solid #2c387e;
            padding-top: 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-dark);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.5s ease;
            }
            .main-nav.active ul {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav li {
                width: 100%;
                text-align: center;
            }
            .main-nav a {
                display: block;
                padding: 18px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .article-content {
                padding: 25px;
            }
        }
