:root{
  --bg:#eef2f8;
  --bg2:#dde6f3;
  --card:#ffffff;
  --card2:#f8fbff;
  --text:#1f2937;
  --muted:#667085;
  --line:#d6dde8;
  --line-strong:#b8c4d6;
  --accent:#4c7ff0;
  --accent-2:#7aa7ff;
  --accent-3:#dfe9ff;
  --gold:#c9a86a;
  --gold-2:#e8d2a3;
  --ok:#1fa971;
  --ng:#d64545;
  --shadow:0 10px 30px rgba(34,55,90,.10);
  --shadow-strong:0 16px 40px rgba(34,55,90,.16);
  --radius:18px;

  --role-tank:#4f8dff;
  --role-healer:#34c77b;
  --role-melee:#d94f70;
  --role-ranged:#b96ee6;
  --role-caster:#a86df6;
  --role-special:#7b8798;
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
  min-height:100%;
}

body{
  color:var(--text);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
  background:
    radial-gradient(circle at top, rgba(122,167,255,.18), transparent 34%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg) 180px, #f6f8fc 100%);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.35) 0%, transparent 35%),
    repeating-linear-gradient(
      90deg,
      transparent 0 39px,
      rgba(255,255,255,.04) 39px 40px
    );
  opacity:.55;
}

.wrap{
  width:min(100%, 920px);
  margin:0 auto;
  padding:20px 14px 40px;
  position:relative;
  z-index:1;
}

.hidden{
  display:none !important;
}

.card{
  position:relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,251,255,.98) 100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px;
  margin:16px 0;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.75), transparent 22%),
    linear-gradient(90deg, transparent, rgba(76,127,240,.04), transparent);
}

.card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:var(--radius);
  pointer-events:none;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.8),
    inset 0 1px 0 rgba(255,255,255,.8);
}

.hero{
  padding:24px 20px;
  background:
    linear-gradient(135deg, rgba(76,127,240,.15), rgba(201,168,106,.10)),
    linear-gradient(180deg, #ffffff, #f7fbff);
  border:1px solid #d8e1ee;
}

.heroInner{
  position:relative;
  z-index:1;
}

.heroBadge{
  display:inline-block;
  margin-bottom:10px;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  color:#445475;
  border:1px solid #d7dfeb;
  background:linear-gradient(180deg, #fff, #eef4fb);
}

.hero h1{
  margin:0 0 10px;
  font-size:clamp(26px,4.2vw,38px);
  line-height:1.15;
  letter-spacing:.02em;
  color:#1b2640;
  text-shadow:0 1px 0 rgba(255,255,255,.8);
}

.hero h1::after{
  content:"";
  display:block;
  width:84px;
  height:3px;
  margin-top:10px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--gold), var(--accent));
}

.heroLead{
  margin:0 0 6px;
  font-size:18px;
  font-weight:900;
  color:#2d426a;
}

.sub{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

h2,h3{
  margin:0 0 14px;
  color:#23324d;
  letter-spacing:.02em;
}

.modeCards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:16px;
}

