 @keyframes snowfall {
        0% {
          transform: translateY(-100%) translateX(0);
        }
        100% {
          transform: translateY(100%) translateX(20px);
        }
      }

      .popup-overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        z-index: 50;
      }

      .popup-container {
        position: relative;
        background: linear-gradient(135deg, #1a472a, #2d5a40);
        border-radius: 0.5rem;
        overflow: hidden;
        padding: 2rem;
        max-width: 28rem;
        width: 100%;
      }

      .popup-content {
        position: relative;
        background-color: white;
        border-radius: 0.5rem;
        padding: 2rem;
        z-index: 1;
      }

      .close-button {
        position: absolute;
        right: 1rem;
        top: 1rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #6b7280;
        z-index: 2;
      }

      .close-button:hover {
        color: #374151;
      }

      .snowflake {
        position: absolute;
        color: #fff;
        font-size: 1em;
        font-family: Arial, sans-serif;
        text-shadow: 0 0 5px #fff;
        pointer-events: none;
      }

      .christmas-lights {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        pointer-events: none;
      }

      .light {
        position: absolute;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        animation: twinkle 1s infinite;
      }

      @keyframes twinkle {
        0%, 100% { opacity: 0; }
        50% { opacity: 1; }
      }

      .icon-container {
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
      }

      .icon-circle {
        background-color: #fee2e2;
        padding: 0.75rem;
        border-radius: 9999px;
      }

      .title {
        font-size: 1.5rem;
        font-weight: bold;
        text-align: center;
        color: #111827;
        margin-bottom: 1rem;
      }

      .offer-text {
        text-align: center;
        margin-bottom: 1.5rem;
      }

      .subtitle {
        font-size: 1.125rem;
        color: #374151;
        margin-bottom: 0.5rem;
      }

      .price {
        font-size: 1.875rem;
        font-weight: bold;
        color: #dc2626;
        margin-bottom: 0.5rem;
      }

      .description {
        font-size: 0.875rem;
        color: #6b7280;
      }

      .offer-button {
        width: 100%;
        background-color: #dc2626;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.2s;
      }

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

      .terms {
        font-size: 0.75rem;
        text-align: center;
        color: #6b7280;
        margin-top: 1rem;
      }

      @keyframes fade-in {
        from {
          opacity: 0;
          transform: scale(0.95);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

      .animate-fade-in {
        animation: fade-in 0.3s ease-out;
      }

      .hidden {
        display: none;
      }