@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');



* {
    font-family: 'Space Grotesk', sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(135deg, #FF3366, #CB5EEE, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-glow {
    position: relative;
    overflow: hidden;
}

.card-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, rgba(0,0,0,0) 70%);
    transform: rotate(0deg);
    transition: all 0.5s ease;
    z-index: -1;
}

.card-glow:hover::before {
    transform: rotate(180deg);
}

.hover-scale {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.hero-gradient {
    background: radial-gradient(circle at top center, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0) 70%),
                radial-gradient(circle at bottom left, rgba(255, 51, 102, 0.1) 0%, rgba(0,0,0,0) 70%);
}

.glass-effect {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.wave-animation {
    animation: wave 8s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.pricing-highlight {
    position: relative;
    overflow: hidden;
}

.pricing-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.button-gradient {
    background: linear-gradient(135deg, #FF3366, #CB5EEE);
    transition: all 0.3s ease;
}

.button-gradient:hover {
    background: linear-gradient(135deg, #FF3366, #CB5EEE);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(203, 94, 238, 0.2);
}

.noise-bg {
    position: relative;
}

.noise-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjMwMCIgaGVpZ2h0PSIzMDAiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
}

/* Curseur personnalisé */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #CB5EEE;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: none; /* Supprimez la transition */
    will-change: transform; /* Optimise les performances */
    transform: translate(-50%, -50%);
}
