/* =========================================================
   MPX COUNTDOWN TIMER STYLES
   Add this to your index-extras.css file
   ========================================================= */

#mpxIndex .mpx-countdown-wrap {
  margin-top: 32px;
  padding: 38px 32px;
  background: linear-gradient(135deg, rgba(11, 16, 24, 0.95), rgba(6, 8, 12, 0.98));
  border: 1px solid rgba(255, 201, 45, 0.18);
  border-radius: var(--mpx-radius2);
  box-shadow: 
    var(--mpx-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 80px rgba(255, 201, 45, 0.06);
  position: relative;
  overflow: hidden;
}

/* Ambient glow effect */
#mpxIndex .mpx-countdown-wrap::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 201, 45, 0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(29, 108, 255, 0.05), transparent 40%);
  pointer-events: none;
  animation: mpxCountdownPulse 8s ease-in-out infinite;
}

@keyframes mpxCountdownPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Header */
#mpxIndex .mpx-countdown-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

#mpxIndex .mpx-countdown-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 201, 45, 0.85);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

#mpxIndex .mpx-countdown-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mpx-text);
  margin: 0;
  text-shadow: 0 0 40px rgba(255, 201, 45, 0.2);
}

/* Timer Display */
#mpxIndex .mpx-countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

#mpxIndex .mpx-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}

#mpxIndex .mpx-countdown-value {
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 900;
  line-height: 1;
  color: var(--mpx-gold);
  text-shadow: 
    0 0 30px rgba(255, 201, 45, 0.4),
    0 0 60px rgba(255, 201, 45, 0.2);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  padding: 12px 16px;
  background: rgba(255, 201, 45, 0.06);
  border: 1px solid rgba(255, 201, 45, 0.12);
  border-radius: 14px;
  min-width: 80px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#mpxIndex .mpx-countdown-value:hover {
  transform: translateY(-2px);
  box-shadow: var(--mpx-glowGold);
}

#mpxIndex .mpx-countdown-value .mpx-count {
  display: block;
}

#mpxIndex .mpx-countdown-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
  font-weight: 600;
}

#mpxIndex .mpx-countdown-separator {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: rgba(255, 201, 45, 0.4);
  margin: 0 4px;
  padding-bottom: 28px;
  animation: mpxSeparatorPulse 1s ease-in-out infinite;
}

@keyframes mpxSeparatorPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* CTA Button */
#mpxIndex .mpx-countdown-cta {
  text-align: center;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

#mpxIndex .mpx-countdown-cta .mpx-btn-primary {
  padding: 14px 28px;
  font-size: 13px;
}

#mpxIndex .mpx-countdown-cta .mpx-btn-primary svg {
  transition: transform 0.2s ease;
}

#mpxIndex .mpx-countdown-cta .mpx-btn-primary:hover svg {
  transform: translateX(4px);
}

/* Event ended state */
#mpxIndex .mpx-countdown-wrap.is-ended .mpx-countdown-value {
  color: var(--mpx-blue);
  text-shadow: 
    0 0 30px rgba(29, 108, 255, 0.4),
    0 0 60px rgba(29, 108, 255, 0.2);
  background: rgba(29, 108, 255, 0.08);
  border-color: rgba(29, 108, 255, 0.2);
}


#mpxIndex .mpx-countdown-wrap.is-ended .mpx-countdown-kicker {
  color: var(--mpx-blue);
}

/* Responsive */
@media (max-width: 575.98px) {
  #mpxIndex .mpx-countdown-wrap {
    padding: 28px 18px;
  }
  
  #mpxIndex .mpx-countdown-timer {
    gap: 6px;
  }
  
  #mpxIndex .mpx-countdown-unit {
    min-width: 60px;
  }
  
  #mpxIndex .mpx-countdown-value {
    min-width: 62px;
    padding: 10px 8px;
    font-size: 32px;
  }
  
  #mpxIndex .mpx-countdown-separator {
    font-size: 24px;
    margin: 0 2px;
    padding-bottom: 24px;
  }
  
  #mpxIndex .mpx-countdown-label {
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  #mpxIndex .mpx-countdown-value {
    min-width: 52px;
    padding: 8px 6px;
    font-size: 26px;
    border-radius: 10px;
  }
  
  #mpxIndex .mpx-countdown-separator {
    font-size: 20px;
  }
}/* =========================================================
   MPX COUNTDOWN TIMER STYLES
   Add this to your index-extras.css file
   ========================================================= */

