@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.85)), url('img/metlife2.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #F0F2F5;
    margin: 0;
    padding: 0;
}

h1, h2 {
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
}

form, table {
    background: rgba(27, 38, 59, 0.55); /* Azul escuro com 85% de opacidade */
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    max-width: 800px;
    width: 90%;
    backdrop-filter: blur(5px);
}


form label {
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.nome-participante {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.nome-participante input[type="text"] {
    width: 90%;
    max-width: 400px;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #F0F2F5;
    color: #000;
    text-align: center;
    font-weight: 600;
}

.jogo {
    margin-bottom: 20px;
    padding: 15px;
    background: #415A77;
    border-radius: 8px;
    text-align: center;
}

.jogo-header {
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.jogo-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
}

.time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #324A69;
    padding: 8px 12px;
    border-radius: 6px;
}

.time img {
    height: 35px;
    width: 35px;
    border-radius: 5px;
    margin-right: 10px;
}

.time-info {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-start;
    text-align: left;
    color: #F0F2F5;
    font-size: 0.95rem;
    font-weight: 600;
}

.time input[type="text"] {
    width: 50px;
    padding: 6px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #F0F2F5;
    color: #000;
}

button {
    width: 100%;
    background-color: #1E90FF; /* Azul FIFA vibrante */
    color: white;
    padding: 14px 0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    margin-top: 15px;
}

button:hover {
    background-color: #0066cc; /* Tom mais escuro ao passar o mouse */
}

a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 10px;
    border: 1px solid #33415C;
    text-align: center;
    font-size: 0.95rem;
}

th {
    background-color: #003366;
    color: #FFD700;
}

.icon {
    margin-right: 8px;
}

.footer {
    margin-top: 30px;
    font-size: 0.85em;
    color: #ccc;
    text-align: center;
}