        * {
            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: #f9f9f9;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
            color: #1a365d;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: #0c4a6e;
            border-bottom: 4px solid #f59e0b;
            padding-bottom: 0.5rem;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #1e40af;
            margin-top: 2.5rem;
            padding-left: 0.75rem;
            border-left: 5px solid #10b981;
        }
        h3 {
            font-size: 1.8rem;
            color: #374151;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #555;
            font-weight: 500;
            background: #e0f2fe;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #3b82f6;
        }
        .highlight {
            background-color: #fef3c7;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1e40af;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .grid {
            display: grid;
            gap: 2rem;
        }
        .main-content {
            grid-column: 1 / span 3;
        }
        .sidebar {
            grid-column: 4;
        }
        @media (max-width: 992px) {
            .grid {
                grid-template-columns: 1fr;
            }
            .main-content, .sidebar {
                grid-column: 1;
            }
        }
        .site-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
            color: white;
            padding: 1rem 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;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #fbbf24;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 0.75rem;
            font-size: 2.5rem;
        }
        .logo-text {
            display: inline-block;
            transform: skew(-5deg);
        }
        .nav-desktop {
            display: flex;
            gap: 1.8rem;
        }
        @media (min-width: 993px) {
            .nav-mobile, .hamburger { display: none; }
        }
        .nav-desktop a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #f59e0b;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover {
            color: #fbbf24;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            display: none;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1e293b;
            width: 100%;
            padding: 1rem 0;
            margin-top: 1rem;
            border-radius: 8px;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #cbd5e1;
            padding: 0.8rem 1.5rem;
            border-bottom: 1px solid #334155;
        }
        .nav-mobile a:hover {
            background-color: #374151;
            color: #fbbf24;
        }
        @media (max-width: 992px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
        }
        .breadcrumb {
            background-color: #f1f5f9;
            padding: 1rem 1.5rem;
            border-radius: 6px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #475569;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            color: #94a3b8;
        }
        .search-box {
            background: #ffffff;
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin: 1.5rem 0;
            display: flex;
            max-width: 600px;
        }
        .search-input {
            flex-grow: 1;
            border: none;
            outline: none;
            font-size: 1rem;
            padding: 0.8rem;
        }
        .search-button {
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0.8rem 1.8rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: #1d4ed8;
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        .featured-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #64748b;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .pull-quote {
            border-left: 6px solid #f59e0b;
            padding: 2rem;
            margin: 2.5rem 0;
            background: #fffbeb;
            font-size: 1.4rem;
            font-weight: 700;
            color: #78350f;
            border-radius: 0 12px 12px 0;
        }
        .stats-box {
            background: linear-gradient(to right, #dbeafe, #e0f2fe);
            border: 2px dashed #3b82f6;
            padding: 1.8rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .stats-title {
            font-size: 1.5rem;
            color: #1e40af;
            margin-bottom: 1rem;
        }
        .interactive-section {
            background: #f8fafc;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #e2e8f0;
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .section-title i {
            color: #10b981;
            font-size: 1.8rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating-stars i {
            color: #d1d5db;
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #fbbf24;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #475569;
        }
        input, textarea, select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }
        .btn {
            background: #10b981;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
        }
        .btn:hover {
            background: #059669;
        }
        .btn-secondary {
            background: #3b82f6;
        }
        .btn-secondary:hover {
            background: #2563eb;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        .widget-title {
            font-size: 1.5rem;
            color: #1e3a8a;
            border-bottom: 3px solid #fbbf24;
            padding-bottom: 0.7rem;
            margin-bottom: 1.5rem;
        }
        .match-list {
            list-style: none;
        }
        .match-item {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .match-item:hover {
            background-color: #f0f9ff;
        }
        .live-badge {
            background: #ef4444;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #bae6fd;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .web-link a {
            color: #0369a1;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            color: #fbbf24;
            font-weight: 900;
            margin-bottom: 1rem;
        }
        .footer-heading {
            color: #f8fafc;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3b82f6;
        }
        .footer-links a {
            color: #94a3b8;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #60a5fa;
            padding-left: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .hidden { display: none; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .article-content { padding: 1.5rem; }
            .search-box { flex-direction: column; border-radius: 12px; }
            .search-input, .search-button { width: 100%; border-radius: 8px; }
        }
