body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f5f5f5;
        }
        header {
            background-color: #1a1a2e;
            color: white;
            padding: 15px 0;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            letter-spacing: 2px;
        }
        nav {
            background-color: #16213e;
            overflow: hidden;
        }
        nav a {
            float: left;
            display: block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            font-size: 17px;
        }
        nav a:hover {
            background-color: #ddd;
            color: black;
        }
        .mobile-nav-toggle {
            display: none;
            cursor: pointer;
            position: absolute;
            right: 10px;
            top: 15px;
            font-size: 24px;
        }
        @media screen and (max-width: 600px) {
            nav a:not(:first-child) {display: none;}
            nav a.mobile-nav-toggle {
                float: right;
                display: block;
            }
            nav.responsive {position: relative;}
            nav.responsive .mobile-nav-toggle {
                position: absolute;
                right: 10px;
                top: 15px;
            }
            nav.responsive a {
                float: none;
                display: block;
                text-align: left;
            }
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
        h1, h2, h3 {
            color: #16213e;
            margin-top: 30px;
        }
        h1 {
            font-size: 2.5em;
            border-bottom: 2px solid #e94560;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2em;
            border-left: 5px solid #e94560;
            padding-left: 10px;
        }
        h3 {
            font-size: 1.5em;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #e94560;
            color: white;
            padding: 12px 24px;
            margin: 15px 5px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #c43a4f;
        }
        .image-container {
            text-align: center;
            margin: 20px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        footer {
            background-color: #1a1a2e;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
        }
        .tags, .game-types {
            margin: 20px 0;
        }
        .tags a, .game-types a {
            color: #e94560;
            text-decoration: none;
            margin: 0 5px;
        }
        .tags a:hover, .game-types a:hover {
            text-decoration: underline;
        }
