body {
    font-family: Arial, sans-serif;
    background-image: url("background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: #fff;
    margin: 0;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@font-face {
    font-family:'mine';
    src: url('Minecraft.ttf') format('truetype');
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    flex: 1;
}

h1 {
    width: 12ch;
    overflow: hidden;
    white-space: nowrap;
    border-right: .1em solid rgb(255, 255, 255);
    font-family: 'mine';
    font-size: 2em;
    animation: typing 3.5s steps(12, end), blink-cursor .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 12ch }
}

@keyframes blink-cursor {
    from, to { border-color: transparent }
    50% { border-color: rgb(255, 255, 255) }
}

.main-title {
    font-size: 4em;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    color: rgba(157, 205, 104, 0.984);
}

.green-letter {
color: rgba(88, 131, 43, 0.984);}

#searchInput {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #000000;
    background-color: #000000;
    color: rgba(157, 205, 104, 0.984);
}

#mobsContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.mob-card {
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mob-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(119, 255, 0, 0.2);
}

.mob-card h2 {
    margin-top: 0;
    font-size: 1.2em;
    color: rgba(157, 205, 104, 0.984);
}

.mob-card p {
    font-size: 0.9em;
    color: #ccc;
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #001d06;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    color: #fff;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

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

.modal-content h2 {
    color: rgba(157, 205, 104, 0.984);
}

.modal-content h3 {
    color: rgba(157, 205, 104, 0.984);
    border-bottom: 1px solid #000000;
    padding-bottom: 5px;
}



/* FOOTER - Atualizado */
footer {
    background-color: #0000007c;
    padding: 20px 0;
    margin-top: auto;
    left: 0;
    right: 0;
}

.container-footer {
    max-width: 1400px;
    padding: 0 4%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-snow {
    display: flex;
    align-items: center;
    color: rgba(157, 205, 104, 0.984);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1px;
    font-family: 'mine';
}



.rodape-direitos {
    color: rgba(157, 205, 104, 0.984);
    font-size: 14px;
    font-family: 'mine';
}




/*navbar*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.logo-img {
    height: 60px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: #0000007c;
  font-family: 'mine';
}

.logo {
  margin-right: auto;
  
}

.nav__links {
  list-style: none;
  display: flex;
}

.nav__links a,
.cta,
.overlay__content a {
 font-family: "mine";
  letter-spacing: 2px;
  font-weight: 500;
  color: #edf0f1;
  text-decoration: none;
  background-color: rgba(110, 179, 37, 0.481);
}
.nav__links li a:hover {
  color: rgba(255, 255, 255, 0.984);
  background-color:  rgb(110, 179, 37);
}

.cta {
  margin-left: 20px;
  padding: 9px 25px;
  background-color: rgb(0, 0, 0);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.cta:hover {
  background-color: rgba(128, 255, 0, 0.174);
}
