@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

body {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  background-color: #0b0f1a;
  color: #f0b90b;
  margin: 0;
  padding: 0;
}

/* ===== Top Bar ===== */
.top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 30px;
  background-color: #111827;
  border-bottom: 1px solid #1f2937;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

#connectBtn {
  background-color: #fff;
  color: #000;
  padding: 12px 20px;
  margin-right: 40px; 
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: fit-content;
}

#connectBtn:hover {
  background: #eba904;

}

/* ===== Main Layout ===== */
.main-flex {
  display: flex;
  flex-direction: row-reverse; 
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 100px;
  padding: 0 20px;
}

/* ===== Token Form ===== */
.container {
  max-width: 500px;
  flex: 1;
  background: #1e2026;
  padding: 30px;
  border-radius: 28px;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  margin-top: 50px;


}

input, button {
  width: 95%;
  padding: 12px;
  margin-top: 12px;
  border-radius: 6px;
  border: 1px solid #333;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

label {
  margin-top: 0;            
  margin-bottom: 3px;       
  margin-left: 0;
  color: rgb(80 83 89);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  line-height: 1.1;         
}



input {
  background-color: #373943;
  color: #ffffff;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

input:hover {
  border-color: #ffffff; 
}
input:focus {
  border: 1px solid #ffe900; 
  box-shadow: 0 0 0 1px #ffe900; 
}




button {
  width: 100%;
  background: #f0b90b;
  color: #000;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 12px;
  
}

.result {
  margin-top: 20px;
  color: #f0b90b;
  font-size: 14px;
  word-wrap: break-word;
}

/* ===== Instructions Box ===== */
.instructions {
  flex: 1;
  max-width: 600px;
  background-color: #1e2026;
  padding: 20px;
  border-radius: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  color: #ddd;
  font-size: 18px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  margin-top: 50px;
}

.instructions h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.instructions p, .instructions ol {
  color: rgb(100, 104, 112);
    line-height: 1.8;
  font-family: 'Space Grotesk', sans-serif;

}

.instructions ol li {
  margin-bottom: 10px;
}
.logo {
  width: 200px;
  height: auto;
  position: absolute;
  top: -60px;
  left: 20px;
}



.network-selector {
  position: relative;
  display: inline-block;
}

.network-button {
  display: flex;
  align-items: center;
  background: #ffffff;
  color: black;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-weight: bold;
}

.network-button img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.network-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 5px 0;
  margin: 0;
  width: 200px;
  display: none;
  z-index: 1000;
}

.network-list li {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.network-list li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.network-list li:hover {
  background: #f4f4f4;
}

.hidden {
  display: none !important;
}

.network-dropdown {
  position: absolute;
  top: 10px;
  right: 250px; 
}

.network-select {
  background: #111827;
  color: #ffffff;
  padding: 10px 10px;
  border-radius: 12px;
  font-size: 13px;
  cursor: pointer;
  border: 0.25px solid rgb(100, 104, 112);  
  box-shadow: var(--box-shadow);
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 23px;


}
.network-select:hover {
  background: #1f2937;
  border: 1px solid #f0b90b !important;
  color: #f0b90b;
  transition: all 0.3s ease-in-out;
  transform: scale(1.03);
}


.network-list {
  display: none;
  position: absolute;
  background: #0b0f1a;
  border-radius: 12px;
  list-style: none;
  padding: 10px 0;
  width: 200px;
  text-align: center;
}

.network-list li {
  display: flex;
  align-items: center;  
  gap: 10px;  
  padding: 10px;
  cursor: pointer;
  color: var(--text-light);
  white-space: nowrap; 
  overflow: hidden;  
  text-overflow: ellipsis;  
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out;
  border: 2px solid transparent; 
  border-radius: 8px; 
}

.network-list li:hover {
  background: #747474  !important; 
  border: 1px solid #110101 !important; 
  border-radius: 8px; 
}

.network-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;  
  margin-right: 8px; 
  vertical-align: middle;
}

.network-dropdown:hover .network-list {
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .main-flex {
    flex-direction: column;
    align-items: stretch;
    margin-top: 130px;
    gap: 20px;
  }

  .container, .instructions {
    max-width: 100%;
    padding: 20px;
  }

  #connectBtn {
    width: 100%;
    margin: 10px 0;
    font-size: 14px;
  }

  .network-dropdown {
    position: static;
    margin-top: 10px;
    width: 100%;
  }

  .network-select {
    width: 100%;
  }
  @media (max-width: 768px) {
  .network-list {
    display: none;
    position: absolute;
    background: #0b0f1a;
    border-radius: 12px;
    list-style: none;
    padding: 10px 0;
    width: 200px;
    text-align: center;
    margin-left: 150px;
  }
  }
  .logo {
    position: static;
    margin-bottom: 10px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  input, button {
    font-size: 14px;
    padding: 10px;
  }

  .instructions h3 {
    font-size: 18px;
  }

  .instructions {
    font-size: 14px;
  }

  .network-list {
    width: 100%;
  }
}
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #1f2937;
  color: #f0b90b;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield; 
}
.disclaimer {
  margin: 60px auto 30px;
  max-width: 800px;
  background: #2e2e2e;
  color: #f8d774;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 15px 25px;
  font-size: 14px;
  text-align: center;
  line-height: 1.7;
}

