/* css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0f19;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

header {
    margin-bottom: 40px;
    text-align: center;
}

header h2 {
    font-size: 1.5rem !important;
    color: #00ffcc;
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.6);
}

/* Container Responsivo com Grid */
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1200px;
}

/* Estilo dos Cards */
.card {
    background: linear-gradient(145deg, #141b2d, #1f2943);
    border: 2px solid #2a3b63;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #00ffcc;
}

.card h2 {
    font-size: 1.6rem;
    color: #a0aec0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Valores grandes estilo painel eletrônico */
.valor {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ff007f;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
    background-color: #05070c;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #141b2d;
    display: inline-block;
    width: 100%;
}

/*Bola da Vez */
#card-bola_da_vez .valor {
    color: #ffaa00;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
    font-size: 2.2rem; /* Alinhado com o tamanho dos outros cards */
}

/* Responsividade para telas bem pequenas (celulares antigos) */
@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }
    .valor {
        font-size: 1.8rem;
    }
}