:root {
            --primary-color: #0d47a1;
            --secondary-color: #d32f2f;
            --accent-color: #ffc107;
            --light-color: #f5f5f5;
            --dark-color: #212121;
            --text-color: #333;
            --text-light: #666;
            --border-color: #ddd;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --max-width: 1200px;
            --border-radius: 8px;
        }
        * {
            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.6;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: -1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent-color);
        }
        .logo span {
            color: var(--secondary-color);
        }
        nav {
            padding: 15px 0;
        }
        .nav-desktop {
            display: flex;
            justify-content: center;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: var(--border-radius);
        }
        .nav-desktop a:hover {
            background-color: var(--light-color);
            color: var(--primary-color);
        }
        .nav-desktop a.active {
            background-color: var(--primary-color);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--primary-color);
            cursor: pointer;
            padding: 10px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: var(--light-color);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--accent-color);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .featured-image {
            margin: 40px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background-color: var(--light-color);
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .content-section {
            margin-bottom: 50px;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--dark-color);
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 193, 7, 0.2);
            padding: 20px;
            border-left: 4px solid var(--accent-color);
            margin: 25px 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: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background-color: var(--light-color);
            padding: 20px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        .interactive-section {
            background-color: #f8f9fa;
            padding: 40px;
            border-radius: var(--border-radius);
            margin: 50px 0;
            box-shadow: var(--shadow);
        }
        .search-box, .comment-form, .rating-form {
            max-width: 600px;
            margin: 0 auto 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
        }
        button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .rating-stars i {
            color: #ddd;
            cursor: pointer;
            font-size: 1.8rem;
            transition: var(--transition);
        }
        .rating-stars i:hover, .rating-stars i.active {
            color: var(--accent-color);
        }
        .longtail-links {
            background-color: var(--light-color);
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px;
            padding: 10px 20px;
            background-color: white;
            border-radius: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        .copyright {
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            .nav-desktop { gap: 15px; }
            .interactive-section { padding: 30px 20px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: var(--shadow);
                padding: 20px;
            }
            .nav-desktop.active {
                display: flex;
            }
            .logo { font-size: 1.8rem; }
            h1 { font-size: 2rem; }
            .article-meta { flex-direction: column; gap: 10px; }
            .stats-grid { grid-template-columns: 1fr; }
            .breadcrumb ol { font-size: 0.85rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            .logo { font-size: 1.5rem; }
            button { width: 100%; justify-content: center; }
            .web-link { margin: 8px 10px; padding: 8px 16px; }
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-primary { color: var(--primary-color); }
        .text-secondary { color: var(--secondary-color); }
        .bg-light { background-color: var(--light-color); }
        .mb-30 { margin-bottom: 30px; }
        .mt-30 { margin-top: 30px; }
        .p-20 { padding: 20px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
