* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a5276;
            --secondary-color: #e74c3c;
            --accent-color: #f39c12;
            --text-color: #2c3e50;
            --light-bg: #ecf0f1;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
        }
        header {
            background: linear-gradient(135deg, var(--primary-color), #2980b9);
            color: var(--white);
            padding: 1rem 0;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            color: var(--white);
        }
        .logo:hover {
            color: var(--accent-color);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-mobile {
            display: none;
        }
        @media (max-width: 768px) {
            .nav-mobile {
                display: block;
            }
        }
        .nav-link {
            color: var(--white);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-menu {
            display: none;
            background-color: var(--primary-color);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-nav {
            display: flex;
            flex-direction: column;
            padding: 1rem;
        }
        .breadcrumb {
            background-color: var(--white);
            padding: 1rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .breadcrumb-item {
            color: var(--text-color);
            text-decoration: none;
        }
        .breadcrumb-item:hover {
            color: var(--primary-color);
        }
        .breadcrumb-separator {
            color: #7f8c8d;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-form {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            text-align: center;
        }
        .search-input {
            width: 70%;
            padding: 0.8rem;
            border: 2px solid #bdc3c7;
            border-radius: 5px;
            font-size: 1rem;
            margin-right: 0.5rem;
        }
        @media (max-width: 768px) {
            .search-input {
                width: 100%;
                margin-bottom: 1rem;
            }
        }
        .search-btn {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: #154360;
        }
        .article-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent-color);
        }
        .article-title {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
        }
        .article-meta {
            color: #7f8c8d;
            font-size: 0.9rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .article-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .article-section {
            margin-bottom: 2rem;
        }
        .section-title {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .highlight {
            background-color: #fff9c4;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        .tip-box {
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            padding: 1.5rem;
            border-left: 4px solid var(--primary-color);
            margin: 1.5rem 0;
            border-radius: 5px;
        }
        .player-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: var(--light-bg);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .widget-title {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        .rating-system {
            text-align: center;
            padding: 1.5rem;
            background: var(--light-bg);
            border-radius: 10px;
            margin: 2rem 0;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: #bdc3c7;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: var(--accent-color);
        }
        .rating-btn {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 1rem;
            transition: background 0.3s ease;
        }
        .rating-btn:hover {
            background: #154360;
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment-form {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #bdc3c7;
            border-radius: 5px;
            font-size: 1rem;
            font-family: inherit;
        }
        .form-textarea {
            height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .submit-btn:hover {
            background: #154360;
        }
        .comment {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary-color);
        }
        .comment-date {
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        .footer-links {
            background: var(--white);
            padding: 2rem;
            margin-top: 3rem;
            border-radius: 10px 10px 0 0;
            box-shadow: var(--shadow);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .web-link {
            background: var(--light-bg);
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
        }
        .web-link a {
            color: inherit;
            text-decoration: none;
            display: block;
        }
        footer {
            background: var(--primary-color);
            color: var(--white);
            text-align: center;
            padding: 2rem 1rem;
            margin-top: 2rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        .text-center {
            text-align: center;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
