.loader-screen {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.850);
    display: flex;
    flex-direction: column; /* stack orbit and text vertically */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.orbit-container {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Change logo size ONLY here */
.logo {
    width: 101px;
    z-index: 2;
}

/* Orbit circle */
.orbit-ring {
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    animation: spinSlow 6s linear infinite;
}

/* Orbit dot */
.orbit-dot {
    position: absolute;
    width: 110px;
    height: 110px;
    animation: spin 2s linear infinite;
}

.orbit-dot::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #ffd700;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.loading-text {
    margin-top: 20px;
    color: #ffd700;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Animate dots */
.dots::after {
    content: '';
    display: inline-block;
    width: 0.8em;
    text-align: left;
    animation: dots 1.5s steps(3,end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}
