@font-face {
  font-family: "Helvetica Now";
  src: url("../fonts/HelveticaNowDisplay-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Now" format("woff");
  src: url("../fonts/HelveticaNowDisplay-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  background: #050f19 url("../img/bg_overlay.svg") no-repeat fixed center;
  background-size: contain;
}

body::-webkit-scrollbar {
  width: 14px;
}

body::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 100px;
}

body::-webkit-scrollbar-thumb {
  background: #7D8AB0;
  border-radius: 100px;
  border: 3px solid transparent;
  background-clip: padding-box;
}

body::-webkit-scrollbar-thumb:hover {
  background: rgba(219, 229, 255, 0.7568627451);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 12vh;
  padding: 0.6em 4em 0.6em 6em;
  color: #DCE7FE;
}

.nav .nav-logo {
  height: 100%;
}

.nav .nav-logo img {
  height: 100%;
  width: auto;
}

.nav .nav-burger-toggle {
  display: none;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 16px;
  background-color: #293045;
  color: #DCE7FE;
  font-weight: bold;
  transition: 0.15s;
  cursor: pointer;
  user-select: none;
}

.nav .nav-burger-toggle:hover {
  scale: 1.2;
}

.nav .nav-burger-toggle:active {
  scale: 0.8;
}

.nav .nav-links {
  padding: 0.6em 0 0.6em 0;
  display: flex;
  flex-direction: row;
  gap: 1.5em;
  margin-left: auto;
  font-size: 1.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav .nav-links .nav-link {
  padding: 0.8em;
  transition: 0.1s;
  user-select: none;
}

.nav .nav-links .nav-link:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.nav .nav-links .nav-link:active {
  transform: scale(0.9);
  opacity: 0.8;
}

.nav .nav-links .nav-active {
  font-weight: bold;
}

.nav .nav-links .nav-active span {
  position: relative;
}

.nav .nav-links .nav-active span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 110%;
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: linear-gradient(110deg, #2788F7 0%, #0913FF 100%);
}

.nav .nav-profile {
  position: relative;
  margin-left: 1.5em;
}

.nav .nav-profile .nav-profile-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 16px;
  background-color: #293045;
  color: #DCE7FE;
  font-weight: bold;
  transition: 0.15s;
  cursor: pointer;
  user-select: none;
}

.nav .nav-profile .nav-profile-icon:hover {
  scale: 1.2;
}

.nav .nav-profile .nav-profile-icon:active {
  scale: 0.8;
}

.nav .nav-profile .nav-profile-popup {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 1em;
  width: max-content;
  color: #DCE7FE;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 1em;
  z-index: 2;
  opacity: 0;
  transform-origin: top center;
  animation: popup 0.15s forwards;
}

@keyframes popup {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.nav .nav-profile .nav-profile-popup .nav-profile-btn {
  background: #293045;
  color: inherit;
  font-size: 0.9em;
  border: none;
  border-radius: 16px;
  width: 100%;
  transition: 0.15s;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.nav .nav-profile .nav-profile-popup .nav-profile-btn:hover {
  color: rgba(220, 231, 254, 0.7725490196);
  transform: scale(1.1);
}

.nav .nav-profile .nav-profile-popup .nav-profile-btn:active {
  transform: scale(0.9);
}

.nav .nav-profile .nav-profile-popup .nav-profile-btn a {
  padding: 1em 2em;
  width: 100%;
  display: block;
  text-align: center;
}

.nav .nav-profile .nav-profile-popup.nav-popup-hidden {
  display: none;
}

.footer {
  color: rgba(219, 229, 255, 0.7568627451);
  margin-top: 4em;
}

.footer .footer-main {
  background: #293045 url("../img/bg_overlay.svg") no-repeat fixed center;
  background-size: contain;
  padding: 2em 5em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer .footer-main .footer-content {
  display: flex;
  flex-direction: column;
  width: 40%;
  gap: 1em;
  z-index: 2;
}

.footer .footer-main .footer-content .footer-logo {
  height: 3.2em;
}

.footer .footer-main .footer-content .footer-logo img {
  height: 100%;
  width: auto;
}

.footer .footer-main .footer-content .footer-logo img:first-child {
  margin-right: 1em;
}

.footer .footer-main .footer-content .footer-desc {
  font-size: 0.9em;
}

.footer .footer-main .footer-content .footer-socials {
  display: flex;
  flex-direction: row;
  gap: 0.6em;
  color: #DCE7FE;
  font-size: 1.5em;
}

.footer .footer-main .footer-content .footer-socials .footer-social-icon {
  background-color: #050f19;
  width: 1.8em;
  height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: 0.2s;
  cursor: pointer;
}
.footer .footer-main .footer-content .footer-socials .footer-social-icon i{
  transition: .2s;
}

.footer .footer-main .footer-content .footer-socials .footer-social-icon:hover {
  background-color: rgba(219, 229, 255, 0.7568627451);
}
.footer .footer-main .footer-content .footer-socials .footer-social-icon:hover i{
  color: #050f19;
}
.footer .footer-main .footer-content .footer-socials .footer-social-icon:active {
  transform: scale(0.9);
}

.footer .footer-main .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  z-index: 2;
}

.footer .footer-main .footer-links h4 {
  color: #DCE7FE;
  font-size: 1.1em;
  margin-bottom: 0.4em;
}

.footer .footer-main .footer-links .footer-link {
  font-size: 0.9em;
}

.footer .footer-main .footer-links .footer-link span {
  display: inline-block;
  transition: 0.2s;
}

.footer .footer-main .footer-links .footer-link span:hover {
  transform: scale(1.1);
}

.footer .footer-main .footer-links .footer-link span:active {
  transform: scale(0.9);
}

.footer .footer-main .footer-links .footer-active {
  color: #DCE7FE;
  font-size: 1.1em;
}

.footer .footer-main .footer-mascot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
}

.footer .footer-main .footer-mascot img {
  position: absolute;
  height: 100%;
  width: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  mix-blend-mode: overlay;
}

.footer .footer-copyright {
  background: transparent;
  padding: 0.6em 0;
  font-size: 0.8em;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .nav {
    padding: 0.6em 1em 0.6em 3em;
  }

  .nav .nav-links {
    gap: 0.5em;
    font-size: 1em;
  }

  .nav .nav-profile {
    margin-left: 0.5em;
  }

  .footer .footer-main {
    padding: 2em 4em;
  }

  .footer .footer-main .footer-content {
    width: 60%;
  }

  .footer .footer-main .footer-desc {
    display: none;
  }

  .footer .footer-main .footer-mascot {
    display: none;
  }

  .footer .footer-main .footer-links {
    align-items: flex-end;
  }
}

@media screen and (max-width: 768px) {
  .nav {
    padding: 0.6em 2em;
  }

  .nav .nav-links {
    display: none;
    position: absolute;
    top: 12vh;
    right: 2em;
    padding: 1em;
    border-radius: 16px;
    z-index: 3;
    background-color: #293045;
    width: max-content;
    align-items: flex-end;
    flex-direction: column;
  }

  .nav .nav-links-toggled {
    display: flex;
  }

  .nav .nav-burger-toggle {
    margin-left: auto;
    display: flex;
    font-size: 1.5em;
  }

  .nav .nav-profile-icon {
    font-size: 1.5em;
  }

  .footer .footer-main {
    flex-direction: column;
    gap: 2em;
    padding: 2em;
  }

  .footer .footer-main .footer-content {
    width: 100%;
    align-items: center;
  }

  .footer .footer-main .footer-desc {
    display: none;
  }

  .footer .footer-main .footer-mascot {
    display: none;
  }

  .footer .footer-main .footer-links {
    font-size: 1.1em;
    width: 100%;
    align-items: center;
  }
}

@media screen and (max-width: 400px) {
    .hero-cta{
        max-width: 200px;
    }
  .footer .footer-main .footer-content .footer-logo {
    height: 2.6em;
  }
}

.main {
  width: 100%;
  padding: 2em 0;
}

.main .landing {
  height: 84vh;
  padding: 0em 6em 0 6em;
  /* display: flex;
  flex-direction: row; */
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6em;
}
/* 
.hero {
  width: 60%;
} */

.hero .hero-title {
  font-size: 6em;
  font-weight: bold;
  color: #DCE7FE;
}

.hero .hero-title span {
  background: linear-gradient(110deg, #2788F7 0%, #0913FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 100px #0913FF;
}

.hero .hero-desc {
  margin: 1em 0;
  font-size: 1.2em;
  text-align: justify;
  width: 40vw;
  color: rgba(220, 231, 254, 0.7725490196);
}

.hero .hero-quote {
  margin: 3em 0;
  font-size: 1.2em;
  font-style: italic;
  color: rgba(220, 231, 254, 0.7725490196);
}

.hero .hero-quote span {
  color: #0913FF;
}






.hero .hero-cta {
  background: linear-gradient(110deg, #2788F7 0%, #0913FF 100%);
  max-width: 80%;
  color: #DCE7FE;
  display: inline-block;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  box-shadow: 10px 0 80px 2px rgba(9, 19, 255, 0.5), -10px 0 80px 2px rgba(39, 136, 247, 0.5);
  transition: 0.15s;
  user-select: none;
  cursor: pointer;
}
.hero .hero-cta a {
  display: block;
  padding: 0.7em 2.5em;
}
.hero .hero-cta:hover {
  transform: scale(1.1);
  box-shadow: 10px 2px 70px 0px rgba(9, 19, 255, 0.7), -10px 2px 70px 0px rgba(39, 136, 247, 0.7);
}
.hero .hero-cta:active {
  transform: scale(0.9);
  box-shadow: 10px 2px 90px 4px rgba(9, 19, 255, 0.5), -10px 2px 90px 4px rgba(39, 136, 247, 0.5);
}





/*

.hero .hero-cta {
  background: transparent;
  color: #DCE7FE;
  display: inline-block;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  box-shadow: transparent;
  transition: 0.15s;
  user-select: none;
  cursor: pointer;
}

.hero .hero-cta a {
  display: block;
  padding: 0;
}

.hero .hero-cta:hover {
  transform: scale(1.1);
  box-shadow: 0;
}

.hero .hero-cta:active {
  transform: scale(0.9);

}

*/

.mascot {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 0 6em 18em 0; */
  /* height: 100%; */
}

.mascot img {
  display: block;
  margin-bottom: auto;
  width: 72%;
}

.info {
  padding: 0 6%;
  height: min-content;
  display: flex;
  margin-top: 4em;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
}

.info .info-title {
  font-size: 4em;
  font-weight: bold;
  color: #DCE7FE;
}

.info .info-title span {
  background: linear-gradient(110deg, #2788F7 0%, #0913FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 100px #0913FF;
}

.info .info-desc {
  width: 100%;
  margin-bottom: 1em;
  font-size: 1.1em;
  color: rgba(220, 231, 254, 0.7725490196);
}

.info .info-desc p {
  margin-top: 2em;
  text-align:justify;
}

@media screen and (max-width: 1024px) {
  .main .landing {
    display: flex;
    flex-direction: row;
    padding: 4em;
    height: auto;
  }

  .main .landing .hero {
    width: 100%;
  }

  .main .landing .hero .hero-desc {
    width: 100%;
  }

  .main .landing .mascot {
    display: none;
  }

  .main .info {
    padding: 4em;
    height: auto;
  }

  .main .info .info-desc {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .main .landing {
    padding: 4em 2em;
  }

  .main .landing .hero {
    width: 100%;
  
  }

  .main .landing .hero .hero-title {
    font-size: 4em;
  }

  .main .landing .hero .hero-desc {
    font-size: 1.1em;
  }

  .main .landing .hero .hero-quote {
    text-align: center;
    font-size: 1.1em;
  }

  /*.main .landing .hero .hero-cta {*/
  /*  display: block;*/
  /*  !*width: max-content;*!*/
  /*  margin: auto;*/
  /*}*/

  .main .info {
    padding: 4em 2em;
  }

  .main .info .info-title {
    font-size: 3em;
  }

  .main .info .info-desc {
    text-align: justify;
  }
}

.notification-container {
  position: fixed;
  bottom: 10px;
  right: 15px;
  width: 500px;
  max-width: calc(100% - 30px);
}

.notification {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  color: #fff;
  font-size: 16px;
  padding: 15px 20px;
  line-height: 20px;
  margin-bottom: 15px;
  animation: grow 0.5s ease-in forwards;
}

@keyframes grow {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.notification.hide {
  animation: shrink 0.3s ease-out forwards;
}

@keyframes shrink {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}

.notification strong {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.notification-success {
  background-color: #55b559;
}


.countdown-container {
  justify-self: left;
  align-items: center;
  display: flex;
  font-size: 12px;
  width: 100%;
  max-width: 325px;
  justify-content: space-between;
  padding: 5% 0 10% 0;
}

.days-container,
.hours-container,
.minutes-container,
.seconds-container {
    font-size: 18px;
  text-shadow: 0 0 10px #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*background-color: rgba(0, 0, 0, 0.1);*/
 /* border: 5px solid rgba(240, 231, 231, 0.692);*/
 /* width: 40px;*/
  height: 40px;
  border-radius: 10px;
}

.dots-container{
  font-size: 25px;
  text-shadow: 0 0 10px #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5px;
  height: 40px;
}

.days,
.dots,
.hours,
.minutes,
.seconds {
  font-size: 2.5em;
  margin: 0px;
  opacity: 0.8;
  color: white;
}


.days-label,
.dots-lable,
.hours-label,
.minutes-label,
.seconds-label {
  text-transform: uppercase;
  color: white;
  margin-bottom: 5px;
}

/*@media (max-width: 800px) {*/

/*  .countdown-container {*/
/*    justify-self: center;*/
/*  }*/

/*  .days-container,*/
/*  .hours-container,*/
/*  .minutes-container,*/
/*  .seconds-container {*/
/*    font-size: 0.8em;*/
/*    width: 100px;*/
/*    height: 100px;*/
/*  }*/
/*}*/


.cd-container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 10%;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  border-radius: 2px;
}

.cd-container::after {
  content: '';
  display: table;
  clear: both;
}


#cd-timeline {
  position: relative;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;
}

#cd-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25px;

  height: 100%;
  width: 4px;
  background: #0913FF;
}

@media only screen and (min-width: 1170px) {
  #cd-timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }

  #cd-timeline::before {
    left: 50%;
    margin-left: -2px;
  }
}

.cd-timeline-block {
  position: relative;
  margin: 2em 0;
}

.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}

.cd-timeline-block:first-child {
  margin-top: 0;
}

.cd-timeline-block:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 1170px) {
  .cd-timeline-block {
    margin: 4em 0;
  }

  .cd-timeline-block:first-child {
    margin-top: 0;
  }

  .cd-timeline-block:last-child {
    margin-bottom: 0;
  }
}

.cd-timeline-img {
  position: absolute;
  top: 8px;
  left: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;

}

.cd-timeline-img {
  background: #0913FF;

}

@media only screen and (min-width: 1170px) {
  .cd-timeline-img {
    width: 30px;
    height: 30px;
    left: 50%;
    margin-left: -15px;
    margin-top: 15px;
  }
}

.cd-timeline-content {
  position: relative;
  margin-left: 60px;
  margin-right: 30px;
  background: transparent;
  border-radius: 2px;
  padding: 1em;

  .timeline-content-info {
    background: transparent;
    padding: 5px 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.08);
    border-radius: 2px;

    i {
      margin-right: 5px;
    }

    .timeline-content-info-title,
    .timeline-content-info-date {
      width: calc(50% - 2px);
      display: inline-block;
    }

    @media (max-width: 500px) {

      .timeline-content-info-title,
      .timeline-content-info-date {
        display: block;
        width: 100%;
      }
    }
  }
}

.cd-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}

