* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            padding-bottom: 50px;
        }
        .header {
            background-color: #1a1a2e;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            color: #e94560;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
        }
        .nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin: 0 15px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
        }
        .nav-links a:hover {
            color: #e94560;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #1a1a2e;
            font-size: 32px;
            margin: 20px 0;
            border-bottom: 2px solid #e94560;
            padding-bottom: 10px;
        }
        h2 {
            color: #16213e;
            font-size: 26px;
            margin: 30px 0 15px;
        }
        h3 {
            color: #1a1a2e;
            font-size: 22px;
            margin: 25px 0 10px;
        }
        p {
            margin: 15px 0;
            font-size: 18px;
        }
        .highlight {
            font-weight: bold;
            color: #e94560;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #e94560;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 5px;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #c73650;
        }
        .image-container {
            margin: 25px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .tag {
            display: inline-block;
            background-color: #e2e8f0;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            color: #1a1a2e;
            font-size: 14px;
        }
        .tag:hover {
            background-color: #cbd5e1;
        }
        .game-type {
            display: inline-block;
            margin: 10px 15px 10px 0;
            text-decoration: none;
            color: #16213e;
            font-weight: bold;
        }
        .game-type:hover {
            color: #e94560;
        }
        .footer {
            background-color: #1a1a2e;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-links {
            margin: 20px 0;
        }
        .copyright {
            margin-top: 30px;
            font-size: 14px;
            color: #b8b8b8;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: #1a1a2e;
                padding: 20px;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
        }