.modeCard{
  position:relative;
  text-align:left;
  border:1px solid #d5ddeb;
  border-radius:18px;
  padding:14px;
  background:
    linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
  box-shadow:
    0 6px 16px rgba(34,55,90,.06),
    inset 0 1px 0 rgba(255,255,255,.96);
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.modeCard:hover{
  transform:translateY(-1px);
  box-shadow:
    0 10px 20px rgba(34,55,90,.10),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.modeCard.active{
  border-color:#7d9fe7;
  box-shadow:
    0 12px 24px rgba(76,127,240,.14),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.modeCard[data-mode="all"].active{
  border-color:rgba(201,168,106,.55);
  background:
    linear-gradient(135deg, rgba(201,168,106,.18), rgba(76,127,240,.08)),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.modeCardLabel{
  display:inline-block;
  margin-bottom:8px;
  padding:4px 8px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  color:#56647f;
  background:#eef3fa;
}

.modeCard strong{
  display:block;
  margin-bottom:6px;
  font-size:18px;
  color:#23324c;
}

.modeCard small{
  color:var(--muted);
  line-height:1.6;
}

.formGrid{
  display:grid;
  grid-template-columns:1fr 180px 1fr;
  gap:14px;
  align-items:end;
}

.formRow{
  display:grid;
  gap:8px;
}

label{
  font-weight:700;
  color:#31405d;
}

input,select{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:13px 14px;
  font-size:16px;
  color:var(--text);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 1px 0 rgba(255,255,255,.65);
  outline:none;
}

input:focus,select:focus{
  border-color:var(--accent-2);
  box-shadow:
    0 0 0 4px rgba(76,127,240,.12),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.startActions,
.resultActions,
.nextWrap{
  margin-top:18px;
}

.resultActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.btn{
  appearance:none;
  border:1px solid #cfd8e6;
  border-radius:14px;
  padding:12px 16px;
  min-height:46px;
  font-weight:800;
  font-size:15px;
  letter-spacing:.02em;
  cursor:pointer;
  color:#2a354b;
  background:
    linear-gradient(180deg, #ffffff 0%, #eef3fa 100%);
  box-shadow:
    0 4px 12px rgba(36,54,90,.08),
    inset 0 1px 0 rgba(255,255,255,.95);
  transition:transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:
    0 8px 18px rgba(36,54,90,.12),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.btn.primary{
  color:#fff;
  border-color:#4f77d4;
  background:
    linear-gradient(180deg, #6d95ff 0%, #4c7ff0 52%, #3f6edf 100%);
  box-shadow:
    0 8px 20px rgba(76,127,240,.25),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.infoPanel{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:18px;
}

.infoBlock{
  padding:14px;
  border:1px solid #d8e0ec;
  border-radius:16px;
  background:linear-gradient(180deg,#fff,#f6f9ff);
}

.infoTitle{
  font-weight:900;
  color:#2a3750;
  margin-bottom:6px;
}

.infoText{
  color:var(--muted);
  line-height:1.7;
}

.quizTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}

.progressText,
.scoreText{
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  background:linear-gradient(180deg, #ffffff, #eef4ff);
  border:1px solid var(--line);
  color:#3d4b65;
}

.meterWrap{
  margin-bottom:14px;
}

.meterBar{
  width:100%;
  height:10px;
  border-radius:999px;
  background:#e5ebf4;
  overflow:hidden;
  border:1px solid #d3dce8;
}

.meterFill{
  width:0%;
  height:100%;
  background:linear-gradient(90deg, var(--gold), var(--accent));
  transition:width .25s ease;
}

.hintBox{
  position:relative;
  overflow:hidden;
  margin-bottom:18px;
  padding:11px 14px;
  border:1px solid #d5deea;
  border-radius:14px;
  background:
    linear-gradient(180deg, #fbfdff 0%, #eef4ff 100%);
  color:#5a6882;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.95);
  transition:background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hintBox::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.28), transparent 36%, transparent 64%, rgba(255,255,255,.18));
  opacity:.65;
}

#jobHint{
  color:#20304f;
  font-weight:800;
}

.hintBox.role-tank{
  border-color:rgba(79,141,255,.35);
  background:
    linear-gradient(135deg, rgba(79,141,255,.16), rgba(79,141,255,.05)),
    linear-gradient(180deg, #fbfdff 0%, #eef4ff 100%);
}

.hintBox.role-healer{
  border-color:rgba(52,199,123,.35);
  background:
    linear-gradient(135deg, rgba(52,199,123,.16), rgba(52,199,123,.05)),
    linear-gradient(180deg, #fbfffd 0%, #eefcf5 100%);
}

.hintBox.role-melee{
  border-color:rgba(217,79,112,.35);
  background:
    linear-gradient(135deg, rgba(217,79,112,.16), rgba(217,79,112,.05)),
    linear-gradient(180deg, #fffafb 0%, #fff0f3 100%);
}

.hintBox.role-ranged{
  border-color:rgba(185,110,230,.35);
  background:
    linear-gradient(135deg, rgba(185,110,230,.16), rgba(185,110,230,.05)),
    linear-gradient(180deg, #fefbff 0%, #f7efff 100%);
}

.hintBox.role-caster{
  border-color:rgba(168,109,246,.35);
  background:
    linear-gradient(135deg, rgba(168,109,246,.16), rgba(168,109,246,.05)),
    linear-gradient(180deg, #fdfbff 0%, #f4efff 100%);
}

.hintBox.role-special{
  border-color:rgba(123,135,152,.35);
  background:
    linear-gradient(135deg, rgba(123,135,152,.16), rgba(123,135,152,.05)),
    linear-gradient(180deg, #fbfcfd 0%, #f1f4f8 100%);
}

.iconArea{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:22px 0 18px;
}

.iconAura{
  position:absolute;
  width:146px;
  height:146px;
  border-radius:999px;
  pointer-events:none;
  filter:blur(16px);
  opacity:.45;
  transition:background .2s ease, opacity .2s ease, transform .2s ease;
  transform:scale(1);
}

.iconArea.role-tank .iconAura{
  background:radial-gradient(circle, rgba(79,141,255,.45) 0%, rgba(79,141,255,.12) 45%, transparent 72%);
}

.iconArea.role-healer .iconAura{
  background:radial-gradient(circle, rgba(52,199,123,.45) 0%, rgba(52,199,123,.12) 45%, transparent 72%);
}

.iconArea.role-melee .iconAura{
  background:radial-gradient(circle, rgba(217,79,112,.42) 0%, rgba(217,79,112,.12) 45%, transparent 72%);
}

.iconArea.role-ranged .iconAura{
  background:radial-gradient(circle, rgba(185,110,230,.42) 0%, rgba(185,110,230,.12) 45%, transparent 72%);
}

.iconArea.role-caster .iconAura{
  background:radial-gradient(circle, rgba(168,109,246,.42) 0%, rgba(168,109,246,.12) 45%, transparent 72%);
}

.iconArea.role-special .iconAura{
  background:radial-gradient(circle, rgba(123,135,152,.38) 0%, rgba(123,135,152,.12) 45%, transparent 72%);
}

#skillIcon{
  position:relative;
  z-index:1;
  width:104px;
  height:104px;
  object-fit:cover;
  border-radius:20px;
  border:1px solid #cfd9e8;
  background:#fff;
  padding:6px;
  transition:transform .16s ease, box-shadow .16s ease;
}

.iconArea.role-tank #skillIcon{
  box-shadow:0 10px 24px rgba(54,73,108,.16),0 0 0 6px rgba(255,255,255,.75),0 0 0 7px rgba(79,141,255,.22),0 0 28px rgba(79,141,255,.18);
}

.iconArea.role-healer #skillIcon{
  box-shadow:0 10px 24px rgba(54,73,108,.16),0 0 0 6px rgba(255,255,255,.75),0 0 0 7px rgba(52,199,123,.22),0 0 28px rgba(52,199,123,.18);
}

.iconArea.role-melee #skillIcon{
  box-shadow:0 10px 24px rgba(54,73,108,.16),0 0 0 6px rgba(255,255,255,.75),0 0 0 7px rgba(217,79,112,.20),0 0 28px rgba(217,79,112,.16);
}

.iconArea.role-ranged #skillIcon{
  box-shadow:0 10px 24px rgba(54,73,108,.16),0 0 0 6px rgba(255,255,255,.75),0 0 0 7px rgba(185,110,230,.20),0 0 28px rgba(185,110,230,.16);
}

.iconArea.role-caster #skillIcon{
  box-shadow:0 10px 24px rgba(54,73,108,.16),0 0 0 6px rgba(255,255,255,.75),0 0 0 7px rgba(168,109,246,.20),0 0 28px rgba(168,109,246,.16);
}

.iconArea.role-special #skillIcon{
  box-shadow:0 10px 24px rgba(54,73,108,.16),0 0 0 6px rgba(255,255,255,.75),0 0 0 7px rgba(123,135,152,.20),0 0 24px rgba(123,135,152,.12);
}

.iconArea.correctPulse #skillIcon{
  animation:iconPulse .45s ease;
}

@keyframes iconPulse{
  0%{ transform:scale(1); }
  35%{ transform:scale(1.08); }
  100%{ transform:scale(1); }
}

.questionText{
  text-align:center;
  font-size:21px;
  font-weight:900;
  letter-spacing:.02em;
  color:#22304a;
  margin-bottom:16px;
}

.choices{
  display:grid;
  gap:10px;
}

.choiceBtn{
  width:100%;
  text-align:left;
  border:1px solid #d3dbe8;
  border-radius:16px;
  padding:14px 16px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color:#263349;
  cursor:pointer;
  font-size:16px;
  font-weight:800;
  box-shadow:
    0 4px 12px rgba(34,55,90,.06),
    inset 0 1px 0 rgba(255,255,255,.95);
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
}

.choiceBtn:hover{
  transform:translateY(-1px);
  background:linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
  border-color:#b8caec;
}

.choiceBtn.correct{
  border-color:rgba(31,169,113,.45);
  background:linear-gradient(180deg, rgba(31,169,113,.12), rgba(31,169,113,.06));
  color:#12724a;
}

.choiceBtn.wrong{
  border-color:rgba(214,69,69,.42);
  background:linear-gradient(180deg, rgba(214,69,69,.10), rgba(214,69,69,.05));
  color:#a02a2a;
}

.answerBox{
  position:relative;
  margin-top:18px;
  border-top:1px solid var(--line);
  padding-top:16px;
}

.answerBox.shine::before{
  content:"";
  position:absolute;
  inset:-20%;
  pointer-events:none;
  background:
    linear-gradient(115deg,
      transparent 20%,
      rgba(255,255,255,.00) 35%,
      rgba(255,255,255,.72) 50%,
      rgba(255,255,255,.00) 65%,
      transparent 80%);
  animation:ffshine .9s ease forwards;
}

@keyframes ffshine{
  0%{ transform:translateX(-70%) skewX(-18deg); opacity:0; }
  20%{ opacity:1; }
  100%{ transform:translateX(70%) skewX(-18deg); opacity:0; }
}

.answerResult{
  font-size:22px;
  font-weight:900;
  margin-bottom:8px;
}

.answerResult.ok{ color:var(--ok); }
.answerResult.ng{ color:var(--ng); }

.answerName{
  margin-bottom:14px;
  font-size:17px;
  font-weight:700;
}

.summaryBox,
.detailBox{
  border:1px solid #d7dfeb;
  border-radius:16px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding:14px;
  margin-top:12px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.95);
}

.summaryTitle{
  font-weight:900;
  margin-bottom:8px;
  color:#2a3750;
}

.summaryText,
.detailText{
  line-height:1.9;
  white-space:pre-wrap;
  color:#2c384e;
}

.detailBox summary{
  cursor:pointer;
  font-weight:900;
  color:#2a3750;
}

#screenResult{
  background:
    linear-gradient(135deg, rgba(76,127,240,.10), rgba(201,168,106,.08)),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border:1px solid #d9e3f0;
  box-shadow:var(--shadow-strong);
}

#screenResult h2{
  font-size:28px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#1e2e4b;
}

#screenResult h2::after{
  content:" RESULT";
  color:rgba(76,127,240,.22);
  font-size:30px;
  font-weight:900;
  margin-left:10px;
  letter-spacing:.08em;
}

.resultMain{
  position:relative;
  border:1px solid #d7dfeb;
  border-radius:18px;
  padding:18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(243,248,255,.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 10px 20px rgba(34,55,90,.06);
  font-size:18px;
  line-height:2;
}

.resultMain::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  border-radius:18px 18px 0 0;
  background:linear-gradient(90deg, var(--gold), var(--accent), var(--gold));
}

.resultMain strong{
  color:#1d4fb8;
  font-size:1.04em;
}

.resultBadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 12px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  color:#38465f;
  border:1px solid #d6deeb;
  background:linear-gradient(180deg, #fff, #eef4fb);
}

.resultGrade{
  display:inline-block;
  min-width:60px;
  text-align:center;
  margin-left:8px;
  padding:6px 12px;
  border-radius:999px;
  font-weight:900;
  border:1px solid rgba(201,168,106,.45);
  background:linear-gradient(180deg, #fff7e6, #f6ead0);
  color:#7a5a1d;
}

.playerPlate{
  margin:10px 0 12px;
  padding:10px 14px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  max-width:100%;
  border:1px solid #d7dfeb;
  background:linear-gradient(180deg,#fff,#f4f8ff);
}

.playerLabel{
  font-size:12px;
  font-weight:900;
  color:#7b879d;
  letter-spacing:.08em;
}

.playerName{
  font-size:18px;
  font-weight:900;
  color:#2b3e67;
  word-break:break-all;
}

.resultMode{
  margin-bottom:10px;
  color:#43516d;
  font-weight:700;
}

.resultFlavor{
  margin:0 0 12px;
  color:#5c6780;
  line-height:1.8;
  font-weight:700;
}

.resultPanelGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:14px;
}

.resultStat{
  border:1px solid #d8e0ec;
  border-radius:14px;
  padding:12px;
  background:linear-gradient(180deg,#fff,#f6f9ff);
  text-align:center;
}

.resultStatLabel{
  color:var(--muted);
  font-size:12px;
  font-weight:700;
  margin-bottom:6px;
}

.resultStatValue{
  color:#1e355e;
  font-size:22px;
  font-weight:900;
}

.sep{
  border:none;
  border-top:1px solid var(--line);
  margin:24px 0;
}

.rankTabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:10px 0 14px;
}

.rankTab{
  appearance:none;
  border:1px solid #d0d9e6;
  border-radius:12px;
  padding:10px 14px;
  background:linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  color:#31405b;
  font-weight:800;
  cursor:pointer;
}

.rankTab.active{
  border-color:#7ea1eb;
  background:linear-gradient(180deg, #dfeaff 0%, #cfe0ff 100%);
  color:#15305f;
}

.jobRankFilterWrap{
  margin-bottom:14px;
}

.rankingBox{
  display:grid;
  gap:10px;
}

.rankRow{
  display:grid;
  grid-template-columns:70px 1fr auto;
  gap:10px;
  align-items:center;
  border:1px solid #d6dfea;
  border-radius:14px;
  padding:12px 14px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  box-shadow:0 6px 14px rgba(34,55,90,.05);
}

.rankRow:nth-child(1){
  background:
    linear-gradient(135deg, rgba(201,168,106,.20), rgba(255,255,255,.98)),
    linear-gradient(180deg, #fffaf0 0%, #fff7ea 100%);
}

.rankRow:nth-child(2){
  background:
    linear-gradient(135deg, rgba(170,182,199,.18), rgba(255,255,255,.98)),
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}

.rankRow:nth-child(3){
  background:
    linear-gradient(135deg, rgba(180,128,92,.15), rgba(255,255,255,.98)),
    linear-gradient(180deg, #fffaf7 0%, #f9f2ec 100%);
}

.rankPos{
  font-weight:900;
  color:#7a6240;
}

.rankName{
  font-weight:800;
  color:#25344d;
  overflow:hidden;
}

.rankName small{
  color:var(--muted);
  font-weight:600;
}

.rankScore{
  font-weight:900;
  color:#1f4eb8;
  white-space:nowrap;
}

@media (max-width:840px){
  .modeCards{
    grid-template-columns:1fr;
  }

  .formGrid{
    grid-template-columns:1fr;
  }

  .infoPanel{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){
  .wrap{
    padding:14px 10px 28px;
  }

  .card{
    padding:16px;
    border-radius:16px;
  }

  .questionText{
    font-size:19px;
  }

  .choiceBtn{
    font-size:15px;
  }

  #screenResult h2::after{
    display:none;
  }

  .resultPanelGrid{
    grid-template-columns:1fr;
  }

  .rankRow{
    grid-template-columns:60px 1fr;
  }

  .rankScore{
    grid-column:2;
    justify-self:end;
  }

  .playerPlate{
    display:flex;
    width:100%;
  }

  .playerName{
    font-size:17px;
  }
}
.credit{
  margin:10px 0 0;
  font-size:14px;
  font-weight:700;
  color:#6b7690;
}

.timerText{
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:14px;
  background:linear-gradient(180deg, #fff7ef, #ffe7c8);
  border:1px solid #f0cf9b;
  color:#9a5b00;
  min-width:72px;
  text-align:center;
}

.timerText.danger{
  background:linear-gradient(180deg, #fff0f0, #ffdada);
  border-color:#efb0b0;
  color:#b42323;
}

.skillCard{

display:flex;
align-items:center;
gap:10px;
padding:10px;
background:white;
border-radius:8px;
margin-bottom:6px;
cursor:pointer;

}

.skillCard img{
width:40px;
height:40px;
}
.jobProgress{

display:flex;
justify-content:space-between;
align-items:center;

font-size:14px;

background:white;
padding:8px 12px;

border-radius:8px;
margin-bottom:6px;

}

.jobProgress span{

font-weight:bold;

}

#btnRanking{

background:#ffffff;
color:#2c3e50;
border:1px solid #ccd2da;

}

#btnRanking:hover{

background:#f5f7fa;

}