:root{
  --hof-black:#07090d;
  --hof-gold:#f3b51b;
  --hof-gold-dark:#c98900;
  --hof-border:#e9edf3;
  --hof-muted:#667085;
  --hof-bg:#fffaf2;
  --hof-card:#ffffff;
  --hof-shadow:0 18px 45px rgba(17,24,39,.08);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial,"Heebo",sans-serif;
  background:#fff;
  color:#111827;
}

/* demo header */
.hof-site-header{
  height:72px;
  background:linear-gradient(180deg,#07090d,#050609);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:60px;
  font-size:16px;
  position:relative;
}

.hof-site-header a{
  color:#fff;
  text-decoration:none;
  opacity:.88;
}

.hof-site-header a.active{
  color:var(--hof-gold);
  font-weight:700;
  border-bottom:3px solid var(--hof-gold);
  padding-bottom:22px;
}

.hof-logo{
  position:absolute;
  left:60px;
  top:18px;
  width:38px;
  height:38px;
  border-radius:50%;
  border:2px solid var(--hof-gold);
  color:var(--hof-gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

/* page */
.hof-page{
  position:relative;
  overflow:hidden;
  background:
          radial-gradient(circle at top,#fff7df 0,#fff 34%,#fff 100%);
  min-height:100vh;
  padding:52px 24px 70px;
}

.hof-page::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:230px;
  background:
          radial-gradient(circle at 6% 20%, rgba(243,181,27,.85) 0 4px, transparent 5px),
          radial-gradient(circle at 14% 42%, rgba(243,181,27,.45) 0 7px, transparent 8px),
          radial-gradient(circle at 22% 14%, rgba(243,181,27,.7) 0 5px, transparent 6px),
          radial-gradient(circle at 34% 28%, rgba(243,181,27,.35) 0 6px, transparent 7px),
          radial-gradient(circle at 51% 16%, rgba(243,181,27,.75) 0 5px, transparent 6px),
          radial-gradient(circle at 68% 35%, rgba(243,181,27,.45) 0 7px, transparent 8px),
          radial-gradient(circle at 78% 13%, rgba(243,181,27,.8) 0 5px, transparent 6px),
          radial-gradient(circle at 92% 38%, rgba(243,181,27,.5) 0 7px, transparent 8px);
  opacity:.8;
  pointer-events:none;
}

.hof-page::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:300px;
  background-image:
          linear-gradient(115deg, transparent 0 44%, rgba(243,181,27,.55) 45% 55%, transparent 56%),
          linear-gradient(70deg, transparent 0 42%, rgba(243,181,27,.35) 43% 57%, transparent 58%);
  background-size:140px 80px,180px 95px;
  opacity:.22;
  pointer-events:none;
}

.hof-container{
  width:min(1480px,100%);
  margin:0 auto;
  position:relative;
  z-index:1;
}

.hof-hero{
  text-align:center;
  margin-bottom:28px;
}

.hof-title-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:26px;
}

.hof-laurel{
  color:var(--hof-gold);
  font-size:56px;
  line-height:1;
}

.hof-hero h1{
  margin:0;
  font-size:56px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-1px;
}

.hof-hero p{
  margin:10px 0 0;
  font-size:20px;
  color:#344054;
}

.hof-filters{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
  margin:36px 0 26px;
}

.hof-filter{
  background:#fff;
  border:1px solid var(--hof-border);
  border-radius:14px;
  height:68px;
  padding:10px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 12px 32px rgba(15,23,42,.06);
}

.hof-filter span{
  display:block;
  color:#667085;
  font-size:13px;
  margin-bottom:2px;
}

.hof-filter strong{
  display:block;
  font-size:16px;
  color:#101828;
}

.hof-filter i{
  font-style:normal;
  font-size:22px;
  opacity:.75;
}

.hof-tabs{
  background:#fff;
  border:1px solid var(--hof-border);
  border-radius:18px;
  padding:12px;
  display:flex;
  align-items:center;
  gap:10px;
  overflow-x:auto;
  box-shadow:var(--hof-shadow);
  margin-bottom:22px;
}

.hof-tab{
  border:0;
  background:transparent;
  border-radius:14px;
  padding:16px 24px;
  font-size:16px;
  font-weight:700;
  color:#1f2937;
  cursor:pointer;
  white-space:nowrap;
  border-bottom:3px solid transparent;
}

.hof-tab.active{
  background:#050609;
  color:#fff;
}

.hof-tab.gold-line{
  border-bottom-color:var(--hof-gold);
  color:#000;
}

.hof-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
}

.hof-panel{
  background:#fff;
  border:1px solid var(--hof-border);
  border-radius:22px;
  box-shadow:var(--hof-shadow);
  padding:28px;
}

.hof-panel-title{
  text-align:center;
  margin:0 0 30px;
  font-size:26px;
  font-weight:900;
}

.hof-podium{
  min-height:360px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:18px;
  padding-top:30px;
}

.hof-place{
  width:31%;
  min-width:165px;
  border:1px solid var(--hof-border);
  border-radius:18px 18px 10px 10px;
  text-align:center;
  position:relative;
  padding:26px 18px 22px;
  background:#fff;
  box-shadow:0 12px 34px rgba(15,23,42,.07);
}

