/* Wild Bingo Plugin - Estilos PRO totalmente dinâmicos */

:root {
    --wild-bingo-primary: #2d89ef;
    --wild-bingo-font-color: #333333;
    --wild-bingo-header-color: #000000;
    --wild-bingo-button-bg: #2d89ef;
    --wild-bingo-button-text: #ffffff;
}

/* Formulário & Tómbola */
#wild-bingo-form,
#wild-bingo-tombola {
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
    font-family: "Segoe UI", sans-serif;
    color: var(--wild-bingo-font-color);
}

#wild-bingo-form h1,
#wild-bingo-form h2,
#wild-bingo-form h3,
#wild-bingo-tombola h1,
#wild-bingo-tombola h2,
#wild-bingo-tombola h3 {
    color: var(--wild-bingo-header-color);
}

#wild-bingo-form input[type="text"],
#wild-bingo-form input[type="email"],
#wild-bingo-form input[type="tel"] {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--wild-bingo-font-color);
    background: #fff;
}

#wild-bingo-form label {
    display: block;
    margin: 8px 0;
    font-size: 14px;
    color: var(--wild-bingo-font-color);
}

#wild-bingo-form button {
    background: var(--wild-bingo-button-bg);
    color: var(--wild-bingo-button-text);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}
#wild-bingo-form button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Tómbola visual */
.wild-bingo-wheel {
    width: 120px;
    height: 120px;
    border: 4px solid var(--wild-bingo-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 120px;
    font-size: 30px;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    color: var(--wild-bingo-primary);
}
.wild-bingo-wheel.spin {
    animation: bingo-spin 1s ease-in-out;
}

@keyframes bingo-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wild-bingo-result {
    margin-top: 15px;
    font-weight: bold;
    font-size: 16px;
    color: var(--wild-bingo-primary);
}
