@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


:root {

  --navy: #08265e;

  --navy-2: #0d347c;

  --lime: #a7f33d;

  --lime-dark: #73b92b;

  --ink: #12213a;

  --muted: #6d7890;

  --surface: #ffffff;

  --bg: #f3f6fa;

  --border: #e2e7ef;

  --shadow:
    0 18px 50px rgba(8, 38, 94, .10);

}



* {
  box-sizing: border-box;
}



body {

  margin: 0;

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--ink);

  background:

    radial-gradient(circle at 10% 0%,
      rgba(167, 243, 61, .16),
      transparent 30%),

    radial-gradient(circle at 100% 10%,
      rgba(13, 52, 124, .13),
      transparent 28%),

    var(--bg);

}



body.modal-open {
  overflow: hidden;
}



button {
  font: inherit;
}



/* =========================================================
   PAGE
========================================================= */

.page {

  min-height: 100vh;

  padding-bottom: 48px;

}



/* =========================================================
   HERO
========================================================= */

.hero {

  position: relative;

  overflow: hidden;

  padding:
    38px clamp(20px, 5vw, 72px) 44px;

  color: #fff;

  background:

    linear-gradient(125deg,
      #061d49 0%,
      #0b2c68 56%,
      #102f62 100%);

}



.hero::after {

  content: "";

  position: absolute;

  width: 430px;

  height: 430px;

  border-radius: 50%;

  right: -140px;

  top: -230px;

  background:
    rgba(167, 243, 61, .12);

  box-shadow:
    0 0 0 70px rgba(167, 243, 61, .035);

}



.brand {

  position: relative;

  z-index: 1;

  display: flex;

  align-items: center;

  gap: 22px;

  max-width: 1100px;

  margin: 0 auto;

}



.brand img {

  width: 94px;

  height: 94px;

  object-fit: cover;

  border-radius: 22px;

  background: #fff;

  border:
    3px solid rgba(255, 255, 255, .8);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, .18);

}



.eyebrow {

  margin: 0 0 8px;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: .25em;

}



.hero h1 {

  margin: 0;

  font-size:
    clamp(28px, 5vw, 50px);

  line-height: 1.05;

  letter-spacing: -.04em;

}



.subtitle {

  margin: 12px 0 0;

  color:
    rgba(255, 255, 255, .75);

  font-size: 15px;

}



.tagline {

  position: relative;

  z-index: 1;

  max-width: 1100px;

  margin: 28px auto 0;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .35em;

  color: var(--lime);

}



.tagline span {

  color:
    rgba(255, 255, 255, .45);

  padding: 0 8px;

}



/* =========================================================
   POLL SECTION
========================================================= */

.poll-section {

  width:
    min(1180px,
      calc(100% - 32px));

  margin: -18px auto 0;

  position: relative;

  z-index: 2;

  background:
    rgba(255, 255, 255, .94);

  border:
    1px solid rgba(255, 255, 255, .9);

  border-radius: 26px;

  box-shadow: var(--shadow);

  padding:
    clamp(22px, 4vw, 42px);

}



.section-head {

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 26px;

}



.section-head .eyebrow {
  color: var(--navy-2);
}



.section-head h2 {

  margin: 0;

  font-size:
    clamp(22px, 3vw, 32px);

  letter-spacing: -.035em;

}



.vote-total {

  flex: 0 0 auto;

  display: grid;

  text-align: right;

}



.vote-total strong {

  font-size: 28px;

  color: var(--navy);

}



.vote-total span {

  font-size: 11px;

  color: var(--muted);

  text-transform: uppercase;

  letter-spacing: .12em;

}



/* =========================================================
   POLL GRID
========================================================= */

.poll-grid {

  display: grid;

  grid-template-columns:
    repeat(5,
      minmax(0, 1fr));

  gap: 16px;

}



/* =========================================================
   CARD
========================================================= */

.card {

  overflow: hidden;

  border:
    1px solid var(--border);

  border-radius: 20px;

  background:
    var(--surface);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;

}



.card:hover {

  transform:
    translateY(-4px);

  box-shadow:
    0 14px 34px rgba(8, 38, 94, .13);

}



/* =========================================================
   KIT IMAGE
========================================================= */

.kit-image {

  position: relative;

  aspect-ratio: .72 / 1;

  background: #eef2f6;

  overflow: hidden;

}



.kit-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center top;

  display: block;

}



.kit-number {

  position: absolute;

  left: 12px;

  top: 12px;

  min-width: 38px;

  height: 38px;

  padding: 0 8px;

  display: grid;

  place-items: center;

  border-radius: 12px;

  background:
    rgba(8, 38, 94, .92);

  color: #fff;

  font-weight: 800;

  font-size: 12px;

}



