body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;

    background: 
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("background.png");

    background-size: cover;
    background-position: center;
}

/* TÍTULO */
header {
    margin-top: 25px;
}

header h1 {
    display: inline-block;
    background: black;
    padding: 10px 25px;
    border-radius: 12px;
    font-size: 1.8rem;
}

/* CONTEÚDO */
main {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    margin: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TÍTULO PRINCIPAL */
main h2 {
    font-size: 2rem;
    margin: 10px 0;
}

/* DESCRIÇÃO */
.subtitle {
    color: #94a3b8;
    max-width: 400px;
    margin-bottom: 20px;
}

/* BOTÃO */
.btn {
    padding: 12px 28px;
    background: #22c55e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s;
}

.btn:hover {
    background: #16a34a;
    transform: scale(1.05);
}

section {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    margin: 20px;
}

.about {
    background: #020617;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    margin: 10px 0;
}

/* FOOTER */
footer {
    padding: 20px;
    background: black;
}

ul li {
  background: rgba(255,255,255,0.05);
  padding: 10px;
  border-radius: 8px;
}

.play-button.ip {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 10px; /* borda arredondada igual Discord */
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;

  transition: all 0.25s ease;
  box-shadow: 0 6px 15px rgba(0, 114, 255, 0.4);
}

/* Hover igual aos outros */
.play-button.ip:hover {
  transform: translateY(-3px) scale(1.03);
}

/* Clique igual aos outros */
.play-button.ip:active {
  transform: translateY(1px) scale(0.98);
}

.logo {
  width: 120px;
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 10px;
}