#mpxIndex .mpx-countdown-wrap {
  margin-top: 32px;
  padding: 38px 32px;
  background: linear-gradient(135deg, rgba(11, 16, 24, 0.95), rgba(6, 8, 12, 0.98));
  border: 1px solid rgba(255, 201, 45, 0.18);
  border-radius: var(--mpx-radius2);
  box-shadow: 
    var(--mpx-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 80px rgba(255, 201, 45, 0.06);
  position: relative;
  overflow: hidden;
}

/* Ambient glow effect */
#mpxIndex .mpx-countdown-wrap::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 201, 45, 0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(29, 108, 255, 0.05), transparent 40%);
  pointer-events: none;
  animation: mpxCountdownPulse 8s ease-in-out infinite;
}

@keyframes mpxCountdownPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Header */
#mpxIndex .mpx-countdown-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

#mpxIndex .mpx-countdown-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 201, 45, 0.85);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

#mpxIndex .mpx-countdown-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mpx-text);
  margin: 0;
  text-shadow: 0 0 40px rgba(255, 201, 45, 0.2);
}

/* Timer Display */
#mpxIndex .mpx-countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

#mpxIndex .mpx-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}

#mpxIndex .mpx-countdown-value {
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 900;
  line-height: 1;
  color: var(--mpx-gold);
  text-shadow: 
    0 0 30px rgba(255, 201, 45, 0.4),
    0 0 60px rgba(255, 201, 45, 0.2);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  padding: 12px 16px;
  background: rgba(255, 201, 45, 0.06);
  border: 1px solid rgba(255, 201, 45, 0.12);
  border-radius: 14px;
  min-width: 80px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#mpxIndex .mpx-countdown-value:hover {
  transform: translateY(-2px);
  box-shadow: var(--mpx-glowGold);
}

#mpxIndex .mpx-countdown-value .mpx-count {
  display: block;
}

#mpxIndex .mpx-countdown-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
  font-weight: 600;
}

#mpxIndex .mpx-countdown-separator {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: rgba(255, 201, 45, 0.4);
  margin: 0 4px;
  padding-bottom: 28px;
  animation: mpxSeparatorPulse 1s ease-in-out infinite;
}

@keyframes mpxSeparatorPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* CTA Button */
#mpxIndex .mpx-countdown-cta {
  text-align: center;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

#mpxIndex .mpx-countdown-cta .mpx-btn-primary {
  padding: 14px 28px;
  font-size: 13px;
}

#mpxIndex .mpx-countdown-cta .mpx-btn-primary svg {
  transition: transform 0.2s ease;
}

#mpxIndex .mpx-countdown-cta .mpx-btn-primary:hover svg {
  transform: translateX(4px);
}

/* Event ended state */
#mpxIndex .mpx-countdown-wrap.is-ended .mpx-countdown-value {
  color: var(--mpx-blue);
  text-shadow: 
    0 0 30px rgba(29, 108, 255, 0.4),
    0 0 60px rgba(29, 108, 255, 0.2);
  background: rgba(29, 108, 255, 0.08);
  border-color: rgba(29, 108, 255, 0.2);
}


#mpxIndex .mpx-countdown-wrap.is-ended .mpx-countdown-kicker {
  color: var(--mpx-blue);
}

