body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      background: #fff;
      color: #222;
      line-height: 1.6;
    }
    h1, h2, h3, p, a {
      font-family: inherit;
    }
    header {
  background: url('assets/bg-fortune.jpg') center/cover no-repeat;
  color: #000;
  padding: 10px 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2em;
  margin: 10px 0 5px;
}

header p {
  font-size: 1em;
  margin: 0;
}

/* Responsividade */
@media (max-width: 600px) {
  header h1 {
    font-size: 2.1em;
  }

  header p {
    font-size: 0.9em;
  }
}
    nav {
      background: #f2f2f2;
      padding: 12px;
      text-align: center;
      border-bottom: 1px solid #ddd;
    }
    nav a {
      color: #333;
      margin: 0 14px;
      text-decoration: none;
      font-weight: bold;
    }
    nav a:hover {
      color: #ff6600;
    }
    main {
      max-width: 1200px;
      margin: 30px auto;
      padding: 0 20px;
    }
    section {
      margin-bottom: 40px;
    }
    h2 {
      font-size: 1.6em;
      margin-bottom: 15px;
      color: #222;
    }
    .game-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }
    .game-card {
      border: 1px solid #eee;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      background: #fff;
      transition: transform 0.2s;
    }
    .game-card:hover {
      transform: scale(1.03);
    }
    .game-card img {
      width: 100%;
      height: auto;
      display: block;
    }
    .game-card h3 {
      margin: 12px;
      font-size: 1.1em;
    }
    .game-card a {
      text-decoration: none;
      color: #0077cc;
    }
    .game-card a:hover {
      color: #ff6600;
    }
    .seo-links {
      background: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
    }
    .seo-links a {
      display: inline-block;
      margin: 8px 14px;
      color: #0077cc;
      font-weight: 500;
      text-decoration: none;
    }
    .seo-links a:hover {
      color: #ff6600;
    }
    footer {
      background: #f2f2f2;
      color: #666;
      text-align: center;
      padding: 25px;
      border-top: 1px solid #ddd;
    }

    .popup-tigre {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  overflow: hidden;
  z-index: 9999;
  max-width: 350px;
  animation: fadeInUp 0.5s ease-in-out;
  font-family: sans-serif;
}

.popup-tigre__content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}

.popup-tigre img {
  border-radius: 10px;
  width: 70px;
  height: 70px;
}

.popup-tigre__text {
  flex: 1;
}

.popup-tigre__text p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.popup-tigre__btn {
  display: inline-block;
  margin-top: 6px;
  background: #e63946;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.popup-tigre__btn:hover {
  background: #d62828;
}

.popup-tigre__close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 16px;
  cursor: pointer;
  position: absolute;
  top: 4px;
  right: 10px;
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

