* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        .logo:hover {
            color: #ffd700;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            padding: 8px 12px;
            border: none;
            border-radius: 4px;
            width: 250px;
        }
        .search-btn {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #e55a2b;
        }
        .main-nav {
            background: #2a5298;
            padding: 1rem 0;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 2rem;
        }
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-menu a:hover {
            color: #ffd700;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #6c757d;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #495057;
        }
        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            padding: 2rem 0;
        }
        .article-content {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .article-header {
            margin-bottom: 2rem;
        }
        .article-title {
            font-size: 2.5rem;
            color: #1e3c72;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .content-section {
            margin-bottom: 2rem;
        }
        .section-title {
            font-size: 1.8rem;
            color: #2a5298;
            margin: 1.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff6b35;
        }
        .subsection-title {
            font-size: 1.4rem;
            color: #1e3c72;
            margin: 1rem 0 0.5rem 0;
        }
        .content-text {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight {
            background: #fff3cd;
            padding: 1rem;
            border-left: 4px solid #ffc107;
            margin: 1rem 0;
            border-radius: 4px;
        }
        .tip-box {
            background: #d1ecf1;
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            border-left: 4px solid #17a2b8;
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .widget-title {
            font-size: 1.2rem;
            color: #1e3c72;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff6b35;
        }
        .comments-section {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-top: 2rem;
        }
        .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        .form-textarea {
            height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: #218838;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin: 0.5rem 0;
        }
        .star {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .footer-links {
            background: #343a40;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: #495057;
            padding: 1rem;
            border-radius: 4px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-2px);
            background: #5a6268;
        }
        .web-link a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        footer {
            background: #212529;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #adb5bd;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .search-input {
                width: 200px;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #2a5298;
                padding: 1rem;
            }
            .nav-menu.active {
                display: flex;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            .article-title {
                font-size: 2rem;
            }
            .featured-image {
                height: 250px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            .article-content, .sidebar {
                padding: 1rem;
            }
            .article-title {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .player-card {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 1rem;
            margin: 1rem 0;
            transition: box-shadow 0.3s;
        }
        .player-card:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .team-combination {
            background: #f8f9fa;
            border-left: 4px solid #28a745;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 4px;
        }