/* =========================================================
   CARD BODY
========================================================= */

.card-body {

  padding:
    17px 16px 16px;

}



.kit-type {

  margin: 0 0 5px;

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: .17em;

  font-weight: 800;

  color: var(--muted);

}



.card h3 {

  margin: 0;

  font-size: 18px;

  color: var(--navy);

}



.desc {

  min-height: 36px;

  margin:
    7px 0 14px;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.5;

}



/* =========================================================
   VOTE FORM
========================================================= */

.vote-form {

  display: flex;

  flex-direction: column;

  gap: 8px;

}



.name-input {

  width: 100%;

  border:
    1px solid var(--border);

  background: #fff;

  color: var(--ink);

  border-radius: 12px;

  padding:
    11px 12px;

  font-size: 12px;

  outline: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;

}



.name-input::placeholder {

  color: #9aa4b5;

}



.name-input:focus {

  border-color:
    var(--navy-2);

  box-shadow:
    0 0 0 3px rgba(13, 52, 124, .08);

}



/* =========================================================
   VOTE BUTTON
========================================================= */

.vote-btn {

  width: 100%;

  border: 0;

  border-radius: 12px;

  padding:
    12px 10px;

  background:
    var(--navy);

  color: #fff;

  cursor: pointer;

  font-size: 12px;

  font-weight: 800;

  transition:
    background .2s ease,
    transform .1s ease;

}



.vote-btn:hover {

  background:
    var(--navy-2);

}



.vote-btn:active {

  transform:
    scale(.98);

}



.vote-btn.disabled,
.vote-btn:disabled {

  cursor: not-allowed;

  opacity: .72;

  background: #dce2ea;

  color: #536076;

}



/* =========================================================
   DETAIL BUTTON
========================================================= */

.detail-btn {

  width: 100%;

  margin-top: 8px;

  border:
    1px solid #d9e0e9;

  background: #fff;

  color: var(--navy);

  border-radius: 12px;

  padding: 10px;

  cursor: pointer;

  font-size: 11px;

  font-weight: 800;

  transition:
    all .2s ease;

}



.detail-btn:hover {

  border-color:
    var(--navy-2);

  background:
    #f4f7fb;

}



/* =========================================================
   RESULT
========================================================= */

.result {

  margin-top: 14px;

}



.result-row {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 7px;

  font-size: 11px;

  color: var(--muted);

}



.result-row strong {

  color: var(--ink);

}



.bar {

  height: 7px;

  border-radius: 999px;

  overflow: hidden;

  background: #edf0f4;

}



.bar span {

  display: block;

  height: 100%;

  width: 0;

  border-radius: inherit;

  background:
    linear-gradient(90deg,
      var(--navy),
      var(--lime));

  transition:
    width .35s ease;

}



/* =========================================================
   NOTICE
========================================================= */

.notice {

  margin:
    0 0 22px;

  padding:
    13px 16px;

  border-radius: 12px;

  font-size: 13px;

  font-weight: 700;

  text-align: center;

}



.notice.success {

  background: #edfbdc;

  color: #315c0e;

  border:
    1px solid #c8ec9a;

}



.notice.warning {

  background: #fff8df;

  color: #745b00;

  border:
    1px solid #f1df92;

}



.notice.error {

  background: #fff0f0;

  color: #8a2222;

  border:
    1px solid #f1b4b4;

}



/* =========================================================
   LIVE RESULT
========================================================= */

.live-result {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  margin-top: 24px;

  color: var(--muted);

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: .08em;

}



.live-dot {

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background:
    var(--lime-dark);

  box-shadow:
    0 0 0 4px rgba(115, 185, 43, .12);

}



/* =========================================================
   FOOTER
========================================================= */

.footer-actions {

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 15px;

  padding-top: 18px;

  margin-top: 12px;

  border-top:
    1px solid var(--border);

}



.footer-actions p {

  margin: 0;

  color: var(--muted);

  font-size: 11px;

}



.footer-actions strong {

  color: var(--navy);

}



/* =========================================================
   RESET
========================================================= */

.reset-area {

  margin-top: 28px;

  padding-top: 22px;

  border-top:
    1px solid var(--border);

  text-align: center;

}



.reset-voting-btn {

  border:
    1px solid #d9b1b1;

  background: #fff;

  color: #9a3333;

  border-radius: 10px;

  padding:
    10px 16px;

  font-size: 12px;

  font-weight: 700;

  cursor: pointer;

  transition:
    all .2s ease;

}



