body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #fff4e6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: #ff6b35;
            color: white;
            padding: 15px 0;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 10px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-nav-toggle {
            display: none;
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #e63946;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 32px;
        }
        h2 {
            color: #457b9d;
            margin-top: 25px;
            margin-bottom: 10px;
            font-size: 26px;
        }
        h3 {
            color: #1d3557;
            margin-top: 20px;
            margin-bottom: 8px;
            font-size: 22px;
        }
        .download-btn {
            display: inline-block;
            background-color: #4caf50;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
        }
        .login-btn {
            display: inline-block;
            background-color: #2196f3;
            color: white;
            padding: 12px 25px;
            margin: 15px 10px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
        }
        img {
            max-width: 100%;
            height: auto;
            margin: 15px 0;
            border-radius: 8px;
        }
        .game-stats {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .player-quote {
            font-style: italic;
            border-left: 4px solid #e63946;
            padding-left: 15px;
            margin: 15px 0;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
        }
        .tag-cloud {
            margin: 20px 0;
        }
        .tag-cloud a {
            color: #457b9d;
            text-decoration: none;
            margin: 0 5px;
        }
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            nav.active {
                display: flex;
            }
            .container {
                padding: 10px;
            }
        }
