body {
    background-color: #0f172a;
    overflow-x: hidden;
}

.glow {
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.7),
                0 0 20px rgba(99, 102, 241, 0.5),
                0 0 30px rgba(99, 102, 241, 0.3);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    filter: blur(5px);
    animation: moveDot 20s linear infinite;
}

@keyframes moveDot {
    0% { transform: translate(0, 0); }
    25% { transform: translate(100px, 100px); }
    50% { transform: translate(200px, 0); }
    75% { transform: translate(100px, -100px); }
    100% { transform: translate(0, 0); }
}

.countdown-item {
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: scale(1.1);
    background-color: rgba(99, 102, 241, 0.3);
}

.custom-input {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.submit-btn {
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.corner-form {
    transform: rotate(-5deg);
}
