body {
            font-family: 'Inter', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 100vh;
            margin: 0;
            background-color: #f0f2f5;
            color: #333;
            padding: 20px;
            box-sizing: border-box;
        }
        .container {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
            text-align: center;
            max-width: 800px;
            width: 95%;
            margin-bottom: 30px;
        }
        h1 {
            color: #d32f2f; /* Vermelho Pokémon */
            margin-bottom: 20px;
            font-size: 2.5em;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .model-info {
            background-color: #e0f7fa; /* Azul claro para informações */
            border: 1px solid #b2ebf2;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-size: 0.95em;
            color: #006064;
            text-align: left;
        }
        .model-info h2 {
            color: #00796b;
            margin-top: 0;
            font-size: 1.2em;
        }
        .pokemon-selector {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        .selector-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        select {
            padding: 10px 15px;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 1em;
            width: 200px;
            background-color: #f8f8f8;
            box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
        }
        button {
            background-color: #4CAF50; /* Verde */
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
        }
        button:hover {
            background-color: #45a049;
            transform: translateY(-2px);
        }
        button:active {
            transform: translateY(0);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        #result-container {
            margin-top: 30px;
            padding: 20px;
            border-radius: 10px;
            background-color: #e3f2fd; /* Azul claro */
            border: 1px solid #90caf9;
            font-size: 1.3em;
            font-weight: 600;
            color: #1976d2;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px;
        }
        #winner-sprite {
            width: 100px;
            height: 100px;
            object-fit: contain;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            margin-top: 10px;
        }
        .error-message {
            color: #d32f2f;
            font-weight: normal;
            font-size: 0.9em;
        }

        a{
            text-decoration: none;
            color: inherit;
        }