@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(90deg, #6b46c1 0%, #9f7aea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-bg {
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, rgb(255, 255, 255) 100%);
}

.qr-code {
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 70, 193, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(107, 70, 193, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(107, 70, 193, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.animated-gradient {
    background: linear-gradient(-45deg, #6b46c1, #9f7aea, #805ad5, #6b46c1);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.glow {
    text-shadow: 0 0 10px rgba(107, 70, 193, 0.5);
}

.logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 30;
}

@media (max-width: 768px) {
    .logo {
        position: relative;
        top: 0;
        left: 0;
        padding: 1.5rem;
        display: flex;
        justify-content: center;
    }
}