﻿body {
    margin: 0;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #3b82f6 0%, #0f172a 100%);
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 2;
}

.card {
    border-radius: 20px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
}

    .card:hover {
        transform: scale(1.05);
    }

.curves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('Assets/Images/curve-pattern.png');
    opacity: 0.2;
    z-index: 0;
}

