        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            font-size: 1.05rem;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #2c5282;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #1a365d;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
            color: white;
            padding: 1.2rem 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: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #90cdf4;
        }
        .logo i {
            color: #fbbf24;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: #fbbf24;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: #e2e8f0;
            padding: 0.8rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: #718096;
        }
        .search-bar {
            background-color: #edf2f7;
            padding: 1.5rem 0;
            border-bottom: 1px solid #cbd5e0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.05rem;
            outline: none;
        }
        .search-button {
            background-color: #3182ce;
            color: white;
            border: none;
            padding: 0 1.8rem;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #2c5282;
        }
        main {
            flex: 1;
            padding: 2.5rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
        }
        .article-header {
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 1.5rem;
            margin-bottom: 2rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a365d;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: #718096;
            font-size: 0.95rem;
        }
        .meta-info i {
            margin-right: 6px;
            color: #3182ce;
        }
        .article-content {
            font-size: 1.08rem;
            color: #2d3748;
        }
        .article-content > * {
            margin-bottom: 1.8rem;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #2c5282;
            margin-top: 2.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #cbd5e0;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #4a5568;
            margin-top: 2rem;
        }
        .article-content h4 {
            font-size: 1.3rem;
            color: #718096;
            margin-top: 1.8rem;
        }
        .article-content p {
            text-align: justify;
        }
        .highlight-box {
            background: linear-gradient(to right, #ebf8ff, #f0fff4);
            border-left: 5px solid #38a169;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box strong {
            color: #2d3748;
            font-size: 1.1rem;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .image-caption {
            font-style: italic;
            color: #718096;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background-color: #f7fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }
        .stat-card h4 {
            color: #3182ce;
            margin-bottom: 0.8rem;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: #2d3748;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
        }
        .sidebar-widget h3 {
            color: #2c5282;
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #e2e8f0;
            font-size: 1.4rem;
        }
        .live-score {
            background: linear-gradient(135deg, #1a365d, #2c5282);
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
        }
        .live-score h3 {
            color: white;
            border-bottom-color: rgba(255,255,255,0.3);
        }
        .score-display {
            font-size: 3.5rem;
            font-weight: 800;
            margin: 1rem 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
        }
        .team {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .team-logo {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        .quarter {
            font-size: 1.2rem;
            color: #fbbf24;
            margin-top: 0.5rem;
        }
        .rating-widget, .comment-widget {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #e2e8f0;
            justify-content: center;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i.active, .stars i:hover {
            color: #fbbf24;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 0.9rem;
            border: 1px solid #cbd5e0;
            border-radius: 6px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .rating-form input:focus, .comment-form input:focus, .comment-form textarea:focus {
            border-color: #3182ce;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: #38a169;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #2f855a;
        }
        footer {
            background-color: #1a202c;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #cbd5e0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a:hover {
            color: #fbbf24;
        }
        friend-link {
            display: block;
            background-color: #2d3748;
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1rem;
        }
        friend-link h4 {
            color: #fbbf24;
            margin-bottom: 1rem;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
        }
        friend-link li {
            background-color: #4a5568;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        friend-link li:hover {
            background-color: #718096;
        }
        friend-link a {
            color: white;
            white-space: nowrap;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                order: 3;
                margin-top: 1rem;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                width: 100%;
            }
            nav a {
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .content-grid {
                gap: 1.5rem;
            }
            article, .sidebar-widget {
                padding: 1.5rem;
            }
            .score-display {
                font-size: 2.5rem;
                flex-direction: column;
                gap: 0.5rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.8rem;
            }
        }
