* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 600px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 300px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, #fabb69 0%, #ae8249 100%);
    animation: loading 22s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(250, 187, 105, 0.6);
}

@keyframes loading {
    0% {
        width: 0%;
    }
    25% {
        width: 30%;
    }
    75% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .loader {
        width: 250px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .loader {
        width: 200px;
        height: 26px;
    }
}
