html { scroll-behavior: smooth; }

body {
    margin: 50px;
    padding: 50px;
    overflow-x: hidden;
    font-family: 'Inter', system-ui, sans-serif;
    background: url('background.png') no-repeat center center/cover;
    background-attachment: fixed;
    background-size: cover;
}

.white-black-gradient {
    background: linear-gradient(90deg, #ffffff, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(90deg, #ff6ec4, #7873f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.glass:hover {
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 6px 40px rgba(255, 255, 255, 0);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

.glass-button {
    animation: float 5s ease-in-out infinite;
}

.pl-7 { padding-left: 1.75rem; }
