body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        header {
            background-color: #FF4500;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        .content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #FF4500;
            border-bottom: 2px solid #FF4500;
            padding-bottom: 10px;
        }
        h2 {
            color: #E63900;
            margin-top: 30px;
        }
        h3 {
            color: #CC3300;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #FF4500;
            color: white;
            padding: 12px 25px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #E63900;
        }
        .game-stats {
            background-color: #FFF8E1;
            padding: 20px;
            border-radius: 5px;
            margin: 20px 0;
        }
        .player-quote {
            font-style: italic;
            border-left: 3px solid #FF4500;
            padding-left: 15px;
            margin: 15px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
            margin: 20px 0;
        }
        footer {
            margin-top: 40px;
            padding: 20px;
            background-color: #333;
            color: white;
            border-radius: 10px;
            text-align: center;
        }
        .tag-cloud {
            margin: 20px 0;
        }
        .tag-cloud a {
            color: #FF4500;
            margin: 0 5px;
            text-decoration: none;
        }
