#page-loader {
    position: fixed;
    inset: 0;
    background: #f7f6f4;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-content img {
    width: 200px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

.loader-line {
    display: block;
    width: 120px;
    height: 2px;
    background: #2b2b2b;
    margin: auto;
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 120px; }
    100% { width: 0; }
}
