

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

.sc-wrap {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: transparent;
  width: 100%;
  max-width: 860px;
  box-sizing: border-box;
  container-type: inline-size;
  container-name: sc;
}

.sc-wrap *, .sc-wrap *::before, .sc-wrap *::after { box-sizing: border-box; }


.sc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.sc-row {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #e8edf3;
  border-radius: 12px;
  overflow: hidden;
  min-height: 80px;
  transition: box-shadow 0.16s, border-color 0.16s;
}

.sc-row:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #d0d8e4;
}

.sc-row--top1 { border-color: #f0b429; border-width: 2px; }


.sc-num {
  width: 40px;
  flex-shrink: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #c0cad4;
  padding: 0 2px;
}
.sc-row--top1 .sc-num { color: #f0b429; }
.sc-row--top2 .sc-num { color: #aab4be; }
.sc-row--top3 .sc-num { color: #c07d4a; }


.sc-logo-wrap {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  background: #f4f6f8;
  border-left: 1px solid #e8edf3;
  border-right: 1px solid #e8edf3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sc-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sc-logo-fallback {
  font-size: 11px;
  font-weight: 800;
  color: #4a5568;
}


.sc-info {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
}

.sc-toppick {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0b429;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sc-name-link {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0f1923;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  margin-bottom: 3px;
  transition: color 0.15s;
}
.sc-name-link:hover { color: #1a56db; }

.sc-bonus-line {
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.sc-stars-wrap {
  flex-shrink: 0;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.sc-stars {
  display: flex;
  gap: 2px;
}


.sc-star {
  width: 14px;
  height: 14px;
  fill: #f0b429;
}


.sc-star--empty {
  fill: #e2e8f0;
}


.sc-star-partial-wrap {
  position: relative;
  width: 14px;
  height: 14px;
}
.sc-star-partial-wrap .sc-star--bg {
  position: absolute;
  top: 0; left: 0;
  fill: #e2e8f0;
}
.sc-star-partial-wrap .sc-star--fg {
  position: absolute;
  top: 0; left: 0;
  fill: #f0b429;
}

.sc-score-label {
  font-size: 11px;
  font-weight: 600;
  color: #9aa5b1;
  white-space: nowrap;
}


.sc-btn-cell {
  flex-shrink: 0;
  padding: 0 16px 0 8px;
}

.sc-btn {
  display: inline-block;
  background: #0d9488;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.15s;
}
.sc-btn:hover {
  background: #0f766e;
  transform: translateY(-1px);
  color: #fff !important;
}




@container sc (max-width: 480px) {
  .sc-stars-wrap { display: none; }
  .sc-num { width: 30px; font-size: 13px; }
  .sc-logo-wrap { width: 60px; height: 60px; }
  .sc-info { padding: 10px 10px; }
  .sc-name-link { font-size: 13px; }
  .sc-bonus-line { font-size: 12px; }
  .sc-btn { font-size: 12px; padding: 8px 14px; }
  .sc-btn-cell { padding: 0 10px 0 6px; }
}


@container sc (min-width: 481px) and (max-width: 640px) {
  .sc-stars-wrap { display: none; }
  .sc-btn { font-size: 13px; padding: 9px 18px; }
}