.main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 4px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f0b90b;
}


/* ===== Hamburger and Mobile Nav ===== */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #f0b90b;
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 1001;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -250px;
  width: 100vw;
  height: 100%;
  background-color: #1e2026;
  box-shadow: 2px 0 12px rgba(0,0,0,0.4);
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  border-bottom: 1px solid #333;
}

.mobile-nav li a {
  display: block;
  padding: 15px 20px;
  color: #f8d774;
  text-decoration: none;
  font-size: 16px;
}

.mobile-nav li a:hover {
  background-color: #1f2937;
}

.mobile-nav.open {
  left: 0;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .main-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }
  .container {
    box-sizing: border-box;

  }
  .instructions  {
    box-sizing: border-box;
}

  .main-nav {
    display: none;
  }

  .logo {
    width: 150px;
    height: auto;
    position: absolute;
    top: -25px;
    left: 80px;

  }
  
}

.lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.lock-box {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.lock-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.connect-button {
  margin-top: 12px;
  background-color: #f0b90b;
  color: #000;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
#lockOverlay {
  display: none; 
}

button:hover,
.connect-button:hover,
#connectBtn:hover {
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

.mobile-nav {
  transition: left 0.4s ease-in-out;
}

@media (max-width: 480px) {
  .lock-box {
    width: 90%;
    padding: 20px;
    font-size: 14px;
  }
}



.faq-container {
  max-width: 800px;
  margin: 60px auto;
  background-color: #1e2026;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.faq-title {
  font-size: 24px;
  color: #f0b90b;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-item {
  border-bottom: 1px solid #333;
}

.faq-question {
  background: none;
  color: #fff;
  border: none;
  width: 100%;
  font-size: 16px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 16px;
  color: #ccc;
  font-size: 14px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 10px;
  padding-bottom: 16px;
}



.faq-item {
  border-bottom: 1px solid #333;
  position: relative;
  padding-left: 50px;
}

.faq-number {
  position: absolute;
  top: 18px;
  left: 0;
  font-size: 24px;
  font-weight: bold;
  color: #8c8f9b
  ;
}

.faq-item.open .faq-number {
  color: #f0b90b;
}

.faq-question {
  background: none;
  color: #fff;
  border: none;
  width: 100%;
  font-size: 20px;
  padding: 16px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0;
  color: rgb(100, 104, 112);
  ;
  font-size: 16px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 10px;
}




.toggle-group {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #374151;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #f0b90b;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgb(100, 104, 112);
  font-size: 14px;
  font-weight: 500;
}
#result a {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
}

#result a:hover {
  text-decoration: underline;
  color: #ffffff; 
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px 0 10px;
}

.social-icons a {
  color: #9ca3af;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #374151;
}