/* Responsive */
@media (max-width: 575.98px) {
  #mpxIndex .mpx-countdown-wrap {
    padding: 28px 18px;
  }
  
  #mpxIndex .mpx-countdown-timer {
    gap: 6px;
  }
  
  #mpxIndex .mpx-countdown-unit {
    min-width: 60px;
  }
  
  #mpxIndex .mpx-countdown-value {
    min-width: 62px;
    padding: 10px 8px;
    font-size: 32px;
  }
  
  #mpxIndex .mpx-countdown-separator {
    font-size: 24px;
    margin: 0 2px;
    padding-bottom: 24px;
  }
  
  #mpxIndex .mpx-countdown-label {
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  #mpxIndex .mpx-countdown-value {
    min-width: 52px;
    padding: 8px 6px;
    font-size: 26px;
    border-radius: 10px;
  }
  
  #mpxIndex .mpx-countdown-separator {
    font-size: 20px;
  }
}/* index-extras.css
   Extra homepage-only styles not covered in the original theme files.
   Scoped under #mpxIndex to avoid overriding other pages.
*/
#mpxIndex .mpx-promotions{
  padding: 90px 0;
  background: linear-gradient(180deg, rgba(9,10,16,.0), rgba(9,10,16,.65));
}
#mpxIndex .mpx-promotions .mpx-promo-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
}
@media (max-width: 991.98px){
  #mpxIndex .mpx-promotions .mpx-promo-grid{ grid-template-columns: 1fr; }
}
#mpxIndex .mpx-promotions .mpx-promo-card{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(14,16,28,.55);
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  overflow: hidden;
}
#mpxIndex .mpx-promotions .mpx-promo-card .mpx-card-pad{ padding: 22px; }
#mpxIndex .mpx-promotions .mpx-promo-kicker{
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
#mpxIndex .mpx-promotions .mpx-promo-title{
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 800;
  margin: 8px 0 10px;
}
#mpxIndex .mpx-promotions .mpx-promo-lead{
  color: rgba(255,255,255,.78);
  margin: 0 0 16px;
  line-height: 1.55;
}
#mpxIndex .mpx-btn{
  display: inline-flex; align-items:center; justify-content:center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,0,.96);
  color: #0e0e0e;
  text-decoration:none;
  font-weight: 700;
  font-size: 13px;
  background: rgba(255,221,0,.99); 	
}

#mpxIndex .mpx-btn-col2{
  display: inline-flex; align-items:center; justify-content:center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,0,.26);
  color: #FFDD00;
  text-decoration:none;
  font-weight: 700;
  font-size: 13px;
  background: rgba(1,1,0,.79); 	
}

#mpxIndex .mpx-btn:hover{ 
	transform: translateY(-1px);
	color: #fff; 
	background-color: linear-gradient(to right top, #111110, #0f0f0e, #0d0c0c, #090909, #060606, #070707, #080708, #090808, #0e0c0c, #000, #000, #161614); 
}

#mpxIndex .mpx-btn-col2:hover{ 
	transform: translateY(-1px);
	color: #080908; 
	background-color:#fff; 
	box-shadow: var(--mpx-glowGold);
    border-color: rgba(255,229,0,0.32);
}
#mpxIndex .mpx-btn.mpx-btn-accent{
  border-color: rgba(247,196,45,.35);
  background: rgba(0,0,0,.0);
}
#mpxIndex .mpx-btn.mpx-btn-dark{
  background: rgba(0,0,0,.45);
}

#mpxIndex .mpx-fighter-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 991.98px){ #mpxIndex .mpx-fighter-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 575.98px){ #mpxIndex .mpx-fighter-grid{ grid-template-columns: 1fr; } }

#mpxIndex .fighter-card{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
#mpxIndex .fighter-card img{
  width: 100%; height: 220px; object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}
#mpxIndex .fighter-card .fighter-overlay{
  position:absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.72));
  opacity: .92;
}
#mpxIndex .fighter-card .fighter-content{
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 2;
  transform: translateY(18px);
  transition: transform .25s ease;
}
#mpxIndex .fighter-card:hover .fighter-content{ transform: translateY(0); }
#mpxIndex .fighter-card .fighter-name{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 4px;
}
#mpxIndex .fighter-card .fighter-meta{
  display:flex; flex-wrap:wrap; gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  margin-bottom: 10px;
}
#mpxIndex .fighter-card .fighter-reveal{
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.5;
}
#mpxIndex .fighter-card:hover .fighter-reveal{ max-height: 90px; }


 
/* =========================================================
   MPX COUNTDOWN TIMER STYLES V1
   ========================================================= */
#mpxIndex .mpx-countdown-wrap {
  margin-top: 32px;
  padding: 38px 32px;
  background: linear-gradient(135deg, rgba(11, 16, 24, 0.95), rgba(6, 8, 12, 0.98));
  border: 1px solid rgba(255, 201, 45, 0.18);
  border-radius: var(--mpx-radius2);
  box-shadow: 
    var(--mpx-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 80px rgba(255, 201, 45, 0.06);
  position: relative;
  overflow: hidden;
}

