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: #FF5722;
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-nav-toggle {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
                width: 100%;
                background-color: rgba(255, 87, 34, 0.9);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 10px 0;
            }
            nav.active {
                display: flex;
            }
            .mobile-nav-toggle {
                display: block;
            }
        }
        h1 {
            color: #FF5722;
            margin-bottom: 20px;
            border-bottom: 2px solid #FF5722;
            padding-bottom: 10px;
        }
        h2 {
            color: #E64A19;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h3 {
            color: #D84315;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        .button {
            display: inline-block;
            background-color: #FF5722;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 0;
            transition: background-color 0.3s;
        }
        .button:hover {
            background-color: #E64A19;
        }
        .download-section, .login-section {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin: 20px 0;
            text-align: center;
        }
        .game-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
        }
        .table-container {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #FF5722;
            color: white;
        }
        tr:hover {
            background-color: #f9f9f9;
        }
        .tags {
            margin: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            background-color: #E0E0E0;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.9em;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 30px;
        }
        .game-types {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
            justify-content: center;
        }
        .game-type {
            background-color: #666;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
        }
        .game-type:hover {
            background-color: #555;
        }