.footer-note {
  color: #9ca3af;
  font-size: 13px;
  padding: 0 24px 16px;
}

.footer-note.center {
  text-align: center;
}
.error-msg {
  color: #f0b90b;
  font-size: 0.85em;
  margin-top: 4px;
}



@media (max-width: 768px) {
  #connectBtn {
    display: none;
  }
}

.mobile-connect-btn {
  display: block;
  margin: 350px auto;
  padding: 12px 20px;
  background-color: #ddd;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  width: 80%;
  text-align: center;
}

@media (min-width: 769px) {
  .mobile-connect-btn {
    display: none;
  }
}

.mobile-nav {
  right: -100vw;
  left: auto;
}

.mobile-nav.open {
  right: 0;
  left: auto;
}

@media (max-width: 768px) {
  .logo {
    position: absolute;
    top: -25px;
    left: 5px;
    right: auto;
    width: 150px;
  }
}


/* Desktop only utility class */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}


@media (max-width: 768px) {
  .hamburger {
    position: fixed;
    top: 18px;
    right: 20px;
    left: auto;
    z-index: 1001;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
    display: block;
  }
}
.mobile-nav li a {
  color: #ffffff !important; 
  text-align: left !important; 
  padding-left: 20px !important; 
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  padding: 30px 30px;


}


@media (max-width: 768px) {
 

  .network-list.show {
    display: block;
  }

  .network-select {
    width: 30%;
    padding: 5px;
    font-size: 14px;
    text-align: center;
    border: 1px solid rgb(68, 68, 68);
  }
   
}
    /* === Modal Overlay === */
    .promo-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 17, 26, 0.95);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 5000;
      animation: fadeIn 0.4s ease-in-out;
    }

    /* === Modal Box === */
    .promo-modal-content {
      background: #1f2937;
      color: #f0b90b;
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      position: relative;
      animation: zoomIn 0.5s ease-in-out;
    }

    .promo-modal-content h2 {
      font-size: 22px;
      margin-bottom: 10px;
      color: #fff;
    }

    .promo-modal-content p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #ccc;
    }

    /* === Countdown Grid === */
    .countdown-grid {
      display: flex;
      gap: 12px;
      justify-content: center;
      align-items: center;
      margin-bottom: 25px;
      flex-wrap: wrap;
    }

    .time-box {
      background: #111827;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 14px 16px;
      color: #f0b90b;
      font-weight: bold;
      font-size: 20px;
      text-align: center;
      box-shadow: inset 0 0 4px rgba(240, 185, 11, 0.2),
                  0 0 12px rgba(240, 185, 11, 0.3);
      font-family: 'Space Grotesk', monospace;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 52px;
      transition: all 0.3s ease-in-out;
    }

    .time-box small {
      font-size: 12px;
      color: #ccc;
      margin-top: 2px;
    }

    /* === CTA Button === */
    .promo-cta {
      background: linear-gradient(90deg, #f0b90b, #ffcc00);
      color: #000;
      padding: 12px 24px;
      border: none;
      font-weight: bold;
      font-size: 15px;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
    }

    .promo-cta:hover {
      filter: brightness(1.1);
      transform: scale(1.05);
    }

    /* === Close Button === */
    .promo-close-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      background: transparent;
      color: #f0b90b;
      border: 1px solid #f0b90b;
      border-radius: 50%;
      font-size: 14px;
      width: 24px;
      height: 24px;
      line-height: 22px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .promo-close-btn:hover {
      background: #f0b90b;
      color: #000;
      transform: scale(1.1);
    }
    #feeDisplay {
     color: #f0b90b;

    }
    /* === Offer Ended Text === */
    #offerEndedText {
      display: none;
      color: #f0b90b;
      font-weight: bold;
      font-size: 15px;
      margin-top: 12px;
      animation: blinkFade 1.5s ease-in-out infinite;
    }

    /* === Animations === */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.8);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes blinkFade {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    /* === Responsive === */
    @media (max-width: 500px) {
      .promo-modal-content {
        padding: 30px 20px;
      }

      .promo-cta {
        font-size: 14px;
        padding: 10px 20px;
      }

      .time-box {
        font-size: 18px;
        padding: 10px 12px;
        min-width: 46px;
      }

      .promo-close-btn {
        top: 10px;
        right: 10px;
        width: 22px;
        height: 22px;
        font-size: 13px;
        line-height: 20px;
      }
    }
    /* === FAQ Hover Effect: Question + Number === */
.faq-item:hover .faq-question {
  background-color: #2a2d37;
  color: #f0b90b;
  border-radius: 12px;
  transition: all 0.3s ease;
  padding-left: 60px;
}

.faq-item:hover .faq-icon {
  transform: scale(1.2) rotate(90deg);
  color: #f0b90b;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item:hover .faq-number {
  color: #f0b90b;
  transition: color 0.3s ease;
}

.faq-answer {
  background-color: transparent;
  color: rgb(100, 104, 112);
  transition: none;
}
@media (max-width: 768px) {
  .instruction-box {
    position: static;
    width: 90%;
    margin: 25px auto;
    top: unset;
    left: unset;
  }
}
@keyframes pulseFlash {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.05);
  }
}

