body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff9e6;
        }
        header {
            background-color: #ff6b00;
            color: white;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        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;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        h1 {
            color: #ff6b00;
            border-bottom: 2px solid #ff6b00;
            padding-bottom: 10px;
        }
    h2 {
        color: #e65100;
        margin-top: 30px;
    }
    h3 {
        color: #bf360c;
        margin-top: 25px;
    }
    .download-btn, .login-btn {
        display: inline-block;
        background-color: #ff6b00;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        margin: 10px 0;
        transition: background-color 0.3s;
    }
    .download-btn:hover, .login-btn:hover {
        background-color: #e65100;
    }
    .image-container {
        text-align: center;
        margin: 20px 0;
    }
    img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }
    .table-container {
        overflow-x: auto;
        margin: 20px 0;
    }
    table {
        width: 100%;
        border-collapse: collapse;
        background-color: white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    th, td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }
    th {
        background-color: #ff6b00;
        color: white;
    }
    tr:hover {
        background-color: #fff5e6;
    }
    footer {
        margin-top: 40px;
        padding: 20px;
        background-color: #333;
        color: white;
        border-radius: 5px;
    }
    .tags {
        margin: 20px 0;
    }
    .tag {
        display: inline-block;
        background-color: #ff6b00;
        color: white;
        padding: 5px 10px;
        border-radius: 15px;
        margin-right: 5px;
        margin-bottom: 5px;
        text-decoration: none;
        font-size: 14px;
    }
    .game-types {
        margin: 20px 0;
    }
    .game-type {
        display: inline-block;
        background-color: #e65100;
        color: white;
        padding: 5px 10px;
        border-radius: 15px;
        margin-right: 5px;
        margin-bottom: 5px;
        text-decoration: none;
        font-size: 14px;
    }
    @media (max-width: 768px) {
        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
            margin-top: 10px;
        }
        .nav-links.active {
            display: flex;
        }
        .mobile-menu-btn {
            display: block;
        }
        body {
            padding: 10px;
        }
        h1 {
            font-size: 24px;
        }
        h2 {
            font-size: 20px;
        }
    }
