/* RESET GERAL */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000 !important;
  color: #fff !important;
  font-size: 1.2rem;
}

/* CONTAINER CENTRAL */
.container {
  max-width: 500px;
  margin: auto;
  padding: 20px;
}

/* TÍTULOS */
h1, h2, h3 {
  color: #fff !important;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

/* FORMULÁRIO */
input, select {
  padding: 14px;
  font-size: 1.1rem;
  border-radius: 6px;
  background-color: #111;
  border: 1px solid #e50914;
  color: white;
  width: 100%;
}

input::placeholder {
  color: #ccc;
}

button {
  background: linear-gradient(90deg, #e50914, #b20710);
  color: white;
  font-size: 1.1rem;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

button:hover {
  background: linear-gradient(90deg, #ff1a1a, #990000);
}

button i {
  font-size: 1.3rem;
}

/* LINKS */
a {
  color: #e50914;
  text-decoration: none;
  font-size: 1.1rem;
}

a:hover {
  text-decoration: underline;
}

/* NAVBAR */
.navbar {
  background: linear-gradient(90deg, #b20710, #e50914);
}

.navbar .navbar-brand,
.navbar .nav-link {
  color: white !important;
  font-size: 1.1rem;
}

.navbar .nav-link:hover {
  color: #ddd !important;
}

/* BINGO */
.bingo {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.bingo th, .bingo td {
  border: 1px solid #333;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  background-color: #111;
  color: white;
}

.bingo th {
  background-color: #e50914;
  font-size: 1.5rem;
}

.marcado {
  background-color: #e50914 !important;
  color: #fff;
  font-weight: bold;
}

.bola {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px;
  font-size: 1.2rem;
  background-color: transparent;
  transition: 0.3s;
  font-weight: bold;
}

.bola.ativa {
  background: linear-gradient(135deg, #e50914, #b20710);
  box-shadow: 0 0 10px #e50914;
  border: none;
}

.numeros {
  margin-top: 20px;
  text-align: center;
}
.bola.ultima {
  animation: pulse 1s ease-in-out 3;
  outline: 3px solid #fff;
  outline-offset: 3px;
  position: relative;
  z-index: 2;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.8); }
  70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.bgs-red {
  background: linear-gradient(90deg, #e50914, #b20710) !important;
  color: white;
  font-size: 1.1rem;
  border: none;
  border-radius: 6px;
  width: 100%;
}
/**/
.painel-netflix {
  padding: 40px 20px;
  background: linear-gradient(180deg, #141414, #000);
  min-height: 100vh;
  color: #fff;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.titulo-bingo {
  font-size: 6em;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #e50914;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.descricao-bingo {
  font-size: 1.1em;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.painel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  justify-content: center;
}

.card-netflix {
  background: linear-gradient(135deg, #e50914, #b0060f);
  border-radius: 15px;
  padding: 30px 10px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-netflix:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.6);
}

.card-netflix .icon {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.card-netflix span {
  font-size: 1.1em;
}

@media (max-width: 576px) {
  .titulo-bingo {
    font-size: 3em;
  }
  .descricao-bingo {
    font-size: 1em;
    padding: 0 10px;
  }
  .card-netflix {
    padding: 20px 10px;
  }
  .card-netflix .icon {
    font-size: 2.2em;
  }
}
/**/
/* Tabela estilo Netflix */
.table-netflix {
  width: 100%;
  border-collapse: collapse;
  background-color: #141414;
  color: #000;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}

.table-netflix thead {
  background-color: #e50914;
}

.table-netflix thead th {
  color: black !important;
  padding: 12px;
  text-align: left;
  font-weight: bold;
  border-bottom: 1px solid #333;
}

.table-netflix tbody tr {
  transition: background-color 0.2s ease;
}

.table-netflix tbody tr:nth-child(even) {
  background-color: #1c1c1c;
}

.table-netflix tbody tr:hover {
  background-color: #292929;
}

.table-netflix tbody td {
  padding: 10px;
  border-bottom: 1px solid #333;
}

/* Responsividade: quebra em blocos em telas pequenas */
@media (max-width: 768px) {
  .table-netflix,
  .table-netflix thead,
  .table-netflix tbody,
  .table-netflix th,
  .table-netflix td,
  .table-netflix tr {
    display: block;
    width: 100%;
  }

  .table-netflix thead {
    display: none;
  }

  .table-netflix tbody tr {
    margin-bottom: 15px;
    background-color: #1c1c1c;
    padding: 10px;
    border-radius: 8px;
  }

  .table-netflix tbody td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .table-netflix tbody td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 10px;
    width: 45%;
    font-weight: bold;
    text-align: left;
    color: #aaa;
  }
}
