/* Corpo da página */
body {
    margin: 0;
    padding: 0;
    background: #2b2b2b;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(https://fivemdev.org/fdev-links/background2.jpg);
    background-size: cover;
}

/* Container principal */
.container {
    background-color: #1a1a1a;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #333333;
    width: 350px;
    height: auto;
    padding-bottom: 18px;
}

/* Estilo do título */
.container h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

/* Estilo do título */
.container p {
    color: #ffffff;
    margin-bottom: 20px;
}

/* Estilo do botão */
.discord-button {
    display: inline-block;
    background-color: #7289da; /* Cor do Discord */
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

/* Hover do botão */
.discord-button:hover {
    background-color: #5a6cb0;
}

/* Classe hidden, que vai esconder o conteúdo inicialmente */
.hidden {
    display: none;
}


.main {
    position: relative;
    text-align: center;
    display: flex;
}

/* Container principal */
.server-entry-container {
    text-align: center;
    margin-top: 50px;
    font-family: 'Arial', sans-serif;
}

/* Estilo para o número de entradas */
.server-entry {
    display: inline-block;
    background: linear-gradient(45deg, #ff5722, #ff9800);
    border-radius: 12px;
    padding: 20px 40px;
    color: white;
    font-size: 48px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-30px);
    animation: bounce 2s infinite ease-in-out;
}

/* Animação de bounce para o número de entradas */
@keyframes bounce {
    0%, 100% {
        transform: translateY(-30px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Estilo para a legenda "Pessoas já entraram no servidor" */
.server-entry-number {
    font-size: 56px;
    letter-spacing: 2px;
}

.server-entry-label {
    font-size: 16px;
    color: #fff;
    font-weight: normal;
    margin-top: 10px;
    display: block;
}

/* Estilo para a parte dos links criados */
.server-links {
    margin-top: 30px;
}

.links-label {
    font-size: 18px;
    color: #b57e09;
    font-weight: bold;
}

.links-highlight {
    font-size: 20px;
    color: #e91e63;
}

.custom-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background-color: #0b0f0b;
    color: #00ff7f;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #00ff7f14;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: absolute;
    top: 697px;
    min-width: 284px;
    background: #143525;
    min-height: 46px;
}

.custom-button i {
    margin-right: 8px;
    font-size: 14px;
}

.custom-button:hover {
    background-color: #3e5147;
    border: none;
}

.custom-button:active {
    transform: scale(0.95);
}

/* Estilo do Modal */
.modal {
  display: none; /* Esconde o modal por padrão */
  position: fixed;
  z-index: 1; /* Fica acima de outros elementos */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Conteúdo do Modal */
.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 80%;
}

/* Botão de Fechar */
.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Estilo da Mensagem */
.modal-message {
  font-size: 18px;
  margin: 10px 0;
}

/* Animação do Modal */
.fade-in {
  animation: fadeIn 0.5s;
}

    @keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


