/* ===== Home & 404 page styles ===== */
.stellar-inscription {
    position: absolute;
    color: rgba(255,255,255,0.3);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
    transition: text-shadow 0.3s ease;
    cursor: pointer;
    padding: 10px;
    animation: breathing 10s ease-in-out infinite;
}
.stellar-inscription a:hover {
    color: rgba(255,255,255,0.6);
}
.link-list {
    display: none;
    margin-top: 14px;
}
.link-list a {
    display: block;
    padding: 3px 0;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    font-size: 1rem;
    text-shadow: 0 0 3px rgba(255,255,255,0.3);
    transition: color 0.3s ease, text-shadow 0.3s ease;
    letter-spacing: 0.15em;
}
.link-list a:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255,255,255,0.9);
}
.link-group {
    margin-top: 6px;
    margin-bottom: 6px;
}
.link-group-title {
    display: block;
    color: rgba(255,255,255,0.3);
    font-size: 1rem;
    letter-spacing: 0.15em;
    cursor: default;
    text-shadow: 0 0 3px rgba(255,255,255,0.3);
}
.link-group-items {
    display: none;
    padding-left: 1.2em;
    margin-top: 2px;
}
.link-group:hover .link-group-items {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}
.link-group-items a {
    font-size: 0.85rem;
    padding: 2px 0;
}
.stellar-inscription:hover .link-list {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}
@media (max-width: 768px) {
    .stellar-inscription {
        font-size: 1.8rem;
        top: 36%;
    }
    .link-list a {
        font-size: 1.1rem;
    }
    .link-group-title {
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .stellar-inscription {
        font-size: 1.8rem;
        top: 36%;
    }
    .link-list a {
        font-size: 1.1rem;
    }
    .link-group-title {
        font-size: 1.1rem;
    }
}
