:root {
            --primary-color: #FF5733;
            --secondary-color: #FFC300;
            --accent-color: #33FF57;
            --text-color: #333333;
            --bg-color: #FFF9F0;
        }
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 0;
            position: relative;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            padding: 8px 15px;
            margin: 0 5px;
            border-radius: 20px;
            background-color: rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.4);
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        h1 {
            color: var(--primary-color);
            font-size: 2.2rem;
            margin-top: 30px;
            margin-bottom: 15px;
            text-align: center;
        }
        h2 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin-top: 25px;
            margin-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 5px;
        }
        h3 {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-top: 20px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 15px;
        }
        .highlight {
            background-color: rgba(255,87,51,0.1);
            padding: 15px;
            border-left: 4px solid var(--primary-color);
            margin: 20px 0;
        }
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            margin: 10px 5px;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            background-color: #E04E2B;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: var(--accent-color);
        }
        .download-btn:hover {
            background-color: #2BD84E;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            text-align: center;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin: 10px 0;
        }
        .player-reviews {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .review {
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        .review:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }
        .review-author {
            font-weight: bold;
            color: var(--primary-color);
        }
        .review-date {
            font-size: 0.9rem;
            color: #777;
        }
        .faq-section {
            margin: 30px 0;
        }
        .faq-item {
            margin-bottom: 20px;
        }
        .faq-question {
            font-weight: bold;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            display: none;
            padding-top: 10px;
            border-top: 1px solid #eee;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .faq-icon {
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 30px 0 10px;
            margin-top: 50px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 2rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            nav {
                flex-direction: column;
                align-items: center;
                display: none;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