.reset-voting-btn:hover {

  background: #fff3f3;

  border-color:
    #c98282;

}



.reset-area p {

  margin:
    9px 0 0;

  color: var(--muted);

  font-size: 10px;

}



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

.modal {

  position: fixed;

  inset: 0;

  z-index: 1000;

  display: none;

  align-items: center;

  justify-content: center;

  padding: 20px;

}



.modal.show {

  display: flex;

}



.modal-backdrop {

  position: absolute;

  inset: 0;

  background:
    rgba(4, 17, 42, .78);

  backdrop-filter:
    blur(5px);

}



.modal-dialog {

  position: relative;

  z-index: 1;

  width:
    min(980px,
      100%);

  max-height:
    calc(100vh - 40px);

  overflow-y: auto;

  border-radius: 24px;

  background: #fff;

  box-shadow:
    0 30px 90px rgba(0, 0, 0, .3);

  padding: 28px;

}



.modal-close {

  position: absolute;

  top: 14px;

  right: 16px;

  width: 38px;

  height: 38px;

  border: 0;

  border-radius: 50%;

  background: #eef2f6;

  color: var(--navy);

  font-size: 25px;

  line-height: 1;

  cursor: pointer;

}



.modal-close:hover {

  background:
    #e1e7ef;

}



.modal-header {

  padding-right: 45px;

  margin-bottom: 20px;

}



.modal-header .eyebrow {

  color:
    var(--navy-2);

}



.modal-header h2 {

  margin: 0;

  color: var(--navy);

  font-size:
    clamp(24px,
      4vw,
      34px);

  letter-spacing: -.04em;

}



.modal-header p:last-child {

  margin:
    7px 0 0;

  color: var(--muted);

  font-size: 13px;

}



/* =========================================================
   DETAIL FRONT / BACK
========================================================= */

.detail-grid {

  display: grid;

  grid-template-columns:
    repeat(2,
      minmax(0, 1fr));

  gap: 18px;

}



.detail-view {

  position: relative;

  overflow: hidden;

  border:
    1px solid var(--border);

  border-radius: 18px;

  background:
    #f0f3f6;

}



.detail-view img {

  display: block;

  width: 100%;

  height: auto;

}



.detail-label {

  position: absolute;

  z-index: 2;

  top: 12px;

  left: 12px;

  padding:
    8px 11px;

  border-radius: 9px;

  background:
    rgba(8, 38, 94, .92);

  color: #fff;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .15em;

}



/* =========================================================
   MODAL VOTE
========================================================= */

.modal-vote-form {

  margin-top: 22px;

  padding: 18px;

  border-radius: 16px;

  background:
    #f5f7fa;

  border:
    1px solid var(--border);

}



.modal-vote-title {

  margin-bottom: 11px;

  color: var(--navy);

  font-size: 14px;

  font-weight: 800;

}



.modal-vote-row {

  display: flex;

  gap: 10px;

}



.modal-name-input {

  flex: 1;

  min-width: 0;

  border:
    1px solid var(--border);

  background: #fff;

  color: var(--ink);

  border-radius: 11px;

  padding:
    12px 13px;

  font-size: 13px;

  outline: none;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;

}



.modal-name-input::placeholder {

  color: #9aa4b5;

}



.modal-name-input:focus {

  border-color:
    var(--navy-2);

  box-shadow:
    0 0 0 3px rgba(13, 52, 124, .08);

}



.modal-vote-btn {

  flex: 0 0 auto;

  border: 0;

  border-radius: 11px;

  padding:
    12px 18px;

  background:
    var(--lime);

  color: #173b12;

  font-size: 12px;

  font-weight: 800;

  cursor: pointer;

  transition:
    transform .15s ease,
    background .2s ease;

}



.modal-vote-btn:hover {

  background:
    #92df2d;

}



.modal-vote-btn:active {

  transform:
    scale(.97);

}



/* =========================================================
   ALREADY VOTED
========================================================= */

