@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

@font-face {
    font-family: 'good_timesregular';
    src: url('fonts/good_times_rg-webfont.woff2') format('woff2'),
         url('fonts/good_times_rg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
}

/* BUTTONS */
.btn {
  padding: 12px 24px;
  border-radius: 0px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.primary {
  background: #FFF569;
  color: #101010;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  max-width: fit-content;
  text-decoration: none;
}

.secondary {
  border-radius: 30px;
  background:#FFF569;
  box-shadow: 0 4px 20px 0 rgba(255, 245, 105, 0.60);
  color: #000;
  font-family: 'good_timesregular';
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #262626;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: #f5e94c;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  padding: 0px 40px 95px 40px;
  gap: 40px;
}
.down-hero .hero{
  padding: 0px 40px 0px 40px;
}
.down-hero .header {
  justify-content: center;
}
.dwbld-btns{
  display: flex;
  gap: 20px;
}
.down-hero  .hero-image img {
  max-width: 80%;
  height: 100%;
  object-fit: contain;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-sub {
  margin-bottom: -85px;
}

.hero h1 {
  font-size:65px;
  margin-bottom: 20px;
  font-family: 'good_timesregular';
}

.tagline {
  margin-bottom: 0px;
  font-family: "Figtree", sans-serif;
  color: #FFF569;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LEADERBOARD */
.leaderboard {
  padding: 80px 40px;
  /*background: radial-gradient(circle, #111, #000);*/
  background: url('img/leaderboard-bg.png') no-repeat;
}

.leaderboard h2 {
  text-align: center;
  margin-bottom:55px;
  color: #FFF;
  font-family: 'good_timesregular';
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
}

/* PODIUM */
.podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 60px;
  margin-top: 100px;
  background: url('img/podium.svg') no-repeat;
  background-position: center bottom;
  padding-bottom: 190px;
}

.podium-item {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}
.podium-item img.rnk-bdge{
  position: absolute;
  top: 110px;
  left: 58px;
  height: 36px;
  width: 36px;
  margin: 0;
  border: none !important;
}
.podium-item img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.podium-item span {
  font-size: 18px;
  display: block;
  margin-top: 10px;
  color: #fff;
  font-weight: 500;
}

.podium-item small {
  font-size: 13px;
  display: block;
  margin-top: 5px;
  color: #fff;
  font-weight: 300;
}
.podium-item.first img{
  border:3px solid #FFF569;
}

.first {
  transform: translateY(-65px);
}
.third {
  transform: translateY(55px);
}

.rank-data{
  display: flex;
  justify-content: space-between;
  border-radius: 12px;
  border: 1px solid #404040;
  background: #262626;
  padding: 6px 16px;
  align-items: center;
  margin-bottom: 8px;
}
.rank-data-heding{
  display: flex;
  justify-content: space-between;
  padding: 6px 16px;
  align-items: center;
  margin-bottom: 8px;
}
.rank-data p{
  width: 25%;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
}
.rank-data-heding p{
  width: 25%;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
}
.rank-data p span{
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  width: 32px;
  height: 32px;
  background: #1F77FF;
  border-radius: 50%;
  padding: 8px;
  display: block;
  text-align: center;
}
.rank-data p img{
  vertical-align: middle;
}

/* TABLE */
.table-wrapper {
  overflow-x: auto;
  max-width: 1165px;
  margin: 0 auto;
}

/* FOOTER */
.footer {  
  background: #111;
}
.container{
    margin: 0 auto;
    width: 1165px;
}
.footer .wraper{
    display: flex;
    justify-content: space-between;
    padding:100px 0 50px;
    gap: 40px;    
    margin: 0 auto;
}

.footer .footer-left p{
  color: #B4BBC5;
  font-family: Figtree;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}
.footer-left{
  width: 25%;
}
.footer-links h4{
  display: block;
  color: #fff;
  text-decoration: none;
  margin-top: 8px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 25px;
}

.footer a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: lighter;
}
.social-links{
  display: flex;
}
.footer a:hover {
  color: #f5e94c;
}
.copyrght{
  border-top: 1px solid #676767;
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding: 25px 0;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 25px;
}

.page-btn, .nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #2b2b2b;
  border: 1px solid #3a3a3a;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Active page */
.page-btn.active {
  border: 2px solid #2f80ff;
  background: #151515;
  color: #fff;
}

/* Dots */
.page-btn.dots {
  cursor: default;
}

/* Hover */
.page-btn:not(.active):not(.dots):hover,
.nav-btn:hover {
  background: #3a3a3a;
}

/* Arrow buttons */
.nav-btn {
  font-size: 18px;
}



/* RESPONSIVE */
@media (max-width: 1500px) {
.down-hero  .hero-image img {
  max-width: 100%;
}
}

@media (max-width: 1200px) {
  .container{
    margin: 0 auto;
    width: auto;
    max-width: 100%;
}
.down-hero .hero .hero-image{
  display: none;
}
.down-hero .hero {
  display: flex;
  justify-content: center;
}
.down-hero .tagline, .down-hero .hero h1{
  text-align: center;
}
.dwbld-btns {
  justify-content: center;
}

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

  .hero h1 {
    font-size: 36px;
  }

  /*.podium {
    flex-direction: column;
    align-items: center;
  }*/

  .footer {
    flex-direction: column;
  }
  .hero-content {
    text-align: center;
}
.tagline, .hero h1{
  text-align: left;
}

}
@media (max-width: 767px) {
  .hero {
  padding: 0px 20px 55px 20px;
}
.footer .wraper {
  display: block;
  padding: 50px 0 30px;
  text-align: center;
}
.leaderboard h2 {
  font-size: 30px;
}
.hero-sub {
  width: 80%;
  margin-top: 50px;
  margin-bottom: -55px;
}
.hero-sub img{
  max-width: 100%;
}
.podium-item img {
  width: 80px;
  height: 80px;
}
.podium-item {
  padding: 10px;
}
.podium-item span {
  font-size: 15px;
}
.podium-item img.rnk-bdge {
  top: 78px;
  left: 40px;
  height: 30px;
  width: 30px;
}
.podium {
  padding-bottom:0px;
  background: none;
}
.third {
  transform: translateY(25px);
}
.leaderboard {
  padding: 40px 20px;
}
.footer-left {
  width: auto;
}
.footer-links{
  margin-top: 30px;
}
.social-links {
  justify-content: center;
}
.copyrght {
  font-size: 14px;
}
.header {
  justify-content: center;
}
.secondary {
  display: none;
}
.footer .footer-left p {
  font-size: 18px;
  line-height: 28px;
}
.dwbld-btns img{
  max-width: 100%;
}
.rank-data p, .rank-data-heding p {
width: auto;
}
.rank-data p:nth-child(2){
  width: 50%;
}
.rank-data-heding p:nth-child(2){
  width: 50%;
}

}