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

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #1c1e26;
}

h1, h2, h3 {
    color: #ffffff;
}

p {
    color: #898FA9;
}

*, ::after, ::before {
    margin: 0;
    padding: 0;
    word-spacing: normal;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #18ae62;
  background: #ffffff;
}

strong {
    font-weight: 700;
}


html {
    font-size: 62.5%;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}

img {
    width: 100%;
    display: inline-block;
}

/* Header */
.header {
  width: 100%;
  height: 64px;
  padding: 0 16px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(43, 46, 59, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.section-container {
  width: 100%;
  max-width: 1192px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 108px;
  height: 36px;
}

.cta-button {
  padding: 12px 40px;
  border-radius: 4px;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16.8px;
  text-transform: uppercase;
  background-color: #18AE62;
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #1CCC73;
}

/* Tablet */
@media (max-width: 1024px) {
  .logo img {
    width: 100%;
    height: 28px;
  }

  .cta-button {
    height: 38px;
    padding: 10.5px 40px;
  }
}

/* Promo Banner */
.promo-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  /* Banner background image desktop */
  background-image: url('https://cms.7bet.co.uk/wp-content/uploads/2025/11/LP_HolidayChase_desktop-1.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Gradient overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
background: linear-gradient(180deg, 
    rgba(28, 30, 38, 0.55) 0%,
    rgba(28, 30, 38, 0.35) 40.41%,
    rgba(28, 30, 38, 0.49856) 71.12%,
    #1C1E26 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
}

/* Content */
.banner-content {
  text-align: center;
  color: #ffffff;
  z-index: 1;
  width: 100%;
  max-width: 756px;
}

.money-img {
   max-width: 35vw;
}

.offer-name-img {
   max-width: 15vw;
}

.promo-subtitle {
  font-weight: 600;
  color: #ffffff;
  font-size: 2.5vw;
  line-height: 120%;
  margin: 0;
}

.promo-subtitle span{
  line-height: 100%;     
  padding: 0 6px; 
  margin: 0; 

}

.promo-title {
  font-weight: 800;
  font-size: 3vw;
  max-width: 756px;
  line-height: 120%;
  margin-top: 4px;
  margin-bottom: 0;
  
}

.promo-title span{
  background-color: #561717;
  display: inline-block; 
  line-height: 100%;     
  padding: 0 6px; 
  margin: 0; 
}

.cta-button-main {
  display: inline-block;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  margin-top: 32px;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  background-color: #18AE62;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.cta-button-main:hover {
  background-color: #1CCC73;
}

/* Header Bottom */
.header-bottom {
  position: absolute;
  bottom: 12px;
  left: 50%;
  padding: 0 16px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1192px;
}

.partnership-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1192px;
}

.partner-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.partner-text {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 10px;
  line-height: 120%;
  text-align: center;
  color: #ffffff;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 37px;
  flex-wrap: wrap;
  max-height: 28px;
}

#partner-logo {
  max-width: 100px;
  max-height: 28px;
}

.terms-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.terms-text {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 9px;
  line-height: 120%;
  text-align: center;
  color: #ffffff;
}

.begambleaware-logo {
  width: 125px;
}

/* Tablet */
@media (max-width: 1024px) {
  .promo-banner {
      /* Banner background image tablet */
    background-image: url("https://cms.7bet.co.uk/wp-content/uploads/2025/11/LP_HolidayChase_tablet-1.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .banner-content {
    max-width: 606px;
  }

.money-img {
   max-width: 70vw;
}
    .offer-name-img {
   max-width: 250px;
}

  .promo-subtitle {
    font-size: 32px;
    padding: 4px 14vw 0 14vw;
  }

  .promo-title {
    font-size: 48px;
  }

 
}

/* Mobile */
@media (max-width: 480px) {
  .promo-banner {
      /* Banner background image mobile */
    background-image: url("https://cms.7bet.co.uk/wp-content/uploads/2025/11/1080x1920HolidayChase-2.png");
    height: 75vh;
  }
 
  .promo-subtitle {
    font-size: 24px;
    padding: 4px 34px 0 34px;
  }

  .promo-title {
    font-size: 30px;
  }

  .money-img {
   max-width: 90vw;
}
    
    .offer-name-img {
   max-width: 250px;
}

  .cta-button-main {
    width: 100%;
    padding: 16px;
  }

  .banner-bottom {
    padding: 0 16px;
  }

  .terms-text {
    font-size: 8px;
  }

}

/* How to qualify section */
 .qualify-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px;
} 

.qualify-card{
    background-color: #343747;
    box-shadow: -4px 0px #18AE62;
    border-radius: 16px;
    height: 142px;
    padding: 16px 28px;
    width: 1196px;
    height: fit-content;
}

.qualify-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 8px 0;
}

.qualify-card p {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;

}

/* Mobile */
@media (max-width: 768px) {
  .qualify-heading {
    font-size: 20px;
}
.qualify-card p {
    font-size: 14px;
    line-height: 22px;
}
}

/* Game info section */
.game-info-section {
  padding-top: 8px;
  padding-left: 16px;
  padding-right: 16px;
}

.container {
  max-width: 1196px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.game-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  margin: 0 0 12px 0;
}

