/* ==========================
   RESET / BASE
========================== */
*{
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body{
  margin: 0;
  background: #0f1220;
  color: #fff;
}

/* ==========================
   BACKGROUND GLOBAL
========================== */
.bg{
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, #ff5fa2, transparent 40%),
    radial-gradient(circle at bottom, #5f7cff, transparent 40%);
  opacity: .15;
  z-index: -1;
}

/* ==========================
   LAYOUT
========================== */
.container{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  max-width: 420px;
  margin: auto;
}

.card{
  width: 100%;
  background: rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(14px);
}

/* ==========================
   TIPOGRAFIA
========================== */
h1{
  font-size: 26px;
  margin-bottom: 12px;
}

h2{
  font-size: 22px;
  margin-bottom: 12px;
}

.subtitle{
  font-size: 15px;
  color: #ddd;
  margin-bottom: 24px;
  line-height: 1.4;
}

/* ==========================
   BADGE / STATUS
========================== */
.badge{
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 16px;
}

.badge strong.status-on{
  color: #22c55e;
  font-weight: 700;
}

/* ==========================
   BOTÕES
========================== */

.cta{
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #ff5fa2, #ff8fc7);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/* links simples dentro de options (não CTA) */
.options a:not(.cta){
  display: block;
  margin-bottom: 10px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

/* espaçamento entre CTAs */
.options .cta {
  margin-bottom: 14px;
}

/* remove margem extra do último botão */
.options .cta:last-child {
  margin-bottom: 0;
}

/* ==========================
   MODAL SALVAR
========================== */

.save-modal {
  position: fixed;
  inset: 0;
  background: rgba(15,18,32,.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.save-modal.active {
  display: flex;
}

.save-box {
  background: rgba(30,34,60,.95);
  border-radius: 18px;
  padding: 24px;
  max-width: 320px;
  width: 90%;
  text-align: center;
}

.save-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.save-box p {
  font-size: 14px;
  color: #c7d2fe;
  line-height: 1.4;
  margin-bottom: 18px;
}

.save-box button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg,#5f7cff,#22c55e);
  color: #0b1020;
  font-weight: 600;
  cursor: pointer;
}
