/* Page loader for Anniversary 63rd LDD */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(248, 242, 189, 0.8); /* #EDDEC9 */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-card {
    width: min(100%, 420px);
    padding: 2.5rem 2rem;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(192, 127, 35, 0.15); /* #C07F23 */
    text-align: center;
    border: 1px solid rgba(192, 127, 35, 0.1);
}

.page-loader-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.page-loader-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(192, 127, 35, 0.1); /* #C07F23 */
    color: #C07F23;
    font-size: 1.8rem;
    animation: loaderFloat 1.8s ease-in-out infinite;
}

.page-loader-icon:nth-child(2) {
    animation-delay: 0.2s;
    background: rgba(249, 218, 128, 0.15); /* #F9DA80 */
    color: #C07F23;
}

.page-loader-icon:nth-child(3) {
    animation-delay: 0.4s;
    background: rgba(241, 229, 119, 0.15); /* #F1E577 */
    color: #C07F23;
}

.page-loader-title {
    margin-bottom: 0.75rem;
    color: #C07F23;
    font-size: 1.4rem;
    font-weight: 700;
}

.page-loader-text {
    margin: 0;
    color: #8a6d45;
    line-height: 1.6;
}

.page-loader-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.page-loader-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #F9DA80;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.page-loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
    background: #F1E577;
}

.page-loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
    background: #C07F23;
}

@keyframes loaderFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}
