::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0f1d;
}

::-webkit-scrollbar-thumb {
    background: #2a3447;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #007BFF;
}

.distant-starfield {
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
}

.glass-card-refined {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-card-refined:hover {
    border-color: #00D2FF;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.text-glow {
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
}

.gradient-text {
    background: linear-gradient(to right, #007BFF, #00D2FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stars {
    background-image:
        radial-gradient(1.5px 1.5px at 25px 5px, white, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 50px 25px, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 125px 20px, white, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 250px 90px, rgba(255, 255, 255, 0.7), rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 350px 150px, white, rgba(0, 0, 0, 0));
    background-size: 550px 550px;
    opacity: 0.5;
}

.particle-network {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.animate-twinkle {
    animation: twinkle 3s infinite ease-in-out;
}

details[open] summary~* {
    animation: fadeIn 0.3s ease-in-out;
}

details[open] {
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hud-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(0, 210, 255, 0.3);
}

/* Deep Sky Chile Link Hover Fix */
.dsc-link {
    transition: color 0.3s ease;
}

.dsc-link:hover {
    color: #00D2FF !important;
    text-decoration: none;
}