        .game-comic-links-wrapper {
            all: initial;
            display: block;
            box-sizing: border-box !important;
            width: 100% !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .game-categories {
            width: 100% !important;
            max-width: 1200px;
            margin: 0 auto !important;
            padding: 20px !important;
            box-sizing: border-box !important;
        }

        .game-category {
            margin-bottom: 25px !important;
            border: 2px solid #000 !important;
            border-radius: 4px !important;
            overflow: hidden !important;
            background-color: #f5f5f5 !important;
        }

        .game-category-header {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            padding: 15px 20px !important;
            background-color: #7184F0 !important;
            font-family: "Comic Sans MS", "Comic Neue", cursive !important;
            font-size: 18px !important;
            font-weight: bold !important;
            color: #fff !important;
            cursor: pointer !important;
            user-select: none !important;
            transition: background-color 0.2s ease !important;
        }

        .game-category-header:hover {
            background-color: #6073d9 !important;
        }

        .game-category-toggle {
            font-size: 20px !important;
            font-weight: bold !important;
            transition: transform 0.2s ease !important;
        }

        .game-category-links {
            display: none !important;
            flex-wrap: wrap !important;
            gap: 15px !important;
            justify-content: center !important;
            padding: 20px !important;
            box-sizing: border-box !important;
        }

        .game-category-links.active {
            display: flex !important;
        }

        .game-comic-link {
            all: initial;
            position: relative !important;
            display: inline-block !important;
            padding: 12px 20px !important;
            margin: 10px !important;
            background-color: #fff !important;
            border: 3px solid #000 !important;
            border-radius: 2px !important;
            box-shadow: 4px 4px 0 #000 !important;
            font-family: "Comic Sans MS", "Comic Neue", cursive !important;
            text-decoration: none !important;
            color: #000 !important;
            transition: all 0.2s ease !important;
            cursor: pointer !important;
            box-sizing: border-box !important;
            user-select: none !important;
            -webkit-user-select: none !important;
            -moz-user-select: none !important;
            -ms-user-select: none !important;
        }

        .game-comic-link:hover {
            transform: translate(-2px, -2px) !important;
            box-shadow: 6px 6px 0 #000 !important;
            background-color: #f8f8f8 !important;
        }

        .game-comic-link:active {
            transform: translate(1px, 1px) !important;
            box-shadow: 3px 3px 0 #000 !important;
        }

        .game-comic-link span {
            all: initial !important;
            font-family: "Comic Sans MS", "Comic Neue", cursive !important;
            color: #000 !important;
            font-size: 16px !important;
            line-height: 1.2 !important;
            user-select: none !important;
            -webkit-user-select: none !important;
            -moz-user-select: none !important;
            -ms-user-select: none !important;
            cursor: pointer !important;
        }