:root{
  --mm-popup-green:#0b5c3b;
  --mm-popup-dark-green:#0d3528;
  --mm-popup-black:#0a0d0b;
  --mm-popup-panel:#151b17;
  --mm-popup-gold:#d6ad5c;
  --mm-popup-cream:#eee5d2;
  --mm-popup-muted:#aeb8b1;
}

mickey-promo-popup{
  display:block;
  font-family:Arial,sans-serif;
}

body.mm-popup-open{
  overflow:hidden;
}

.mm-popup-overlay{
  position:fixed;
  inset:0;
  z-index:10000;
  display:grid;
  place-items:center;
  padding:20px;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(4px);
}

.mm-popup-overlay[hidden] {
  display: none !important;
}

.mm-popup-card{
  position:relative;
  display:grid;
  grid-template-columns:minmax(280px,.9fr) minmax(320px,1.1fr);
  width:min(980px,100%);
  max-height:calc(100vh - 40px);
  overflow:auto;
  border:2px solid var(--mm-popup-gold);
  background:var(--mm-popup-black);
  color:white;
  box-shadow:0 24px 80px rgba(0,0,0,.55);
}

.mm-popup-close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:3;
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border:1px solid var(--mm-popup-gold);
  border-radius:50%;
  background:rgba(0,0,0,.85);
  color:white;
  font-size:28px;
  cursor:pointer;
}

.mm-popup-media{
  min-height:520px;
  background:#050705;
}

.mm-popup-media img{
  display:block;
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
}

.mm-popup-placeholder{
  display:grid;
  place-items:center;
  height:100%;
  min-height:520px;
  background:radial-gradient(circle at center,#1d4a37,#050705 72%);
}

.mm-popup-placeholder span{
  display:grid;
  place-items:center;
  width:150px;
  height:150px;
  border:8px solid white;
  border-radius:50%;
  background:#020202;
  color:white;
  font-size:80px;
  font-weight:700;
}

.mm-popup-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:58px 48px 45px;
  background:
    linear-gradient(rgba(13,53,40,.94),rgba(9,22,16,.98));
}

.mm-popup-kicker{
  margin:0;
  color:var(--mm-popup-gold);
  font-size:12px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}

.mm-popup-content h2{
  margin:8px 0 18px;
  font-size:clamp(38px,5vw,64px);
  line-height:.95;
  text-transform:uppercase;
}

.mm-popup-message{
  margin:0 0 24px;
  color:#d6dfd9;
  font-size:17px;
  line-height:1.65;
}

.mm-popup-countdown{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin:8px 0 28px;
}

.mm-popup-countdown div{
  padding:14px 8px;
  background:rgba(0,0,0,.35);
  border:1px solid #496655;
  text-align:center;
}

.mm-popup-countdown strong,
.mm-popup-countdown span{
  display:block;
}

.mm-popup-countdown strong{
  color:var(--mm-popup-gold);
  font-size:30px;
}

.mm-popup-countdown span{
  margin-top:4px;
  color:#c5cec8;
  font-size:10px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.mm-popup-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.mm-popup-button,
.mm-popup-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 20px;
  border:1px solid #2b9267;
  background:var(--mm-popup-green);
  color:white;
  text-decoration:none;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  cursor:pointer;
}

.mm-popup-secondary{
  border-color:#69776f;
  background:transparent;
}

.mm-popup-dismiss{
  display:flex;
  align-items:flex-start;
  gap:9px;
  margin-top:20px;
  color:#b9c3bd;
  font-size:12px;
  line-height:1.4;
}

.mm-popup-dismiss input{
  margin-top:2px;
}

@media(max-width:760px){
  .mm-popup-card{
    grid-template-columns:1fr;
  }

  .mm-popup-media,
  .mm-popup-media img,
  .mm-popup-placeholder{
    min-height:0;
    max-height:52vh;
  }

  .mm-popup-media{
    aspect-ratio:4/5;
  }

  .mm-popup-content{
    padding:35px 24px 28px;
  }

  .mm-popup-countdown strong{
    font-size:24px;
  }
}

@media(max-width:430px){
  .mm-popup-overlay{
    padding:8px;
  }

  .mm-popup-countdown{
    grid-template-columns:repeat(2,1fr);
  }

  .mm-popup-actions{
    flex-direction:column;
  }

  .mm-popup-button,
  .mm-popup-secondary{
    width:100%;
  }
}
