        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #1a73e8;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0d47a1;
        }
        ul {
            list-style: none;
        }
        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(135deg, #1a73e8, #0d47a1);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(26, 115, 232, 0.25);
        }
        header {
            background: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #1a73e8, #34a853);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .search-box {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
            position: relative;
        }
        .search-box form {
            display: flex;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 20px;
            border: 2px solid #ddd;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-box input:focus {
            border-color: #1a73e8;
        }
        .search-box button {
            background: #1a73e8;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .user-actions a {
            margin-left: 15px;
            font-size: 1.2rem;
            color: #555;
        }
        .user-actions a:hover {
            color: #1a73e8;
        }
        nav {
            background: #2d3748;
            padding: 0;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .main-nav {
            display: flex;
        }
        .main-nav li {
            position: relative;
        }
        .main-nav a {
            color: #e2e8f0;
            padding: 18px 20px;
            display: block;
            font-weight: 500;
            transition: all 0.3s;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: #4a5568;
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 10px;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #edf2f7;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #4a5568;
        }
        .breadcrumb a:hover {
            color: #1a73e8;
        }
        .breadcrumb span {
            color: #718096;
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 3px solid #e2e8f0;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #1a2937;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: #718096;
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        .article-content h2 {
            font-size: 2rem;
            color: #2d3748;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #4a5568;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .article-content strong {
            color: #1a2937;
            font-weight: 700;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            height: auto;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #718096;
            padding: 10px;
            background: #f8f9fa;
            font-size: 0.95rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
            border-left: 5px solid #1a73e8;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .match-schedule {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid #e2e8f0;
        }
        .match-schedule h3 {
            margin-top: 0;
        }
        .match-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border-bottom: 1px dashed #ddd;
        }
        .match-row:last-child {
            border-bottom: none;
        }
        .match-teams {
            font-weight: 600;
        }
        .match-time {
            background: #1a73e8;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #2d3748;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        .todays-fixtures ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .todays-fixtures li {
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #34a853;
            transition: transform 0.3s;
        }
        .todays-fixtures li:hover {
            transform: translateX(5px);
            background: #edf7ed;
        }
        .user-interaction {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #e2e8f0;
        }
        .rating-section, .comment-section {
            margin-bottom: 40px;
        }
        .rating-section h3, .comment-section h3 {
            margin-bottom: 20px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            min-height: 150px;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form button {
            background: #34a853;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #2d9248;
        }
        .footer-links {
            background: #2d3748;
            padding: 50px 0 30px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background: #4a5568;
            padding: 20px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: #5a6578;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 500;
            display: block;
            text-align: center;
        }
        footer {
            background: #1a2937;
            color: #cbd5e0;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .footer-logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
        }
        .footer-nav a {
            color: #cbd5e0;
            margin-left: 25px;
        }
        .footer-nav a:hover {
            color: white;
        }
        .copyright {
            padding-top: 20px;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .web-links-container {
                grid-template-columns: repeat(3, 1fr);
            }
            .article-header h1 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                margin: 20px 0 0;
                max-width: 100%;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background: #2d3748;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .main-nav.active {
                display: flex;
            }
            .main-nav li {
                width: 100%;
            }
            .main-nav a {
                padding: 15px 20px;
                border-bottom: 1px solid #4a5568;
            }
            .nav-container {
                flex-wrap: wrap;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
            .web-links-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
            .footer-nav a {
                margin: 0 10px;
            }
        }
        @media (max-width: 576px) {
            .article-header h1 {
                font-size: 2rem;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
            .match-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