/* Ambient glow effect */
#mpxIndex .mpx-countdown-wrap::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 201, 45, 0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(29, 108, 255, 0.05), transparent 40%);
  pointer-events: none;
  animation: mpxCountdownPulse 8s ease-in-out infinite;
}

@keyframes mpxCountdownPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Header */
#mpxIndex .mpx-countdown-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

#mpxIndex .mpx-countdown-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 201, 45, 0.85);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

#mpxIndex .mpx-countdown-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mpx-text);
  margin: 0;
  text-shadow: 0 0 40px rgba(255, 201, 45, 0.2);
}

/* Timer Display */
#mpxIndex .mpx-countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

#mpxIndex .mpx-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
}

#mpxIndex .mpx-countdown-value {
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 900;
  line-height: 1;
  color: var(--mpx-gold);
  text-shadow: 
    0 0 30px rgba(255, 201, 45, 0.4),
    0 0 60px rgba(255, 201, 45, 0.2);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  padding: 12px 16px;
  background: rgba(255, 201, 45, 0.06);
  border: 1px solid rgba(255, 201, 45, 0.12);
  border-radius: 14px;
  min-width: 80px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#mpxIndex .mpx-countdown-value:hover {
  transform: translateY(-2px);
  box-shadow: var(--mpx-glowGold);
}

#mpxIndex .mpx-countdown-value .counter {
  display: block;
}

#mpxIndex .mpx-countdown-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
  font-weight: 600;
}

#mpxIndex .mpx-countdown-separator {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: rgba(255, 201, 45, 0.4);
  margin: 0 4px;
  padding-bottom: 28px;
  animation: mpxSeparatorPulse 1s ease-in-out infinite;
}

@keyframes mpxSeparatorPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* CTA Button */
#mpxIndex .mpx-countdown-cta {
  text-align: center;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

#mpxIndex .mpx-countdown-cta .mpx-btn-primary {
  padding: 14px 28px;
  font-size: 13px;
}

#mpxIndex .mpx-countdown-cta .mpx-btn-primary svg {
  transition: transform 0.2s ease;
}

#mpxIndex .mpx-countdown-cta .mpx-btn-primary:hover svg {
  transform: translateX(4px);
}

/* Event ended state */
#mpxIndex .mpx-countdown-wrap.is-ended .mpx-countdown-value {
  color: var(--mpx-blue);
  text-shadow: 
    0 0 30px rgba(29, 108, 255, 0.4),
    0 0 60px rgba(29, 108, 255, 0.2);
  background: rgba(29, 108, 255, 0.08);
  border-color: rgba(29, 108, 255, 0.2);
}

#mpxIndex .mpx-countdown-wrap.is-ended .mpx-countdown-kicker {
  color: var(--mpx-blue);
}

/* Responsive */
@media (max-width: 575.98px) {
  #mpxIndex .mpx-countdown-wrap {
    padding: 28px 18px;
  }
  
  #mpxIndex .mpx-countdown-timer {
    gap: 6px;
  }
  
  #mpxIndex .mpx-countdown-unit {
    min-width: 60px;
  }
  
  #mpxIndex .mpx-countdown-value {
    min-width: 62px;
    padding: 10px 8px;
    font-size: 32px;
  }
  
  #mpxIndex .mpx-countdown-separator {
    font-size: 24px;
    margin: 0 2px;
    padding-bottom: 24px;
  }
  
  #mpxIndex .mpx-countdown-label {
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  #mpxIndex .mpx-countdown-value {
    min-width: 52px;
    padding: 8px 6px;
    font-size: 26px;
    border-radius: 10px;
  }
  
  #mpxIndex .mpx-countdown-separator {
    font-size: 20px;
  }
} 
#mpxIndex .mpx-countdown-value.pulse {
  transform: scale(1.05);
}


 
/* =========================================================
   MPX COUNTDOWN TIMER V2 - BOXED STYLE
   Add this to your index-extras.css file
   ========================================================= */

#mpxIndex .mpx-countdown-v2 {
  margin-top: 32px;
  padding: 30px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  border-radius: var(--mpx-radius);
  position: relative;
}

#mpxIndex .mpx-countdown-v2-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: nowrap; /* Keep all 4 on one row */
}

