* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

    body {
    background-color: #0a0e14; /* Un tono oscuro neutro */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
}

}

.selector-container {
    display: flex;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    width: 320px;
}

.image-wrapper {
    background: #161b22;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    overflow: hidden;
}

.image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Efectos específicos por marca */
.mad-card:hover .image-wrapper {
    border-color: #f3a333; /* Color del sol en el logo de MAD */
    box-shadow: 0 0 20px rgba(243, 163, 51, 0.3);
}

.dog-card:hover .image-wrapper {
    border-color: #d11f26; /* Rojo del logo MAD Dog */
    box-shadow: 0 0 20px rgba(209, 31, 38, 0.3);
}

.card:hover {
    transform: translateY(-10px);
}

.btn-label {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
