@import url('https://fonts.cdnjs.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    background: linear-gradient(to bottom, #000000, #0a0a0a);
    letter-spacing: -0.02em;
}

.snowball {
    background: radial-gradient(circle at 30% 30%, #ffffff, rgba(255,255,255,0.8) 40%, rgba(255,255,255,0.2) 80%);
    border-radius: 50%;
    position: fixed;
    top: -10px;
    filter: blur(1px);
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(20deg);
    }
}
.notification {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 3rem 1rem 1.5rem;
    border-radius: 1rem;
    color: white;
    margin-top: 0.5rem;
    position: relative;
    transform: translateX(150%);
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    transform: translateY(-50%) rotate(180deg);
}

.notification-close::before,
.notification-close::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: white;
    border-radius: 1px;
}

.notification-close::before {
    transform: rotate(45deg);
}

.notification-close::after {
    transform: rotate(-45deg);
}

.glass {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.text-gradient {
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-gradient {
    background: linear-gradient(45deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
}

.premium-btn {
    position: relative;
    display: inline-block;
    width: auto;
}

.premium-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(255, 217, 0, 0.3), transparent 70%);
    filter: blur(15px);
    animation: pulse 2s infinite;
    z-index: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    
}
