
       
       * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  color: #262626;
}

/* Desktop styles */
.hero-chart-block {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  /* Remove WordPress padding variables */
}

.hero-chart-promos-header {
  background: linear-gradient(180deg, #FDFDFB 0%, #AAAFAD 100%);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
}

.hero-chart-promos-grid {
  display: grid;
  grid-template-columns: 60px 1fr 2fr 140px 140px 160px;
  align-items: center;
}

.promo-th {
  padding: 15px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  color: #262626;
}

.hero-chart-promo {
  position: relative;
  display: block;
  text-decoration: none;
  border-bottom: 2px solid var(--border-color-m);
  background-color: var(--promo-bg-d);
  color: #262626;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, .1);
  font-family: "Poppins", sans-serif;
}

.promo-label {
  background-color: var(--label-bg);
  color: var(--label-color);
  padding: 5px 10px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: -9px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  font-family: "Poppins", sans-serif;
}

.promo-label:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  border-left: 8px solid transparent;
  border-top: 8px solid var(--label-bg);
  clip-path: polygon(-2% -2%, -1% 101%, 100% 100%, 1% 50%, 100% 0%);
}

.has-label {
  padding-top: 15px;
}

.has-label .col-logo {
  padding-top: 22px;
}

.promo-td {
  padding: 15px 10px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.promo-counter {
  font-size: 37px;
  font-weight: 250;
  line-height: 1.15;
  color: #000;
}

.promo-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.col-logo {
  flex: 0 0 16%;
  max-width: 16%;
  text-align: center;
}

/* Fixed desktop logo display */
.promo-logo .desktop-img {
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto 10px !important;
  max-height: 55px !important;
  width: auto !important;
}

.promo-logo .mobile-img {
  display: none;
}

.welcome-text {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: var(--welcome-color);
}

.promo-bonus {
  padding-top: 10px;
  padding-bottom: 30px;
}

.promo-text {
  margin-bottom: 0;
  line-height: 1.25;
  font-family: "Montserrat", sans-serif;
}

.bonus-text {
  font-weight: 700;
  font-size: 16px;
  color: var(--bonus-color);
}

.subbonus-text {
  margin: 3px 0;
  font-size: 14px;
  color: var(--subbonus-color);
}

.subbonus-text-2 {
  margin: 3px 0;
  font-size: 14px;
  color: var(--subbonus-2-color);
}

.stars {
  color: var(--star-color);
  font-size: 24px;
}

.score {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #eaeaea;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background-color: white;
}

.score-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--score-color-d);
}

.score-label {
  font-size: 10px;
  color: #666;
  display: none;
}

.btn {
  display: inline-block;
  text-align: center;
  padding: 12px 25px;
  max-width: 180px;
  width: 100%;
  border-radius: 50px;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .1);
  cursor: pointer;
}

.promo-disclaimer {
  grid-column: 1 / -1;
  padding: 6px 15px;
  font-size: 10px;
  text-align: center;
  color: var(--disclaimer-color);
  background-color: var(--disclaimer-bg);
  cursor: pointer;
  border-top: 1px solid #eaeaea;
  font-family: "Roboto", sans-serif;
}

.promo-disclaimer-full {
  display: none;
  background-color: var(--disclaimer-bg);
  border-top: 1px solid #eaeaea;
  padding: 15px;
  font-size: 12px;
  color: var(--disclaimer-color);
  font-family: "Roboto", sans-serif;
}

.show, .hide {
  font-weight: bold;
}

.hide {
  display: none;
}

/* Hide logo rating and score in desktop view */
.promo-logo .promo-rating,
.promo-logo .promo-score {
  display: none;
}

/* Mobile styles */
@media screen and (max-width: 767px) {
  .hero-chart-block {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-chart-promos-wrapper {
    width: 100%;
  }
  
  .hero-chart-promos-header {
    display: none;
  }
  
  .hero-chart-promo {
    margin-bottom: 2px;
    background: #ffffff;
    width: 100%;
    color: #000000;
    border-bottom: 1px solid #eaeaea;
  }
  
  .hero-chart-promo-inner {
    display: grid;
    align-items: center;
    grid-template-columns: 40% 60%;
    grid-template-areas:
      "logo bonus"
      "logo cta"
      "disclaimer disclaimer";
    padding: 0 0 3px;
  }
  
  .hero-chart-promo-inner.has-label .col-logo,
  .hero-chart-promo-inner.has-label .col-bonus {
    padding-top: 18px;
  }
  
  .col-counter, 
  .col-rating,
  .col-score {
    display: none;
  }
  
  .col-logo {
    grid-area: logo;
    max-width: 100%;
    height: 100%;
    padding: 10px 8px 5px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .col-bonus {
    grid-area: bonus;
    max-width: 100%;
    padding-bottom: 0;
    padding-top: 10px;
  }
  
  .bonus-text, .subbonus-text, .subbonus-text-2 {
    color: #000000;
  }
  
  .bonus-text {
    font-size: 14px;
  }
  
  .subbonus-text, .subbonus-text-2 {
    font-size: 12px;
    margin: 2px 0;
  }
  
  .col-cta {
    grid-area: cta;
    justify-content: center;
    max-width: 100%;
    padding-bottom: 8px;
  }
  
  .col-cta .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  
  .col-disclaimer {
    padding: 4px 8px;
    grid-area: disclaimer;
  }
  
  .promo-label {
    left: 0;
    padding: 3px 8px;
    font-size: 11px;
  }
  
  .promo-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 15px 10px;
    padding-bottom: 5px;
  }
  
  /* Completely hide desktop image on mobile */
  .promo-logo .desktop-img {
    display: none !important;
    visibility: hidden;
    height: 0;
    width: 0;
    opacity: 0;
    position: absolute;
    left: -9999px;
  }
  
  .promo-logo .mobile-img {
    display: block !important;
    width: 100%;
    max-width: 100%;
    max-height: 45px;
    margin-inline: auto;
    margin-bottom: 8px;
  }
  
  /* Rating and score container - display as row */
  .promo-logo .promo-rating,
  .promo-logo .promo-score {
    display: inline-block;
    margin-top: 5px;
    vertical-align: middle;
  }
  
  /* Space between stars and score */
  .promo-logo .promo-score {
    margin-left: 10px;
  }
  
  .promo-logo .stars {
    color: #F7B13E;
    font-size: 20px;
  }
  
  /* Score styling */
  .promo-logo .score {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    background: transparent;
    width: auto;
    height: auto;
  }
  
  .promo-logo .score-value {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
  }
  
  .promo-logo .score-label {
    display: block;
    color: #000000;
    font-size: 9px;
    text-transform: uppercase;
    margin-top: 1px;
  }
  
  .promo-bonus {
    padding-inline: 4px;
    padding-bottom: 0;
    padding-top: 0;
  }
  
  .promo-bonus .welcome-text {
    padding-bottom: 6px;
    color: #000000;
    font-weight: 600;
    font-size: 13px;
  }
  
  .promo-disclaimer {
    color: #000000;
    background-color: transparent;
    border-top: none;
    font-size: 9px;
    padding: 3px 8px;
  }
  
  .promo-disclaimer-full {
    background-color: transparent;
    color: #000000;
    font-size: 9px;
    padding: 8px;
  }
}
       
         