
@import url('https://fonts.googleapis.com/css2?family=Jersey+15&family=Nosifer&family=Outfit:wght@100..900&family=Playwrite+AU+SA:wght@100..400&family=Salsa&display=swap');
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Playwrite AU SA', sans-serif;
    text-align: center;
    background-color: #07091A;
    color: white;
}

.body-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hide {
    display: none;
}

.title-container {
    margin-top: 2px;
    margin-bottom: 25px;
}

.title {
    letter-spacing: 5px;
    font-size: 40pt;
}

.cell-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-items: center;
    justify-items: center;
    align-items: center;
}

.cell {
    width: 100px;
    height: 100px;
    cursor: pointer;
    border: 4px solid #00FF7F;
    border-radius: 6px;
    margin: 2px;
    display: flex;
    text-align: center;
    align-items: center;
    font-size: 62pt;
    justify-content: center;
    box-shadow: 0px 0px 13px #00C73F;
}

.winner {
    font-size: 3rem;
    position: fixed;
    z-index: 5;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: rgba(0 ,0 ,0, 0.8);
    display: block;
}

.btn-restart {
    width: 200px;
    height: 50px;
    font-size: 18pt;
    border-radius: 10px;
    margin: 5px;
    border: none;
    background-color: #00FF7F;
    font-family: 'Playwrite AU SA', sans-serif;
    box-shadow: 0px 5px 0px #00A954;
}

.btn-restart:active {
    box-shadow: none;
    transform: translateY(5px);
}

.player-order {
    margin: 20px;
    font-size: 20pt;
}

.scoreboard-container {
    font-size: 30pt;
    justify-content: space-around;
    display: flex;
    margin-bottom: 27px;
}

.infor-score {
    font-size: 35pt;
}

.hide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

xletter {
    text-shadow: 0px 4px #0D0F8E;
    color: #0038D1;
    filter: drop-shadow(0 0 8px #0D0F8E);
}

oletter {
    text-shadow:0px 4px #D20000; 
    color: #FF1313;
    filter: drop-shadow(0 0 8px #B00000);
    
}

a {
    color: #00FF7F;
}

@media screen and (max-width: 768px) {
    .body-container {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0%);
        margin-top: 30px;
    }
    
    .title {
        font-size: 30pt;
    }
}

/*INICIO RODAPE*/

/* ==============================
   FOOTER – INOVARE WEB DESIGN
   ============================== */

.footer-area {
  width: 100%;
  
  padding: 30px 0 25px;
}

/* Texto do copyright */
.footer-copyright {
  color: #ffffff;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.6;
}

/* Link INOVARE */
.footer-copyright a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #00FF7F;
}

/* ==============================
   ÍCONES SOCIAIS
   ============================== */

.footer-social {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

/* Link dos ícones */
.footer-social-link {
  color: #ffffff;
  text-decoration: none;
}

/* Ícones Font Awesome */
.footer-social-link i {
  font-size: 28px;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Hover elegante */
.footer-social-link:hover i {
  color: #00FF7F;
  transform: translateY(-4px);
}

/* ==============================
   RESPONSIVO
   ============================== */

@media (max-width: 768px) {
  .footer-copyright p {
    font-size: 17px;
  }

  .footer-social {
    gap: 22px;
  }

  .footer-social-link i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .footer-copyright p {
    font-size: 15px;
  }

  .footer-social {
    gap: 18px;
  }
}


/*FIM RODAPE*/

/* ==============================
   IMAGEM RESPONSIVA – CONSTRUÇÃO
   ============================== */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

