
#silverwing-loader {
    position: fixed;
    z-index: 9999;
    background-color: #1a1717;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loader-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    margin-bottom: 30px;
    animation: spin 1s linear infinite;
}
.loader-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
    font-size: 30px;
    color: #c75c00;
    font-weight: 600;
    line-height: 1.3;
}
.loader-line {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 5px;
}
.loader-line span {
    opacity: 0;
    animation: fadeInLetter 1.4s forwards;
}
.loader-line.line1 span:nth-child(1) { animation-delay: 0.1s; }
.loader-line.line1 span:nth-child(2) { animation-delay: 0.2s; }
.loader-line.line1 span:nth-child(3) { animation-delay: 0.3s; }
.loader-line.line1 span:nth-child(4) { animation-delay: 0.4s; }
.loader-line.line1 span:nth-child(5) { animation-delay: 0.5s; }
.loader-line.line1 span:nth-child(6) { animation-delay: 0.6s; }
.loader-line.line1 span:nth-child(7) { animation-delay: 0.7s; }
.loader-line.line1 span:nth-child(8) { animation-delay: 0.8s; }
.loader-line.line1 span:nth-child(9) { animation-delay: 0.9s; }
.loader-line.line2 span:nth-child(1) { animation-delay: 1.0s; }
.loader-line.line2 span:nth-child(2) { animation-delay: 1.1s; }
.loader-line.line2 span:nth-child(3) { animation-delay: 1.2s; }
.loader-line.line2 span:nth-child(4) { animation-delay: 1.3s; }
.loader-line.line2 span:nth-child(5) { animation-delay: 1.4s; }
.loader-line.line2 span:nth-child(6) { animation-delay: 1.5s; }
.loader-line.line2 span:nth-child(7) { animation-delay: 1.6s; }
.loader-line.line2 span:nth-child(8) { animation-delay: 1.7s; }
.loader-line.line2 span:nth-child(9) { animation-delay: 1.8s; }
.loader-line.line2 span:nth-child(10) { animation-delay: 1.9s; }
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes fadeInLetter {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
