/* Importa uma fonte elegante */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');

body {
  margin: 0;
  background: #1a001a;
  color: white;
  font-family: 'Dancing Script', cursive;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

/* Tela inicial */
.tela-inicial {
  text-align: center;
  max-width: 600px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid #ffccff;
  border-radius: 20px;
  box-shadow: 0 0 15px #ff99cc;
}

.tela-inicial h1 {
  font-size: 3em;
  color: #ff99cc;
}

.tela-inicial p {
  font-size: 1.4em;
  margin: 30px 0;
}

.tela-inicial button {
  background: #ff66b2;
  border: none;
  color: white;
  font-size: 1.2em;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 10px #ff99cc;
  transition: transform 0.2s ease;
}

.tela-inicial button:hover {
  transform: scale(1.05);
}

/* Cartinha */
.cartinha {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Fogo ao redor da carta */
.fogo {
  position: absolute;
  width: 320px;
  height: 440px;
  background: radial-gradient(ellipse at center, rgba(255, 100, 0, 0.4), transparent);
  animation: fogo-pulso 0.4s infinite alternate;
  filter: blur(30px);
  z-index: 1;
}

@keyframes fogo-pulso {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

.carta {
  z-index: 2;
  width: 300px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 2px solid #ff9999;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 25px #ff333355;
}

.carta h2 {
  font-size: 2em;
  color: #ffcccc;
}

.carta p {
  font-size: 1.2em;
  line-height: 1.6;
}