* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #ffffff;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), #2d4ba3);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(to right, var(--secondary), #e53e3e);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .section-title {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent), var(--secondary));
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .search-box {
            display: flex;
            max-width: 400px;
            width: 100%;
        }
        .search-box input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
        }
        nav {
            background-color: var(--dark);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            color: white;
            padding: 18px 22px;
            display: block;
            font-weight: 500;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.1);
            color: var(--accent);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f1f5f9;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
        }
        .hero-image {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px;
        }
        .article-body {
            padding: 40px;
        }
        .article-body h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 25px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .article-meta span i {
            margin-right: 8px;
            color: var(--accent);
        }
        .intro {
            font-size: 1.2rem;
            color: var(--dark);
            padding: 20px;
            background-color: #f0f9ff;
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
            border-radius: 0 10px 10px 0;
        }
        .content-section {
            margin-bottom: 50px;
        }
        .content-section h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #e2e8f0;
        }
        .content-section h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 25px 0 15px;
        }
        .content-section p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: #fff7ed;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 4px solid var(--accent);
        }
        .match-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: var(--shadow);
        }
        .match-table th, .match-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        .match-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        .match-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        .match-table tr:hover {
            background-color: #f0f9ff;
        }
        .inline-link {
            font-weight: 600;
            color: var(--secondary);
            border-bottom: 1px dotted var(--secondary);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .side-image {
            float: right;
            margin: 0 0 20px 30px;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 30px 0;
        }
        .tag {
            background-color: #e2e8f0;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--dark);
        }
        sidebar {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #e2e8f0;
        }
        .related-links a {
            display: block;
            color: var(--dark);
        }
        .related-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        .related-links i {
            color: var(--gray);
            margin-right: 10px;
            font-size: 0.8rem;
        }
        .subscribe-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #cbd5e1;
            border-radius: 5px;
        }
        .interactive-section {
            background-color: #f8fafc;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
        }
        .interactive-section h2 {
            text-align: center;
            color: var(--primary);
        }
        .rating-widget {
            text-align: center;
            margin: 30px 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: #cbd5e1;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: var(--accent);
        }
        .comment-form, .search-form, .rating-form {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e1;
            border-radius: 5px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
        }
        .form-row {
            display: flex;
            gap: 20px;
        }
        .form-row .form-group {
            flex: 1;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #cbd5e1;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #334155;
        }
        .friend-link a {
            color: var(--accent);
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            sidebar {
                position: static;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .section-title {
                font-size: 2rem;
            }
            .article-body h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--dark);
                transition: 0.5s;
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                margin-top: 15px;
                max-width: 100%;
            }
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            .side-image {
                float: none;
                margin: 20px auto;
                max-width: 100%;
            }
        }
        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .article-body {
                padding: 25px;
            }
            .hero-image {
                height: 250px;
            }
        }
