body {
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #2c5990;
  padding-top: 0;
  padding-bottom: 0;
  max-width: auto;
  margin: auto;
  margin-top: 16px;
}

.loteria {
  float: left;
  height: auto;
  padding: 0 8px 0 8px;
  width: 100%;
}

.site {
  float: left;
  height: auto;
  padding: 0 0 12px 8px;
  width: 66%;
  font-size: 20px;
  font-family: 'Anton', sans-serif;
  color: #ffac00;
}

.data,
.extracao,
.tipo,
.dia_semana {
  color: #fff;
  float: left;
  font-size: 16px;
  font-weight: bold;
  width: 33%;
  text-align: left;
}

.data {
  text-align: right;
}

.extracao {
  text-align: right;
}

.tipo {
  line-height: 32px;
  text-align: right;
  padding-right: 8px;
  width: 33%;
}

.dia_semana {
  width: 33%;
}

hr {
  margin-top: 0;
}

a {
  color: #ffac00;
}

.table-striped tr {
  height: 10px;
}

tr {
  height: 15px;
  line-height: 1.2;

  th {
    text-align: center;
    font-size: 14px;
    background-color: #eeeaea;
    border: 1px solid #ddd;
    font-weight: normal;
  }

  td {
    text-align: center;
    font-size: 18px;

    .titulo {
      font-size: 13px;
    }

    .milhar {
      font-weight: bold;
      font-size: 20px;
    }
  }
}

.table td {
  padding: 0.7rem;
  font-size: 15px;
}

.container {
  padding-right: 0;
  padding-left: 0;
}

.atalho {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 12px;
  background-color: blueviolet; /* Cor de fundo: azul */
  color: #fff; /* Cor do texto: branco */
  text-align: center;
  padding: 10px;
}

.mensagem {
  background: linear-gradient(135deg, #d70040 0%, #e32636 100%);
  color: white;
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 15px;
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow:
    0 8px 25px rgba(215, 0, 64, 0.3),
    0 4px 12px rgba(227, 38, 54, 0.2);
  position: relative;
  animation:
    glowMessage 2s infinite,
    shakeMessage 10s infinite;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.mensagem::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #d70040, #e32636, #d70040);
  border-radius: 16px;
  z-index: -1;
  animation: borderGlow 3s infinite;
}

@keyframes glowMessage {
  0%,
  100% {
    box-shadow:
      0 8px 25px rgba(215, 0, 64, 0.3),
      0 4px 12px rgba(227, 38, 54, 0.2);
  }
  50% {
    box-shadow:
      0 12px 35px rgba(215, 0, 64, 0.5),
      0 8px 20px rgba(227, 38, 54, 0.3);
  }
}

@keyframes shakeMessage {
  0%,
  90%,
  94%,
  98%,
  100% {
    transform: translateX(0);
  }
  92% {
    transform: translateX(-5px);
  }
  96% {
    transform: translateX(5px);
  }
}

@keyframes borderGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .mensagem {
    margin: 20px 15px;
    padding: 20px 25px;
    font-size: 20px;
  }
}
