* {
            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;
        }
        .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);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .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: 10px 15px;
            border: none;
            border-radius: 25px;
            width: 300px;
            font-size: 1rem;
        }
        .search-btn {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: #e55a2b;
        }
        .nav {
            background: #2a5298;
            margin-top: 1rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-item {
            margin: 0 15px;
        }
        .nav-link {
            color: white;
            text-decoration: none;
            padding: 15px 10px;
            display: block;
            transition: color 0.3s;
            font-weight: 500;
        }
        .nav-link:hover {
            color: #ffd700;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 15px 0;
            margin-bottom: 2rem;
        }
        .breadcrumb-list {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb-item {
            margin-right: 10px;
        }
        .breadcrumb-item:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #6c757d;
        }
        .breadcrumb-link {
            color: #495057;
            text-decoration: none;
        }
        .breadcrumb-link:hover {
            color: #1e3c72;
        }
        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .article {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .article-title {
            color: #1e3c72;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        .article-meta {
            color: #6c757d;
            margin-bottom: 2rem;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .featured-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .section {
            margin-bottom: 2.5rem;
        }
        .section-title {
            color: #2a5298;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff6b35;
        }
        .subsection-title {
            color: #1e3c72;
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem 0;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: #fff3cd;
            padding: 15px;
            border-left: 4px solid #ffc107;
            margin: 1.5rem 0;
            border-radius: 5px;
        }
        .tip-box {
            background: #e7f3ff;
            padding: 20px;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 5px solid #1e3c72;
        }
        .player-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #dee2e6;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .widget-title {
            color: #1e3c72;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff6b35;
        }
        .rating-system {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        .rating-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-btn:hover {
            background: #218838;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-label {
            margin-bottom: 5px;
            font-weight: 500;
        }
        .form-input,
        .form-textarea {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: #1e3c72;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1rem;
        }
        .submit-btn:hover {
            background: #2a5298;
        }
        .web-links {
            background: #343a40;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: #495057;
            padding: 15px;
            border-radius: 5px;
            text-align: center;
        }
        .web-link a {
            color: white;
            text-decoration: none;
        }
        .web-link a:hover {
            color: #ffd700;
        }
        .footer {
            background: #212529;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .footer-link {
            color: #adb5bd;
            text-decoration: none;
        }
        .footer-link:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .search-input {
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                display: none;
            }
            .nav-list.active {
                display: flex;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            .article-title {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .article {
                padding: 1.5rem;
            }
            .article-title {
                font-size: 1.5rem;
            }
            .player-stats {
                grid-template-columns: 1fr;
            }
        }
        .nav-link,
        .breadcrumb-link,
        .footer-link {
            transition: all 0.3s ease;
        }
        .stat-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .widget {
            transition: transform 0.3s ease;
        }
        .widget:hover {
            transform: translateY(-3px);
        }
        @media print {
            .header, .sidebar, .web-links, .footer {
                display: none;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            .article {
                box-shadow: none;
                padding: 0;
            }
        }
