@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #b20021, #480914, #050000);
  color: #fff;
  overscroll-behavior: none;
  overflow-x: hidden;
}

/* TOPO */
.topo {
  text-align: center;
  padding: 40px 20px 20px;
  animation: fadeIn 0.8s ease;
}

.topo h1 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.topo p {
  opacity: 0.75;
  font-size: 0.95rem;
}

/* GRID DE OPÇÕES */
.options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 20px;
  padding-bottom: 60px;
}

/* CARD */
.option {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  text-align: center;

  background:
    radial-gradient(circle at top, rgba(255,0,0,0.25), transparent 60%),
    linear-gradient(160deg, #120000, #3a0000 40%, #090000);

  border: 1px solid rgba(255, 0, 0, 0.35);

  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.5px;

  box-shadow:
    inset 0 0 25px rgba(255,0,0,0.25),
    0 10px 25px rgba(0,0,0,0.8);

  transition: all 0.3s ease;
  overflow: hidden;
}

/* GLOW AO PASSAR */
.option:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    inset 0 0 35px rgba(255,0,0,0.4),
    0 18px 40px rgba(255,0,0,0.45);
}

/* BRILHO PASSANDO */
.option::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.15),
    transparent 70%
  );
  top: -100%;
  left: -100%;
  transform: rotate(25deg);
  transition: all 0.6s ease;
}

.option:hover::before {
  top: 100%;
  left: 100%;
}

/* TEXTO */
.option span {
  position: relative;
  z-index: 2;
  text-shadow:
    0 0 6px rgba(255,0,0,0.8),
    0 0 12px rgba(255,0,0,0.4);
}


/* ANIMAÇÕES */
@keyframes pulse {
  0% { box-shadow: 0 0 15px rgba(255,0,0,0.4); }
  50% { box-shadow: 0 0 30px rgba(255,0,0,0.8); }
  100% { box-shadow: 0 0 15px rgba(255,0,0,0.4); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
