        body { background-color: #e2c892; color: #63cd9a; scroll-behavior: smooth; overflow-x: hidden; }
        
        #snow-canvas { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; }
        
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }
        
        .gift-card { transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
        .gift-card:hover { transform: translateY(-8px); }
        
        .glow-hover:hover { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
        
        .side-panel { transform: translateX(100%); transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
        .side-panel.open { transform: translateX(0); }

        .nav-scrolled { background: rgba(253, 251, 247, 0.9); backdrop-filter: blur(12px); padding-top: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(26, 57, 42, 0.05); }

        .sparkle-btn { position: relative; overflow: hidden; }
        .sparkle-btn::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent); transform: rotate(45deg); transition: 0.5s; left: -100%; }
        .sparkle-btn:hover::after { left: 100%; }

        [data-view] { display: none; }
        [data-view].active { display: block; }

        .custom-scrollbar::-webkit-scrollbar { width: 4px; }
        .custom-scrollbar::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 10px; }
  /* Container styling */
  #subscription-form {
    max-width: 400px;
    margin: 40px auto;
    padding: 25px 30px;
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
  }

  #subscription-form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }

  label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
  }

  input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    color: #007bff;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 16px;
    transition: border 0.2s;
  }

  input[type="email"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
  }

  .button-group {
    display: flex;
    justify-content: space-between;
  }

  button {
    flex: 1;
    padding: 10px 0;
    margin: 0 5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
  }

  #subscribeBtn {
    background-color: #28a745;
    color: white;
  }

  #unsubscribeBtn {
    background-color: #dc3545;
    color: white;
  }

  button:hover {
    transform: translateY(-2px);
  }

  #subscribeBtn:hover {
    background-color: #218838;
  }

  #unsubscribeBtn:hover {
    background-color: #c82333;
  }

  #feedback {
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
  }
