  :root {
      --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      --accent-color: #ff6b6b;
      --success-color: #1dd1a1;
      --warning-color: #feca57;
      --text-dark: #2d3436;
      --text-light: #636e72;
      --background-light: #f8f9fa;
      --white: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      min-height: 100vh;
      background-color: var(--background-light);
      color: var(--text-dark);
      position: relative;
      overflow-x: hidden;
    }

    /* Hero Section */
    #hero-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: -2;
      overflow: hidden;
    }

    .background-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
    }

    .background-slide.active {
      opacity: 1;
    }

    .background-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: -1;
    }

    #hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      min-height: 100vh;
      position: relative;
      z-index: 1;
      color: var(--white);
      text-align: center;
    }

    #hero-text-container {
      max-width: 100%;
      margin-bottom: 2rem;
    }

    #hero-main-headline {
      font-size: 3.0rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color:rgb(244, 237, 244);
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      border: #ff6b6b;
      border-radius: 14px;
      border-style: var(--accent-color);
      border-color: #667eea;
    }

    #hero-subheading {
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .hero-badge {
      display: inline-block;
      background: var(--accent-color);
      color: var(--white);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.25rem 0.75rem;
      border-radius: 2rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    #hero-stats {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 2rem;
      width: 100%;
    }

    .hero-stat {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      border-radius: 0.75rem;
      padding: 0.75rem 1rem;
      min-width: 7rem;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: transform 0.3s ease;
    }

    .hero-stat:hover {
      transform: translateY(-5px);
    }

    .stat-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.25rem;
    }

    .stat-label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.8);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Floating Elements */
    .floating-element {
      position: absolute;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      animation: float 5s infinite ease-in-out;
      z-index: 1;
    }

    .floating-element i {
      font-size: 1.25rem;
      color: var(--white);
    }

    .floating-element:nth-child(1) {
      top: 20%;
      left: 10%;
      animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
      top: 15%;
      right: 15%;
      animation-delay: 1s;
    }

    .floating-element:nth-child(3) {
      bottom: 20%;
      left: 15%;
      animation-delay: 2s;
    }

    .floating-element:nth-child(4) {
      bottom: 15%;
      right: 10%;
      animation-delay: 3s;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-15px);
      }
    }

    /* CTA Buttons */
    #hero-cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: 300px;
      margin: 0 auto 2rem;
    }

    .cta-primary, .cta-secondary, .form-button, .login-button {
      width: 100%;
      padding: 0.9rem 1.5rem;
      border-radius: 0.5rem;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      text-align: center;
      transition: all 0.3s ease;
      border: none;
      outline: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .cta-primary {
      background: var(--primary-gradient);
      color: var(--white);
    }

    .cta-secondary {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cta-primary:hover, .form-button:hover, .login-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .cta-secondary:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, 0.2);
    }

    .cta-primary:active, .cta-secondary:active, .form-button:active, .login-button:active {
      transform: translateY(1px);
    }

    /* Auth Forms */
    #auth-container {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 1rem;
      padding: 1.5rem;
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
      z-index: 2;
    }

    #auth-switcher {
      display: flex;
      margin-bottom: 1.5rem;
      border-radius: 0.5rem;
      overflow: hidden;
      background: var(--background-light);
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    #switch-register, #switch-login {
      flex: 1;
      text-align: center;
      padding: 0.75rem;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.3s ease;
      color: var(--text-light);
    }

    #switch-register.active, #switch-login.active {
      background: var(--primary-gradient);
      color: var(--white);
    }

    #auth-form-container {
      position: relative;
      overflow: hidden;
    }

    #register-form, #login-form {
      width: 100%;
      transition: transform 0.5s ease, opacity 0.5s ease;
    }

    #login-form {
      position: absolute;
      top: 0;
      left: 0;
      transform: translateX(100%);
      opacity: 0;
    }

    #register-form.hidden {
      transform: translateX(-100%);
      opacity: 0;
    }

    #login-form.visible {
      transform: translateX(0);
      opacity: 1;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--text-dark);
      font-size: 0.9rem;
    }

    .form-input {
      width: 100%;
      padding: 0.85rem 1rem;
      border-radius: 0.5rem;
      border: 1px solid rgba(0, 0, 0, 0.1);
      font-size: 1rem;
      transition: all 0.3s ease;
      background-color: var(--white);
    }

    .form-input:focus {
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
      outline: none;
    }

    .password-toggle-wrapper {
      position: relative;
    }

    .password-toggle {
      position: absolute;
      right: 1rem;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      color: var(--text-light);
      background: none;
      border: none;
      font-size: 1rem;
    }

    .form-button, .login-button {
      background: var(--primary-gradient);
      color: var(--white);
      margin-top: 1rem;
    }

    .form-footer {
      margin-top: 1.5rem;
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-light);
    }

    .form-footer a {
      color: #667eea;
      text-decoration: none;
      font-weight: 500;
    }

    .checkbox-group {
      display: flex;
      align-items: center;
      margin-top: 1rem;
      user-select: none;
    }

    .checkbox-group input {
      margin-right: 0.5rem;
      cursor: pointer;
    }

    .checkbox-group label {
      font-size: 0.85rem;
      color: var(--text-dark);
      cursor: pointer;
    }

    /* Login Modal */
    #loginModalOverlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(5px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    #loginModalOverlay.visible {
      opacity: 1;
      visibility: visible;
    }

    #loginModal {
      background: var(--white);
      border-radius: 1rem;
      padding: 1.5rem;
      width: 90%;
      max-width: 350px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      transform: translateY(20px);
      transition: transform 0.3s ease;
      position: relative;
    }

    #loginModalOverlay.visible #loginModal {
      transform: translateY(0);
    }

    .login-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      font-size: 1.25rem;
      color: var(--text-light);
      cursor: pointer;
    }

    /* Footer */
    footer {
      background: rgba(0, 0, 0, 0.3);
      padding: 1.5rem;
      text-align: center;
      margin-top: 2rem;
      position: relative;
      z-index: 2;
    }

    footer a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      margin: 0 0.75rem;
      font-size: 0.85rem;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: var(--white);
    }

    /* For larger mobile screens */
    @media (min-width: 425px) {
      #hero-main-headline {
        font-size: 2.75rem;
      }

      #hero-subheading {
        font-size: 1.2rem;
      }

      .hero-stat {
        min-width: 8rem;
      }
    }
