
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


 :root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f1a;
    --bg-tertiary: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a1a1b5;
    --text-muted: #71717f;
    
    --primary-blue: #3b82f6;
    --primary-magenta: #8b5cf6;
    --accent-purple: #a855f7;
    --accent-indigo: #6366f1;
    
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-hover: rgba(255, 255, 255, 0.04);
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }


*{
   font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

body{
    background-color: rgb(255, 255, 255);
    color: #000000;
}

a {
    color: inherit;
    text-decoration: none;
}
