:root {
    --primary-color: #ff9a9c;
    --secondary-color: #ffffff;
    --accent-color: #ffffff;
    --text-color: #f8f8f8;
    --bg-color: #f8f9fa;
  }
  
  body, html {
    height: 100%;
    margin: 0;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }
  
  .loader {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
  }
  
  .logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }
  
  .logo-orb {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: pulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-origin: center;
  }
  
  .logo-pulse {
    animation: colorShift 8s linear infinite;
  }
  
  .logo-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: 
      rotate 3s cubic-bezier(0.65, 0, 0.35, 1) infinite,
      glow 6s ease-in-out infinite;
    transform-origin: center;
    z-index: 2;
  }
  
  .logo-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary-color);
    top: 0;
    left: 0;
    animation: ripple 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 1;
    opacity: 0;
  }
  
  .logo-text {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    
  }
  
  .logo-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
  }
  
  /* Keyframe Animations */
  @keyframes rotate {
    0% {
      transform: rotate(0deg) scale(1);
    }
    50% {
      transform: rotate(180deg) scale(1.05);
    }
    100% {
      transform: rotate(360deg) scale(1);
    }
  }
  

  @keyframes ripple {
    0% {
      transform: scale(0.8);
      opacity: 0.8;
    }
    100% {
      transform: scale(1.4);
      opacity: 0;
    }
  }
  
  .big-logo {
    width: 200px; /* or any size you want */
    height: auto;
  }
  