.game-info-subtitle {
  margin: 0 0 8px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.tournament-paragraph {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  margin: 0 0 8px 0;
  color: #FFFFFF;
}

.game-info-section ul {
  margin: 0 0 0 18px;
}

.game-info-section li {
   font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

/* Mobile */
@media (max-width: 768px) {
.game-title {
  font-size: 22px;
  margin: 0 0 16px 0;
}

.game-info-subtitle {
  margin: 0 0 12px 0;
}
}

/* Cards Container */
.cards-section-title {
   font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  margin: 32px 0 24px 0;
}

/* Mobile */
@media (max-width: 768px) {
.cards-section-title {
  font-size: 22px;
}
}

.cards-container {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 40px;
}

/* Mobile */
@media (max-width: 768px) {
.cards-container {
  padding-bottom: 32px;
}
}

/* Card Styling */
.card {
  position: relative;
  border-radius: 4px;
  padding: 16px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 287px;
  height: 287px;
  transition: background-color 0.3s ease;
}

/* Hover overlay */
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 4px;
  background: transparent;
  transition: background 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.card:hover::before {
  background: #1C1E26BA;
}

/* Card hover background color (under overlay) */
.card:hover {
  background-color: #18AE62;
}

/* Button Styling */
.card-button {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 135px;
  height: 48px;
  padding-left: 12px;
  padding-right: 12px;
  gap: 10px;
  border-radius: 4px;
  border: none;
  background-color: #fff;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  z-index: 10;
}

.card:hover .card-button {
  opacity: 1;
  pointer-events: auto;
  background-color: #18AE62;
  color: white;
}

/* Anchor tag inside card */
.card-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media (min-width: 1200px) {
  .start-7bet-section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .start-7bet-heading {
    font-size: 22px;
    line-height: 130%;
  }

  .cards-container {
    gap: 16px;
  }
  .card {
    max-width: calc((100% - 48px) / 4);
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .card {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

/* Need help? part */
.need-help-title {
  margin: 0 0 8px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.need-help-paragraph {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 40px 0;
  
}

.need-help-paragraph a{
color: #18AE62;
}

/* Trust section */
.trust-icons-section {
  background-color: #343747;
}

.trust-icons-container {
  max-width: 1196px;
  margin: 0 auto;
  padding: 32px 16px;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

.trust-icon-wrapper {
  flex: 1 1 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.trust-icon-content {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.trust-icon {
  max-width: 62px;
  height: auto;
  margin-bottom: 0;
}

.trust-icon-text {
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 19.6px;
  letter-spacing: 0;
  margin: 0;
  user-select: none;
}

@media (min-width: 1200px) {
  .trust-icons-section {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {

  .trust-icons-container {
    flex-wrap: nowrap;
  }

  .trust-icon-wrapper {
    flex: 1 1 0;
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
  }

  .trust-icon-content {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .trust-icon-text {
    font-size: 10px;
    line-height: 130%;
    white-space: normal;
  }
}

/* Terms and conditions */
.tnc-section {
  max-width: 1196px;
  margin: 0 auto;
  padding-top: 40px;
  padding-left: 16px;
  padding-right: 16px;
}

.tnc-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0;
}

.tnc-content p, li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #898FA9;
}

.tnc-subtitle {
  margin: 13px 0 8px 0;
}

.tnc-content strong {
  font-weight: 700;
}

.tnc-content ul {
  margin: 0 0 0 18px;
}

.tnc-content span {
  color: #18AE62;
  font-weight: 400;
}

.tnc-content a {
    color: #18AE62;
}

@media (min-width: 1200px) {
  .tnc-section {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .tnc-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0;
  }
  .tnc-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
}

/* FOOTER */

/* Line */
.spacer {
    padding: 0 16px;
}

.spacer hr {
    border: 1px solid #898FA9;
    max-width: 1196px;
    margin: 38px auto;
}


@media (max-width: 768px) {
  .spacer-top-margin {
    margin-top: 40px !important;
  }

  .spacer hr {
    margin: 24px 0px;
  }
}

/* Security logo section */
.security-logos-section {
  display: flex;
  justify-content: center;
  padding: 0px 16px;
}

.security-logos-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1196px;
  width: 100%;
  gap: 12px;
}

.security-logos-container a,
.security-logos-container img {
  display: flex;
  align-items: center;
}

.security-logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .security-logos-container {
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 24px;
  }
}

/* Payments section */
.payment-logos-section {
  display: flex;
  justify-content: center;
  padding: 0px 16px;
}

.payment-logos-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1196px;
  width: 100%;
  gap: 12px;
}

.payment-logo {
  height: auto;
  width: auto;
  max-height: 40px;
  object-fit: contain;
}

.mastercard-logo {
  width: 40px;
  height: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .payment-logos-container {
    justify-content: space-between;
    row-gap: 24px;
  }
}

/* Footer */

footer {
  margin-bottom: 40px;
}

/* Footer legal */
.footer-legal-section {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 70px;
}

.footer-legal-container {
  max-width: 1196px;
  margin: 0 auto;
}

.footer-legal-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  margin: 0;
  color: #898FA9;
}

.consent-preferences {
  padding: 12px 0px;
  font-size: 12px;
}

.consent-preferences a {
  color: #18AE62;
}

@media (min-width: 1200px) {
  .footer-legal-section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-legal-section {
    margin: 0 auto;
    padding-bottom: 48px;
  }
}

/* Fixed bar */

.bottom-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 12px 16px;
  background: #18ae62e0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.bottom-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;

  max-width: 1196px;
}

.bottom-bar.show {
  opacity: 1;
  pointer-events: auto;
}

.bottom-bar-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  margin: 0;
}

.bottom-bar-btn {
  background-color: #393D4B;
  color: #fff;
  border: none;
  border-radius: 4px;
  height: 40px;
  padding: 12px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
}

.bottom-bar-btn:hover {
  background-color: #494c62;
}

.bottom-bar-bottom-text-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.bottom-bar-bottom-text-wrapper img {
  height: 16px;
  width: 16px;
}