.free-label {
  font-size: 10px;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.3px;
  animation: pulseFlash 1.8s infinite;
}
@media (max-width: 768px) {
  #lockOverlay {
    display: flex !important;
  }
}








.promo-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 17, 26, 0.95);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 5000;
      animation: fadeIn 0.4s ease-in-out;
    }

    .promo-modal-content {
      background: #1f2937;
      color: #f0b90b;
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      position: relative;
      animation: zoomIn 0.5s ease-in-out;
    }

    .promo-modal-content h2 {
      font-size: 22px;
      margin-bottom: 10px;
      color: #fff;
      font-family: 'Space Grotesk', sans-serif;

    }

    .promo-modal-content p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #ccc;
      font-family: 'Space Grotesk', sans-serif;

    }

    .countdown-grid {
      display: flex;
      gap: 12px;
      justify-content: center;
      align-items: center;
      margin-bottom: 25px;
      flex-wrap: wrap;
    }

    .time-box {
      background: #111827;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 14px 16px;
      color: #f0b90b;
      font-weight: bold;
      font-size: 20px;
      text-align: center;
      box-shadow: inset 0 0 4px rgba(240, 185, 11, 0.2),
                  0 0 12px rgba(240, 185, 11, 0.3);
      font-family: 'Space Grotesk', monospace;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 52px;
      transition: all 0.3s ease-in-out;
    }

    .time-box small {
      font-size: 12px;
      color: #ccc;
      margin-top: 2px;
      font-family: 'Space Grotesk', sans-serif;

    }

    .promo-cta {
      background: linear-gradient(90deg, #f0b90b, #ffcc00);
      color: #000;
      padding: 12px 24px;
      border: none;
      font-weight: bold;
      font-size: 15px;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      font-family: 'Space Grotesk', sans-serif;

    }

    .promo-cta:hover {
      filter: brightness(1.1);
      transform: scale(1.05);
    }

    .promo-close-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      background: transparent;
      color: #f0b90b;
      border: 1px solid #f0b90b;
      border-radius: 50%;
      font-size: 14px;
      width: 24px;
      height: 24px;
      line-height: 22px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .promo-close-btn:hover {
      background: #f0b90b;
      color: #000;
      transform: scale(1.1);
    }

    #offerEndedText {
      display: none;
      color: #f87171;
      font-weight: bold;
      font-size: 15px;
      margin-top: 12px;
      animation: blinkFade 1.5s ease-in-out infinite;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.8);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes blinkFade {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    @media (max-width: 500px) {
      .promo-modal-content {
        padding: 30px 20px;
      }

      .promo-cta {
        font-size: 14px;
        padding: 10px 20px;
      }

      .time-box {
        font-size: 18px;
        padding: 10px 12px;
        min-width: 46px;
      }

      .promo-close-btn {
        top: 10px;
        right: 10px;
        width: 22px;
        height: 22px;
        font-size: 13px;
        line-height: 20px;
      }
    }