/* Dark, visible styling - high contrast */
/* Purplish Password Styles - Matching Primary Gradient */
/* Purplish Password Styles - Matching Primary Gradient */
.password-field-wrapper {
    margin-bottom: 20px;
    width: 100%;
}

.password-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.modern-password-input {
    width: 100%;
    padding: 14px 48px 14px 16px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.modern-password-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.modern-password-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Password Toggle Button */
.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
    z-index: 2;
}

.password-toggle-btn:hover {
    color: #8b5cf6;
}

.password-toggle-btn i {
    font-size: 18px;
}

/* Password Strength Bar */
.password-strength-bar {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    height: 6px;
}

.strength-segment {
    flex: 1;
    height: 100%;
    background: #e2e8f0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.strength-segment.weak {
    background: linear-gradient(90deg, #ef4444, #f97316);
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

.strength-segment.medium {
    background: linear-gradient(90deg, #f59e0b, #eab308);
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.4);
}

.strength-segment.strong {
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    box-shadow: 0 0 6px rgba(139, 92, 246, 0.5);
}

/* Modern Password Hint - Purplish Gradient */
.modern-password-hint {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.hint-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.hint-icon {
    color: #ffffff;
    stroke-width: 2;
}

.hint-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.hint-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.2s ease;
    padding: 4px 0;
}

.hint-item .check-icon {
    stroke: currentColor;
    stroke-width: 2.5;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.hint-item.valid {
    color: #a7f3d0;
}

.hint-item.valid .check-icon {
    opacity: 1;
    transform: scale(1);
}

/* Confirm password match styling */
.confirm-match {
    color: #a7f3d0;
}

.confirm-mismatch {
    color: #fca5a5;
}

/* Toast Success - Purplish Version */
.toast-success-payment {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .hint-items {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .modern-password-hint {
        padding: 12px;
    }
    
    .hint-header {
        font-size: 12px;
    }
    
    .hint-item {
        font-size: 11px;
    }
    
    .toast-success-payment {
        top: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
        padding: 12px 16px;
    }
}
.toast-success-payment {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #16a34a;
  color: white;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toast-error-payment {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #dc2626;
  color: white;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;

  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.toast-error.show {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-community-btn{
    display:flex;
    align-items:center;
    gap:8px;
    width:fit-content;
    background-color:#25D366;
    color:white;
    padding:10px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    font-family:sans-serif;
    margin-bottom:10px;
    transition:0.3s ease;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-community-btn i{
    font-size:28px;
    background:white;
    color:#25D366;
    width:30px;
    height:30px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.whatsapp-community-btn:hover{
    transform:scale(1.05);
    background:#1ebe5d;
}