#mpxIndex .mpx-countdown-v2-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 110px;
}

#mpxIndex .mpx-countdown-v2-box {
  background: rgba(20, 20, 20, 0.95);
  border-bottom: 3px solid rgba(255, 201, 45, 0.9);
  border-radius: 8px;
  padding: 16px 28px;
  min-width: 90px;
  width: 100%;
  text-align: center;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#mpxIndex .mpx-countdown-v2-box .mpx-count {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

#mpxIndex .mpx-countdown-v2-label {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 201, 45, 0.9);
  text-transform: uppercase;
}

/* Hover effect on boxes */
#mpxIndex .mpx-countdown-v2-box:hover {
  border-color: rgba(255, 201, 45, 0.45);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 201, 45, 0.15);
}

/* =========================================================
   GLOWING BUTTON STYLES
   ========================================================= */
#mpxIndex .mpx-countdown-v2-cta {
  text-align: center;
  margin-top: 28px;
}

#mpxIndex .mpx-btn-glow {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--mpx-gold), var(--mpx-gold2));
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Glow effect behind button */
#mpxIndex .mpx-btn-glow::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--mpx-gold), var(--mpx-gold2));
  border-radius: 12px;
  filter: blur(16px);
  opacity: 0.6;
  z-index: -1;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Animated pulse glow */
#mpxIndex .mpx-btn-glow::after {
  content: "";
  position: absolute;
  inset: -6px;
  background: linear-gradient(135deg, var(--mpx-gold), var(--mpx-gold2));
  border-radius: 14px;
  filter: blur(25px);
  opacity: 0;
  z-index: -2;
  animation: mpxBtnPulse 2s ease-in-out infinite;
}

@keyframes mpxBtnPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.05); }
}

#mpxIndex .mpx-btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 201, 45, 0.4);
}

#mpxIndex .mpx-btn-glow:hover::before {
  opacity: 0.8;
  filter: blur(20px);
}

#mpxIndex .mpx-btn-glow:active {
  transform: translateY(0);
}

#mpxIndex .mpx-btn-glow-text {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
}

/* =========================================================
   GLOW BUTTON - LAYOUT (optional)
   ========================================================= */
#mpxIndex .mpx-countdown-v2-cta{
  text-align: center;
  margin-top: 28px;

  /* Optional: if you want 2 buttons nicely spaced */
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   GLOW BUTTON - BLUE VARIANT (Secondary button)
   Use: class="mpx-btn-glow mpx-btn-glow--blue"
   ========================================================= */
#mpxIndex .mpx-btn-glow.mpx-btn-glow--blue{
  /* EDIT HERE: Blue gradient colors */
  background: linear-gradient(135deg, #1D6CFF, #63A7FF);
}

/* Blue glow layer */
#mpxIndex .mpx-btn-glow.mpx-btn-glow--blue::before{
  background: linear-gradient(135deg, #1D6CFF, #63A7FF);
  opacity: 0.55;
}

/* Blue pulse layer */
#mpxIndex .mpx-btn-glow.mpx-btn-glow--blue::after{
  background: linear-gradient(135deg, #1D6CFF, #63A7FF);
}

/* Blue hover shadow */
#mpxIndex .mpx-btn-glow.mpx-btn-glow--blue:hover{
  box-shadow: 0 8px 30px rgba(29,108,255,0.45);
}

/* Blue text color (keeps contrast) */
#mpxIndex .mpx-btn-glow.mpx-btn-glow--blue .mpx-btn-glow-text{
  color: #06080c;
}

/* Optional: make the secondary button slightly smaller */
#mpxIndex .mpx-btn-glow.mpx-btn-glow--blue{
  padding: 16px 34px; /* slightly tighter than gold */
}
/* =========================================================
   OPTION B: HORIZONTAL LAYOUT (BUTTON ON RIGHT)
   ========================================================= */
#mpxIndex .mpx-countdown-v2-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 35px 40px;
}

#mpxIndex .mpx-countdown-v2-horizontal .mpx-countdown-v2-left {
  flex: 0 0 auto;
}

#mpxIndex .mpx-countdown-v2-horizontal .mpx-countdown-v2-right {
  flex: 1;
  max-width: 320px;
  text-align: left;
}

#mpxIndex .mpx-countdown-v2-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

