/* LOADER */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #020617;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #334155;
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* SOCIAL FIX */
.social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social a {
    color: white;
    background: #1e293b;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
}

.social a:hover {
    background: #334155;
}