body {
    font-family: 'Inter', sans-serif;
    background-color: #050810;
    color: #EAEAEA;
    overflow-x: hidden;
}

#plexus-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.font-header {
    font-family: 'Exo 2', sans-serif;
}

.url-input-wrapper {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(30, 215, 96, 0.2));
    padding: 2px;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.url-input-wrapper:focus-within {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.5), rgba(30, 215, 96, 0.5));
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.3);
}

.url-input {
    border: none;
    outline: none;
    background-color: transparent;
}

.glow-purple {
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.8);
}

.glow-cyan {
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.8);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom-color: #fff;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.card-bg {
    background: rgba(10, 15, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