#mpxIndex .mpx-countdown-v2-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px 0;
}

#mpxIndex .mpx-countdown-v2-right .mpx-btn-glow {
  padding: 14px 32px;
}

#mpxIndex .mpx-countdown-v2-right .mpx-btn-glow-text {
  font-size: 13px;
}

/* =========================================================
   RESPONSIVE STYLES - ALL 4 COUNTERS ON ONE ROW
   ========================================================= */

/* Horizontal layout stacks on tablet */
@media (max-width: 991.98px) {
  #mpxIndex .mpx-countdown-v2-horizontal {
    flex-direction: column;
    text-align: center;
    gap: 28px;
    padding: 30px 24px;
  }
  
  #mpxIndex .mpx-countdown-v2-horizontal .mpx-countdown-v2-right {
    max-width: 100%;
    text-align: center;
  }
  
  #mpxIndex .mpx-countdown-v2-title {
    font-size: 20px;
  }
}

/* Tablet */
@media (max-width: 767.98px) {
  #mpxIndex .mpx-countdown-v2 {
    padding: 24px 16px;
  }
  
  #mpxIndex .mpx-countdown-v2-inner {
    gap: 10px;
  }
  
  #mpxIndex .mpx-countdown-v2-box {
    padding: 14px 10px;
    min-width: auto;
  }
  
  #mpxIndex .mpx-countdown-v2-box .mpx-count {
    font-size: 36px;
  }
  
  #mpxIndex .mpx-countdown-v2-label {
    font-size: 9px;
    margin-top: 8px;
    letter-spacing: 0.1em;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  #mpxIndex .mpx-countdown-v2 {
    padding: 20px 12px;
  }
  
  #mpxIndex .mpx-countdown-v2-inner {
    gap: 6px;
  }
  
  #mpxIndex .mpx-countdown-v2-unit {
    max-width: none;
  }
  
  #mpxIndex .mpx-countdown-v2-box {
    padding: 12px 6px;
    border-radius: 6px;
  }
  
  #mpxIndex .mpx-countdown-v2-box .mpx-count {
    font-size: 28px;
  }
  
  #mpxIndex .mpx-countdown-v2-label {
    font-size: 8px;
    margin-top: 6px;
    letter-spacing: 0.08em;
  }
  
  #mpxIndex .mpx-countdown-v2-cta {
    margin-top: 20px;
  }
  
  #mpxIndex .mpx-btn-glow {
    padding: 12px 28px;
  }
  
  #mpxIndex .mpx-btn-glow-text {
    font-size: 12px;
  }
  
  #mpxIndex .mpx-countdown-v2-title {
    font-size: 16px;
  }
  
  #mpxIndex .mpx-countdown-v2-text {
    font-size: 12px;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  #mpxIndex .mpx-countdown-v2 {
    padding: 16px 8px;
  }
  
  #mpxIndex .mpx-countdown-v2-inner {
    gap: 4px;
  }
  
  #mpxIndex .mpx-countdown-v2-box {
    padding: 10px 4px;
  }
  
  #mpxIndex .mpx-countdown-v2-box .mpx-count {
    font-size: 22px;
  }
  
  #mpxIndex .mpx-countdown-v2-label {
    font-size: 7px;
  }
  
  #mpxIndex .mpx-btn-glow {
    padding: 10px 20px;
  }
  
  #mpxIndex .mpx-btn-glow-text {
    font-size: 11px;
  }
}

/* =========================================================
   EVENT ENDED STATE
   ========================================================= */
#mpxIndex .mpx-countdown-v2.is-ended .mpx-countdown-v2-box {
  border-color: rgba(29, 108, 255, 0.3);
}

#mpxIndex .mpx-countdown-v2.is-ended .mpx-countdown-v2-label {
  color: var(--mpx-blue);
}

#mpxIndex .mpx-countdown-v2.is-ended .mpx-btn-glow {
  background: linear-gradient(135deg, var(--mpx-blue), var(--mpx-blue2));
}

#mpxIndex .mpx-countdown-v2.is-ended .mpx-btn-glow::before,
#mpxIndex .mpx-countdown-v2.is-ended .mpx-btn-glow::after {
  background: linear-gradient(135deg, var(--mpx-blue), var(--mpx-blue2));
}

