body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f5f5ff;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: #4a148c;
            color: white;
            padding: 20px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            gap: 20px;
        }
        nav a {
            color: white;
            text-decoration: none;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #4a148c;
            border-bottom: 3px solid #ff9800;
            padding-bottom: 10px;
        }
        h2 {
            color: #7b1fa2;
            margin-top: 30px;
        }
        h3 {
            color: #9c27b0;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #ff9800;
            color: white;
            padding: 12px 24px;
            margin: 10px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #f57c00;
        }
        .game-stats {
            background-color: #e8eaf6;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .player-quote {
            font-style: italic;
            border-left: 4px solid #ff9800;
            padding-left: 15px;
            margin: 15px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
        }
        footer {
            background-color: #4a148c;
            color: white;
            padding: 20px;
            text-align: center;
            margin-top: 30px;
        }
        .tags {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #7b1fa2;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 15px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #4a148c;
                padding: 10px;
            }
            nav ul.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
        }
