 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans&display=swap');
        
        :root {
            --primary: #A250A0;
            --secondary: #FA60A8;
            --dark: #160a3d;
            --light: #F8F5FC;
        }
        
        body {
            margin: 0;
            padding: 0;
            font-family: 'Open Sans', sans-serif;
            background: 
linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
         .coming-soon-container {
           max-width: 800px;
            padding: 2rem;
            margin: 2rem;
            background: rgba(0,0,0,0.7);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .pledge-card {
             background: rgba(162, 80, 160, 0.1);
            border: 1px solid #A250A0;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 16px;
            width: 100%;
            max-width: 420px;
            padding: 40px 35px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
        }

       
        

h1 {
        
 margin-bottom: 1rem;
 color: #FA60A8;

  font-family: 'Montserrat', sans-serif;
  font-size: 1.85rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
            
}

        .inspiration {
            color: rgb(208, 199, 199);
            margin-bottom: 30px;
            font-size: 1rem;
            line-height: 1.6;
        }

        .pledge-input {
            position: relative;
            margin: 30px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }

        .pledge-amount {
            padding: 15px;
            font-size: 1.1rem;
            border: none;
            border-radius: 8px;
            outline: none;
            background: rgba(248, 245, 252, 0.9);
            width: 100px;
            text-align: center;
        
        }

        .pledge-amount::-webkit-outer-spin-button,
        .pledge-amount::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .currency-label {
            font-weight: bold;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 15px 30px;
            width: 100%;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(162, 80, 160, 0.4);
            margin-bottom: 20px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(162, 80, 160, 0.5);
        }

        #paypal-button-container {
            margin-top: 20px;
            display: none;
        }
        
.coming-soon-container {
    overflow: visible; /* Allows social icons to escape container bounds */
}
.social-links {
    position: relative;
    z-index: 10; /* Ensures icons appear above other elements */
}
      /* DIVIDER - This version WILL work */
.section-divider {
  display: block;
  height: 3px;
  width: 100%;
  margin: 1.5rem 0;
  border: none;
  
  /* Modern browsers */
  background-image: linear-gradient(90deg, 
    #dc32a9, #7e1994, 
    #f7bebe, #9400D3,  #dc32a9);
  
  /* Fallback for older browsers */
  background-color: #FF0000; /* Solid red fallback */
  
  /* Add these properties to ensure visibility */
  opacity: 1 !important;
  visibility: visible !important;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.section-divider-animate {
  display: block;
  height: 3px;
  width: 100%;
  margin: 1.5rem 0;
  border: none;
  position: relative;
  overflow: hidden;
  
  /* Fallback solid color */
  background-color: #f5ddc9;
}

.section-divider-animate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  /* Gradient with the colors you want */
  background: linear-gradient(
    90deg,
    rgba(220, 50, 169, 0) 0%,
    rgba(220, 50, 169, 1) 20%,
    rgba(126, 25, 148, 1) 40%,
    rgba(247, 190, 190, 1) 60%,
    rgba(148, 0, 211, 1) 80%,
    rgba(220, 50, 169, 0) 100%
  );
  
  /* Animation properties */
  animation: shimmer 9s infinite linear;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.site-footer {
text-align: right;
padding-right:20px;

position: fixed;
height:20px;
bottom:10px;
right: 0px;
left: 0px;
}

.site-footer p {
      margin-top:-15px;
      font-size: 16px;
      color: rgba(107, 11, 190, 0.9);
    }
.copyright {
      
      font-size: 12px;
      bottom: 0px;
    color: rgba(107, 11, 190, 0.9);
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    .pledge-card {
        padding: 30px 25px;
    }
}