.cd-timeline-content h2 {
  color: rgba(255, 255, 255, .9);
  margin-top: 0;
  margin-bottom: 5px;
}

.cd-timeline-content p,
.cd-timeline-content .cd-date {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-size: 0.8125rem;
}

.cd-timeline-content .cd-date {
  display: inline-block;
}

.cd-timeline-content p {
  margin: 0.25em 0;
  line-height: 1.6;
}



@media only screen and (min-width: 768px) {
  .cd-timeline-content h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .cd-timeline-content p {
    font-size: 16px;
    font-size: 1rem;
  }

  .cd-timeline-content .cd-read-more,
  .cd-timeline-content .cd-date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-timeline-content {
    color: white;
    margin-left: 0;
    padding: 1.6em;
    width: 36%;
    margin: 0 5%
  }

  .cd-timeline-content .cd-date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
    font-size: 16px;
    margin: 3em;
    font-size: 1rem;
  }

  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }

  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;

  }

  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
    float: right;
  }

  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
    left: auto;
    right: 122%;
    text-align: right;
  }
}


.rankings {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 5rem;
}
.rankings .rank-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1rem;
  background-color: #293045;
  border-radius: 16px;
  color: #DCE7FE;
  text-align: center;
  position: relative;
  margin: 1rem 0;
  transition: 0.2s;
}
.rankings .rank-card:hover {
  transform: scale(1.02);
}
.rankings .rank-card:active {
  transform: scale(0.98);
}
.rankings .rank-card .rank-card-mask {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.rankings .rank-card .rank-card-mask .rank-card-acnt {
  position: absolute;
  width: 0;
  height: 0;
  box-shadow: 0 0 200px 40px rgba(31, 104, 249, 0.6862745098);
}
.rankings .rank-card .rank-card-mask .rcbg-tr {
  top: 0;
  right: 5em;
}
.rankings .rank-card .rank-card-mask .rcbg-bl {
  bottom: 0;
  left: 5em;
}
.rankings .rank-card .rank-card-title {
  font-size: 1.2em;
  font-weight: bold;
}
.rankings .rank-card .rank-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rankings .rank-card .rank-card-info .rank-card-contestant {
  font-size: 2em;
}
.rankings .rank-card .rank-card-stars {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.2em;
  font-size: 2.2em;
}
.rankings .rank-card.rank-gold {
  font-size: 1.2rem;
  margin: 0;
  border: 2px solid rgba(255, 202, 9, 0.5);
  box-shadow: 0 0 32px 4px rgba(255, 202, 9, 0.25);
}
.rankings .rank-card.rank-gold .rank-card-title {
  color: #FFCA09;
  background: linear-gradient(110deg, #FFCA09 0%, #FFCA09 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 100px #FFCA09;
}
.rankings .rank-card.rank-gold .rank-card-acnt {
  box-shadow: 0 0 200px 40px #FFCA09;
}
.rankings .rank-card.rank-gold .rank-card-stars {
  color: #FFCA09;
  background: linear-gradient(110deg, #FFCA09 0%, #FFCA09 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px #FFCA09;
}
.rankings .rank-card.rank-silver {
  border: 2px solid rgba(192, 192, 192, 0.5);
  box-shadow: 0 0 32px 4px rgba(192, 192, 192, 0.25);
}
.rankings .rank-card.rank-silver .rank-card-title {
  color: #C0C0C0;
  background: linear-gradient(110deg, #C0C0C0 0%, #C0C0C0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 100px #C0C0C0;
}
.rankings .rank-card.rank-silver .rank-card-acnt {
  box-shadow: 0 0 200px 40px #C0C0C0;
}
.rankings .rank-card.rank-silver .rank-card-stars {
  color: #C0C0C0;
  background: linear-gradient(110deg, #C0C0C0 0%, #C0C0C0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px #C0C0C0;
}
.rankings .rank-card.rank-bronze {
  border: 2px solid rgba(207, 127, 50, 0.5);
  box-shadow: 0 0 32px 4px rgba(207, 127, 50, 0.25);
}
.rankings .rank-card.rank-bronze .rank-card-title {
  color: #CF7F32;
  background: linear-gradient(110deg, #CF7F32 0%, #CF7F32 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 100px #CF7F32;
}
.rankings .rank-card.rank-bronze .rank-card-acnt {
  box-shadow: 0 0 200px 40px #CF7F32;
}
.rankings .rank-card.rank-bronze .rank-card-stars {
  color: #CF7F32;
  background: linear-gradient(110deg, #CF7F32 0%, #CF7F32 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px #CF7F32;
}

@media screen and (max-width: 1024px) {
  .countdown-container {
    justify-self: center;
  }
  .dots-container{
    font-size:18px;
  }
  .days-container,
  .hours-container,
  .minutes-container,
  .seconds-container{
    font-size: 15px;
  }
  .hero-cta{
    width: max-content;
    display: block !important;
    margin: 10% auto auto auto;
  }
  .main {
    padding: 6em 2em 0 2em;
  }
  .main .rankings {
    gap: 2rem;
  }
}

@media screen and (max-height: 650px) {
  .main .info {
    padding-top: 8em;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .main {
    padding: 4em 0 0 0;
    overflow-x: auto;
    font-size: 0.9em;
  }
  .main .leaderboard {
    width: 40em;
  }
  .main .leaderboard .thead {
    padding: 1.5em 2em;
  }
  .main .leaderboard table {
    width: calc(100% - 4em);
  }
  .main .rankings {
    flex-direction: column;
  }
}
