* { box-sizing: border-box; } body {margin: 0;}#iq7m4{color:black;width:100%;max-width:900px;}#im0p{border-radius:20px 20px 0px 0px;border-style:solid;border-color:#f8e31c;color:#f8e31c;border-width:5px 5px 5px 5px;}#ix1b{display:inline;}#ihmd9{display:inline;}#i8ro9{border-radius:20px 20px 0px 0px;border-style:solid;border-color:#f8e31c;color:#f8e31c;border-width:5px 5px 5px 5px;}
  .egg {
    position: fixed;
    top: -80px;
    width: 36px;
    height: 46px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: fall linear forwards;
    pointer-events: none;
    opacity: 1;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    z-index: 9998;
  }
  .egg.golden {
    width: 58px;
    height: 72px;
    background: radial-gradient(ellipse at 35% 30%, #fff8b0 0%, #f5c842 40%, #b8860b 80%, #7a5500 100%);
    filter: drop-shadow(0 0 10px rgba(255,200,30,0.7));
    animation: fallGolden linear forwards;
    pointer-events: all;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.15s;
  }
  .egg.golden:hover {
    transform: scale(1.15);
  }
  .egg.golden::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 22px;
    color: rgba(255,255,200,0.9);
    pointer-events: none;
  }
  @keyframes fall {
    0%   {
      opacity: 1;
    }
    100% {
      top: 110vh;
      opacity: 0.8;
    }
  }
  @keyframes fallGolden {
    0%   {
      opacity: 1;
    }
    100% {
      top: 110vh;
      opacity: 0.8;
    }
  }
  /* ── Popup overlay ── */
  #overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 10000;
    align-items: center;
    justify-content: center;
  }
  #overlay.show {
    display: flex;
  }
  #popup {
    background: #fffdf5;
    border-radius: 18px;
    padding: 44px 40px 36px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 48px rgba(0,0,0,0.28);
    border: 2px solid #f0c040;
    animation: popIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
  }
  @keyframes popIn {
    from {
      transform: scale(0.6) translateY(30px);
      opacity: 0;
    }
    to   {
      transform: scale(1) translateY(0);
      opacity: 1;
    }
  }
  #popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #b8860b;
    line-height: 1;
    padding: 4px 8px;
  }
  #popup-egg-icon {
    font-size: 52px;
    margin-bottom: 8px;
    display: block;
    animation: wiggle 0.6s ease 0.35s both;
  }
  @keyframes wiggle {
    0%,100% {
      transform: rotate(0deg);
    }
    25%      {
      transform: rotate(-12deg);
    }
    75%      {
      transform: rotate(12deg);
    }
  }
  #popup h2 {
    font-size: 22px;
    color: #7a5500;
    margin: 0 0 8px;
    font-weight: 700;
  }
  #popup p {
    font-size: 14px;
    color: #8a7040;
    margin: 0 0 20px;
    line-height: 1.5;
  }
  #promo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff8dc;
    border: 2px dashed #e0a820;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 18px;
  }
  #promo-code {
    font-family: 'Courier New', monospace;
    font-size: 26px;
    font-weight: 700;
    color: #b8860b;
    letter-spacing: 4px;
  }
  #copy-btn {
    background: #f5c842;
    border: none;
    border-radius: 7px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #7a5500;
    transition: background 0.2s, transform 0.1s;
  }
  #copy-btn:hover  {
    background: #e0a820;
  }
  #copy-btn:active {
    transform: scale(0.95);
  }
  #popup-cta {
    display: inline-block;
    background: linear-gradient(135deg, #f5c842, #e09810);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    padding: 13px 32px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(180,130,0,0.3);
    transition: filter 0.2s, transform 0.1s;
  }
  #popup-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }
  #copy-toast {
    font-size: 12px;
    color: #4caf50;
    margin-top: 8px;
    height: 16px;
    font-weight: 600;
  }
