:root {
    --primary-color: #9E5CF2;
    --primary-dark: #9E5CF2;
    --secondary-color: #ec4899;
    --text-color: #1f2937;
    --background-color: #f3f4f6;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1606761568499-6d2451b23c66?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.4) 0%,
        rgba(236, 72, 153, 0.4) 100%
    );
    backdrop-filter: blur(10px);
    z-index: 1;
}