.loading-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 60%, #1a1408 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    color: #F5F0E8;
    overflow: hidden;
}

.loading-brand {
    margin-bottom: 40px;
    text-align: center;
}

.loading-logo {
    font-size: 64px;
    line-height: 1;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.loading-title {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
    color: #C9A84C;
}

.loading-subtitle {
    font-size: 13px;
    color: #B8A99A;
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.loading-text {
    font-size: 14px;
    color: #8B7355;
    margin: 0;
    animation: fade 1.5s ease-in-out infinite alternate;
    letter-spacing: 0.5px;
}

.loading-progress {
    width: 200px;
    height: 2px;
    background: #2A2A2A;
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #8B7355, #C9A84C, #8B7355);
    border-radius: 2px;
    animation: progress 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes fade {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes progress {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 768px) {
    .loading-title { font-size: 22px; }
    .loading-logo { font-size: 48px; }
    .loading-progress { width: 160px; }
}