.hof-place::after{
  content:attr(data-rank);
  position:absolute;
  left:-1px;
  right:-1px;
  bottom:-58px;
  height:62px;
  border-radius:0 0 12px 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
  color:#fff;
  font-weight:900;
  text-shadow:0 2px 5px rgba(0,0,0,.25);
}

.hof-place.first{
  min-height:330px;
  border-color:#efbd32;
  background:linear-gradient(180deg,#fff6d9 0,#fff 88%);
  transform:translateY(-14px);
}

.hof-place.first::after{
  background:linear-gradient(180deg,#f8ca48,#c98c07);
}

.hof-place.second{
  min-height:275px;
  background:linear-gradient(180deg,#f4f6f9 0,#fff 90%);
}

.hof-place.second::after{
  background:linear-gradient(180deg,#d7dbe2,#949aa4);
}

.hof-place.third{
  min-height:255px;
  background:linear-gradient(180deg,#fff0e8 0,#fff 90%);
}

.hof-place.third::after{
  background:linear-gradient(180deg,#df9a6e,#a95c32);
}

.hof-medal{
  position:absolute;
  top:16px;
  right:16px;
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background:#f7c63d;
  box-shadow:0 4px 12px rgba(243,181,27,.35);
}

.hof-crown{
  position:absolute;
  top:-34px;
  left:50%;
  transform:translateX(-50%);
  font-size:42px;
}

.hof-avatar{
  width:96px;
  height:96px;
  border-radius:50%;
  object-fit:cover;
  border:5px solid #fff;
  box-shadow:0 10px 24px rgba(15,23,42,.16);
  margin-bottom:16px;
}

.hof-place h3{
  margin:0 0 7px;
  font-size:21px;
  font-weight:900;
}

.hof-place p{
  margin:0 0 8px;
  color:#475467;
  font-size:15px;
}

.hof-score{
  font-size:23px;
  font-weight:900;
  margin:12px 0 8px;
}

.hof-score small{
  font-size:15px;
  font-weight:400;
  color:#344054;
}

.hof-extra-title{
  text-align:center;
  margin:72px 0 18px;
  font-size:18px;
  font-weight:900;
}

.hof-extra-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.hof-extra-card{
  border:1px solid var(--hof-border);
  border-radius:16px;
  padding:16px 12px;
  text-align:center;
  background:#fff;
}

.hof-extra-card.purple{border-color:#c7b7f0;background:#fbf9ff}
.hof-extra-card.blue{border-color:#abc9ff;background:#f7fbff}
.hof-extra-card.green{border-color:#a9dbc0;background:#f7fff9}
.hof-extra-card.orange{border-color:#ffc28a;background:#fffaf5}

.hof-extra-card .icon{
  font-size:26px;
  display:block;
  margin-bottom:8px;
}

.hof-extra-card strong{
  display:block;
  font-size:16px;
  margin-bottom:8px;
}

.hof-extra-card p{
  margin:0;
  color:#475467;
  font-size:14px;
}

.hof-table-wrap{
  overflow:auto;
}

.hof-table{
  width:100%;
  border-collapse:collapse;
  min-width:620px;
}

.hof-table th,
.hof-table td{
  border-bottom:1px solid #edf0f4;
  padding:14px 10px;
  text-align:right;
  font-size:15px;
}

.hof-table th{
  color:#667085;
  font-size:13px;
  font-weight:700;
}

.hof-person{
  display:flex;
  align-items:center;
  gap:10px;
}

.hof-person img{
  width:38px;
  height:38px;
  border-radius:50%;
  object-fit:cover;
}

.hof-person strong{
  font-weight:900;
}

.hof-row-rank{
  width:30px;
  height:30px;
  border-radius:50%;
  background:#f5f6f8;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.hof-row-rank.top{
  background:#fff0c9;
  color:#b77900;
}

.hof-stars{
  color:#111827;
  font-weight:900;
}

.hof-stars::before{
  content:"★ ";
  color:var(--hof-gold);
}

.hof-more{
  margin:28px auto 0;
  height:56px;
  width:min(420px,100%);
  border:2px solid var(--hof-gold);
  background:#fff;
  border-radius:14px;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

@media(max-width:1120px){
  .hof-layout{grid-template-columns:1fr}
  .hof-filters{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:760px){
  .hof-site-header{display:none}
  .hof-page{padding:34px 14px}
  .hof-title-row{gap:10px}
  .hof-laurel{font-size:34px}
  .hof-hero h1{font-size:36px}
  .hof-hero p{font-size:16px}
  .hof-filters{grid-template-columns:1fr}
  .hof-filter{height:62px}
  .hof-panel{padding:18px}
  .hof-podium{flex-direction:column;align-items:center;min-height:auto;padding-top:10px;gap:76px}
  .hof-place,.hof-place.first,.hof-place.second,.hof-place.third{
    width:100%;
    min-height:auto;
    transform:none;
  }
  .hof-extra-title{margin-top:76px}
  .hof-extra-grid{grid-template-columns:1fr}
}