
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.custom-bg {
    background-image: url('https://cdn.zteam21.dev/images/2025/10/28/bg-zteam21.jpeg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

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


.results-list {
    margin-top: 1.5rem; 
    border: 1px solid #334155; 
    border-radius: 0.5rem;
    background-color: rgba(15, 23, 42, 0.5);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem; 
    border-bottom: 1px solid #334155;
}
.result-item:last-child {
    border-bottom: none; 
}

.result-domain {
    font-family: 'Courier New', Courier, monospace; 
    font-size: 0.9rem;
    color: #cbd5e1; 
}

.result-status {
    display: flex;
    align-items: center;
    font-weight: 600;
}


.status-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem; 
    flex-shrink: 0; 
}

.status-light-green {
    background-color: #22c55e; 
    box-shadow: 0 0 6px #22c55e; 
}

.status-light-red {
    background-color: #ef4444; 
    animation: blink-red 1.2s infinite ease-in-out;
}


@keyframes blink-red {
    0%, 100% {
        background-color: #ef4444; 
        box-shadow: 0 0 6px #ef4444;
    }
    50% {
        background-color: #f87171;
        box-shadow: 0 0 10px 2px #ef4444; 
    }
}

