@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
}

/* Glassmorphism */
.glass {
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Background Animation */
.gradient-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: linear-gradient(-45deg, #0f172a, #1e1b4b, #312e81, #1e1b4b);
    background-size: 400% 400%;
    animation: moveGrad 15s infinite;
}

@keyframes moveGrad {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

.neon-text {
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

/* Toast System */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
    from { transform: translateX(120%); }
    to { transform: translateX(0); }
}

/* Timer Circle */
.timer-circle {
    stroke-dasharray: 365;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.redirect-page {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
}