:root {
  --bg-dark: #fdf8fb; /* pastel light general */
  --panel: #ffffff;
  --muted: #6b7280;

  /* Colores equipos */
  --team-red: #ff7b7b;
  --team-red-dark: #ff5252;
  --team-blue: #80c7ff;
  --team-blue-dark: #4aa3ff;
  --team-green: #8ef6c1;
  --team-green-dark: #4fe3a0;
  --team-purple: #d3b8ff;
  --team-purple-dark: #b88cff;

  /* Botones y acciones neutras */
  --btn-bg: #fef9f9; /* claro, neutro */
  --btn-hover: #e0e0e0;
  --radius: 12px;
  --swal-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;

    /*SAMPLES*/
    /* CSS HEX */
--ecru: #CEB876ff;
--jasmine: #FBDF7Fff;
--ivory: #FDFDEFff;
--salmon: #FE7A68ff;
--sage: #AFBE90ff;
}

/* global */
* { box-sizing: border-box; }
body {
  background: conic-gradient(from 116.56deg at calc(100% / 3) 0,#0000 90deg,#ffffff 0),
              conic-gradient(from -63.44deg at calc(200% / 3) 100%,#0000 90deg,#ffffff 0)
              var(--bg-dark);
  background-size: 53px 53px;
  margin: 0;
  font-family: var(--swal-font);
  color: #6b21a8;
}
/* ---------- Botón START estilo arcade pastel ---------- */
#startGameBtn {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #6b21a8;
  background: linear-gradient(180deg, #e0caff 0%, #d3b8ff 100%);;
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  cursor: pointer;
  box-shadow: 0 8px 0 rgba(0,0,0,0.2), 0 12px 24px rgba(0,0,0,0.25);
  transition: all 0.15s ease-in-out;
}

/* Hover */
#startGameBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 0 rgba(0,0,0,0.25), 0 16px 32px rgba(0,0,0,0.3);
  filter: brightness(1.05);
}

/* Active (click) */
#startGameBtn:active {
  transform: translateY(4px);
  box-shadow: 0 4px 0 rgba(0,0,0,0.25), 0 8px 16px rgba(0,0,0,0.25);
  filter: brightness(0.95);
}

/* Opcional: efecto de resplandor suave */
#startGameBtn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  filter: blur(12px);
  z-index: -1;
}

/* Arcade fullscreen */
.fullscreen-center {
  /* background: var(--bg-dark); */
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  padding: 24px;
}

/* title */
.arcade-title {
  font-weight: 800;
  font-size: 48px;
  color: #6b21a8;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
}

/* arcade buttons */
.team-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.arcade-btn {
  width: 200px;
  height: 110px;
  border-radius: 50%;
  border: none;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 16px 0 rgba(0, 0, 0, 0.25), 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.08s ease, box-shadow 0.08s ease, filter 0.12s ease;
}
.arcade-btn:active {
  transform: translateY(6px);
  box-shadow: 0 4px 0 rgba(0,0,0,0.35);
  filter: brightness(0.95);
}
.arcade-btn.selected {
  transform: scale(1.03);
  outline: 6px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.45), 0 10px 20px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px black;
}

/* colors */
.arcade-btn[data-color="--team-red"] {
  background: linear-gradient(180deg, var(--team-red), var(--team-red-dark));
}
.arcade-btn[data-color="--team-blue"] {
  background: linear-gradient(180deg, var(--team-blue), var(--team-blue-dark));
}
.arcade-btn[data-color="--team-green"] {
  background: linear-gradient(180deg, var(--team-green), var(--team-green-dark));
}
.arcade-btn[data-color="--team-purple"] {
  background: linear-gradient(180deg, var(--team-purple), var(--team-purple-dark));
}

/* start button */
/* .btn-start {
  margin-top: 8px;
  padding: 12px 28px;
  background: var(--btn-bg);
  color: #313133;
  border-radius: var(--radius);
  font-weight: 800;
  border: none;
  box-shadow: 0 6px 0 rgba(0,0,0,0.15);
  cursor: pointer;
}
.btn-start:active { transform: translateY(4px); background: var(--btn-hover); } */

/* modal option style */
.swal-option {
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
  transition: transform 0.06s ease, opacity 0.12s;
  background:#fef9f9; 
}
.swal-option.disabled {
  pointer-events: none;
  opacity: 0.35;
  background: #e6e6e6;
  color: #777;
}

/* team pill inside modal */
.swal-team {
  padding: 8px 14px;
  width: 102px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  margin: 6px;
  border: none;
  box-shadow: 0 6px 0 rgba(0,0,0,0.14);
}
.swal-team.disabled {
  opacity: 0.4;
  pointer-events: none;
  transform: none;
}

h2{ 
   color: #6b21a8
}
h2#questionText {
    background-color: #6b21a8;
    color: #fef9f9;
    width: 100%;
    padding: 10px;
}
/* scoreboard */
#scoreboard {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.score-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.color-box {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 8px;
}
