.timed-offer-modal-overlay {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.timed-offer-modal-content p { background: #0825491f; width: fit-content; padding: .5rem 1rem; border-radius: 1.5rem; font-weight: 700; font-size: 16px; margin: 0 auto; color: #082549; font-family: Poppins; }


.timed-offer-description { font-size: 2.6rem; color: #082549; font-weight: 800; line-height: 1.2;margin: 1rem 0 0; }
.timed-offer-modal-content {
    background-color: #fff;
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
	font-family: "Poppins", Sans-serif;
}

.timed-offer-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.timed-offer-close:hover {
    color: #000;
}

.timed-offer-modal-content h2 {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
}



.timed-offer-description p {
    margin-bottom: 15px;
}

.timed-offer-description a {
    color: #ff9d00;
    text-decoration: underline;
}

.timed-offer-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 2rem 0 2rem;
}

.timer-box {
background-color: #FF0E80;
  color: #ffffff;
  padding: 15px;
  border-radius: 15px;
  min-width: 90px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(229, 45, 39, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Poppins;
}

.timer-box span {
    font-size: 30px;
    font-weight: 800;
    line-height: 1; 
    display: block;
    margin-bottom: 5px;
}

.timer-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    opacity: 0.9;
}

.timer-separator {
    font-size: 42px;
    font-weight: 800;
    color: #FF0E80;
    padding-bottom: 20px; /* Adjust alignment with boxes */
}
.timed-offer-description .highlights {
  color: #FF0E80;
}

.timed-offer-button {
  display: inline-block;
  background: linear-gradient(90deg,rgb(8, 37, 73) 0%, rgb(255, 14, 128) 10%, rgb(255, 14, 128) 90%, rgb(8, 37, 73) 100%);
  color: #fff !important;
  padding: 15px 40px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: Poppins;
  margin: 1rem 0 0;
}

.timed-offer-button:hover {
    background: #082549;
    transform: scale(1.05);
}

.timed-offer-modal-overlay.active {
    display: flex;
}

/* Level Up Section Styling */
.levelup-section {
    background-color: #1a1e26;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
    margin-top: 50px;
}

.levelup-container h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.levelup-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.levelup-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.levelup-link i {
    margin-right: 10px;
    font-size: 18px;
}

.levelup-link.primary {
    background-color: #d8963f;
    color: #1a1e26;
}

.levelup-link.primary:hover {
    background-color: #c08535;
}

.levelup-link.secondary {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.levelup-link.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .levelup-links {
        flex-direction: column;
        align-items: center;
    }
    
    .levelup-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
