        body {
            font-family: Arial, sans-serif;
            text-align: center;
            background-color: #f4f4f4;
        }

        body {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: auto;
        }
        .modelo {
            background: #fff;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .modelo img {
            width: 100%;
            border-radius: 10px;
        }
        .modelo button {
            margin-top: 10px;
            padding: 10px 15px;
            border: none;
            background: #007BFF;
            color: white;
            cursor: pointer;
            border-radius: 5px;
        }
        .modelo button:hover {
            background: #0056b3;
        }

        .modelo img {
            pointer-events: none;
            user-drag: none;
            -webkit-user-drag: none;
        }

        .ip-location {
            font-size: 14px;
            color: #333;
            background: #eef3f7;
            padding: 8px 12px;
            border-radius: 5px;
            border: 1px solid #ccd1d6;
            display: inline-block;
            margin-top: 8px;
            font-weight: bold;
            opacity: 0.8;
        }

        footer{
            margin-top: 20px; padding: 15px; background: #333; color: white; text-align: center;
        }