.modal-already-voted {

  margin-top: 22px;

  padding: 14px;

  border-radius: 13px;

  background:
    #edfbdc;

  border:
    1px solid #c8ec9a;

  color:
    #315c0e;

  text-align: center;

  font-size: 12px;

  font-weight: 800;

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

  .poll-grid {

    grid-template-columns:
      repeat(3,
        minmax(0, 1fr));

  }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {


  .hero {

    padding:
      26px 18px 38px;

  }



  .brand {

    align-items: flex-start;

    gap: 14px;

  }



  .brand img {

    width: 70px;

    height: 70px;

    border-radius: 16px;

  }



  .subtitle {

    font-size: 13px;

  }



  .tagline {

    margin-top: 20px;

    line-height: 1.8;

  }



  .poll-section {

    width:
      min(100% - 20px,
        1180px);

    padding: 18px;

    border-radius: 20px;

  }



  .section-head {

    align-items: flex-start;

  }



  .vote-total {

    text-align: left;

  }



  .poll-grid {

    grid-template-columns:
      repeat(2,
        minmax(0, 1fr));

    gap: 11px;

  }



  .card-body {

    padding: 13px;

  }



  .card h3 {

    font-size: 16px;

  }



  .desc {

    min-height: 52px;

  }



  .live-result {

    text-align: center;

    line-height: 1.5;

  }



  .footer-actions {

    align-items: flex-start;

    flex-direction: column;

  }



  .name-input {

    font-size: 13px;

    padding: 12px;

  }



  .reset-voting-btn {

    width: 100%;

  }



  /* MODAL */

  .modal {

    padding: 10px;

  }



  .modal-dialog {

    max-height:
      calc(100vh - 20px);

    border-radius: 20px;

    padding: 18px;

  }



  .detail-grid {

    grid-template-columns: 1fr;

    gap: 12px;

  }



  .modal-header {

    margin-bottom: 14px;

  }



  .detail-view img {

    width: 100%;

  }



  .modal-vote-row {

    flex-direction: column;

  }



  .modal-name-input {

    width: 100%;

  }



  .modal-vote-btn {

    width: 100%;

  }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

  .poll-grid {

    grid-template-columns: 1fr;

  }



  .kit-image {

    aspect-ratio: .9 / 1;

  }

}

/* =========================================================
   TOP 1 JERSEY
   ========================================================= */

.top-jersey {
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #d6e6c2;
  background:
    linear-gradient(135deg,
      #f8fff1 0%,
      #ffffff 55%,
      #f0f8e9 100%);
  position: relative;
  overflow: hidden;
}

.top-jersey::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(150, 232, 73, 0.10);
  right: -80px;
  top: -90px;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 20px;
  background: #0a3474;
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 2;
}

.top-jersey-content {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.top-jersey-image {
  width: 145px;
  height: 170px;
  flex-shrink: 0;
  background: #edf0f2;
  border-radius: 10px;
  overflow: hidden;
}

.top-jersey-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.top-jersey-info {
  flex: 1;
  min-width: 0;
}

.top-eyebrow {
  margin-bottom: 5px;
  color: #7a8b9e;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 2px;
}

.top-jersey-info h3 {
  margin-bottom: 7px;
  color: #132b50;
  font-size: 18px;
  font-weight: 800;
}

.top-jersey-info>p {
  color: #718096;
  font-size: 9px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.top-jersey-info>p strong {
  color: #0b3475;
}

.top-result {
  max-width: 400px;
}

.top-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.top-result-row strong {
  color: #0b3475;
  font-size: 15px;
  font-weight: 800;
}

.top-result-row span {
  color: #52667f;
  font-size: 10px;
  font-weight: 800;
}

.top-bar {
  width: 100%;
  height: 7px;
  border-radius: 20px;
  background: #dfe7d8;
  overflow: hidden;
}

.top-bar span {
  display: block;
  height: 100%;
  min-width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg,
      #79cf35,
      #b0f66e);
  transition: width 0.5s ease;
}

.top-jersey.empty {
  text-align: center;
  background: #f8fafc;
  border-color: #e1e7ef;
}

.top-empty-text {
  padding: 14px 5px 5px;
  color: #718096;
  font-size: 9px;
}


/* =========================================================
   TOP 1 RESPONSIVE
   ========================================================= */

@media (max-width: 600px) {

  .top-jersey {
    padding: 12px;
  }

  .top-jersey-content {
    gap: 12px;
  }

  .top-jersey-image {
    width: 105px;
    height: 135px;
  }

  .top-jersey-info h3 {
    font-size: 15px;
  }

  .top-jersey-info>p {
    font-size: 8px;
    margin-bottom: 9px;
  }

  .top-result-row strong {
    font-size: 13px;
  }

  .top-result-row span {
    font-size: 9px;
  }
}


@media (max-width: 380px) {

  .top-jersey-content {
    align-items: flex-start;
  }

  .top-jersey-image {
    width: 90px;
    height: 120px;
  }

  .top-jersey-info h3 {
    font-size: 13px;
  }

  .top-jersey-info>p {
    font-size: 7px;
  }
}

/* =========================================================
   DAFTAR PEMILIH
   ========================================================= */

.voter-list-section {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e3e8ee;
}

.voter-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}

.voter-list-head h3 {
  margin-top: 3px;
  color: #172d4d;
  font-size: 14px;
  font-weight: 800;
}

.show-voters-btn {
  border: 1px solid #9aa7b7;
  background: #fff;
  color: #26384f;
  border-radius: 6px;
  padding: 8px 11px;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.show-voters-btn:hover {
  background: #082f6d;
  border-color: #082f6d;
  color: #fff;
}

.voter-list {
  margin-top: 10px;
}

.voter-groups {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.voter-group {
  padding: 10px 12px;
  background: #f7f9fb;
  border: 1px solid #e1e6ec;
  border-radius: 8px;
}

.voter-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: #263b58;
  font-size: 8px;
  font-weight: 700;
}

.voter-group-head strong {
  color: #0b3475;
  white-space: nowrap;
}

.voter-names {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.voter-name-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #d8e0e8;
  color: #52657d;
  font-size: 8px;
}

.voter-empty {
  padding: 14px;
  text-align: center;
  border-radius: 8px;
  background: #f7f9fb;
  border: 1px solid #e1e6ec;
  color: #7b899b;
  font-size: 9px;
}


/* =========================================================
   DAFTAR PEMILIH - MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .voter-list-head {
    align-items: flex-start;
  }

  .voter-list-head h3 {
    font-size: 12px;
  }

  .show-voters-btn {
    padding: 7px 9px;
    font-size: 7px;
  }

  .voter-group {
    padding: 9px;
  }

  .voter-group-head {
    font-size: 7px;
  }

  .voter-name-chip {
    font-size: 7px;
    min-height: 22px;
    padding: 4px 7px;
  }
}

/* =========================================================
   TOP JERSEY / TOP 1 / TIE
   ========================================================= */

.top-jersey {
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #d7e7c4;
  background: linear-gradient(135deg,
      #f8fff2 0%,
      #ffffff 55%,
      #f1f9e9 100%);
  position: relative;
  overflow: hidden;
}

.top-jersey::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(143, 225, 65, 0.10);
  right: -100px;
  top: -120px;
  pointer-events: none;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 20px;
  background: #082f6d;
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 2;
}

.top-heading {
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.top-eyebrow {
  margin-bottom: 5px;
  color: #72859b;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 2px;
}

.top-description {
  color: #65768c;
  font-size: 9px;
  line-height: 1.5;
}

.top-description strong {
  color: #0b3475;
}


/* =========================================================
   TOP JERSEY ITEMS
   ========================================================= */

.top-jersey-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 13px;
  position: relative;
  z-index: 2;
}

.top-jersey-grid.is-tie {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.top-jersey-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #dce8d3;
}

.top-jersey-image {
  width: 125px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 9px;
  overflow: hidden;
  background: #edf0f2;
}

.top-jersey-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.top-jersey-info {
  flex: 1;
  min-width: 0;
}

.top-kit-number {
  color: #7b8da2;
  font-size: 7px;
  font-weight: 800;
  margin-bottom: 4px;
}

.top-jersey-info h3 {
  margin-bottom: 11px;
  color: #132b50;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.top-result {
  width: 100%;
}

.top-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.top-result-row strong {
  color: #0b3475;
  font-size: 14px;
  font-weight: 800;
}

.top-result-row span {
  color: #52667f;
  font-size: 9px;
  font-weight: 800;
}

.top-bar {
  width: 100%;
  height: 7px;
  border-radius: 20px;
  background: #dfe8d8;
  overflow: hidden;
}

.top-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,
      #79cf35,
      #b0f66e);
  transition: width 0.5s ease;
}


/* =========================================================
   BELUM ADA VOTE
   ========================================================= */

.top-jersey.empty {
  text-align: center;
  background: #f8fafc;
  border-color: #e1e7ef;
}

.top-empty-text {
  padding: 13px 5px 3px;
  color: #718096;
  font-size: 9px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .top-jersey {
    padding: 12px;
  }

  .top-jersey-grid.is-tie {
    grid-template-columns: 1fr;
  }

  .top-jersey-item {
    gap: 10px;
    padding: 8px;
  }

  .top-jersey-image {
    width: 95px;
    height: 125px;
  }

  .top-jersey-info h3 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .top-result-row strong {
    font-size: 12px;
  }

  .top-result-row span {
    font-size: 8px;
  }

  .top-description {
    font-size: 8px;
  }
}


@media (max-width: 380px) {

  .top-jersey-image {
    width: 80px;
    height: 110px;
  }

  .top-jersey-info h3 {
    font-size: 11px;
  }

  .top-result-row strong {
    font-size: 11px;
  }
}