:root {
    --primary-color: #fca311; /* Construction Yellow/Orange */
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --bg-image-url: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2560&auto=format&fit=crop');
}

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

body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    background-color: #1a1a1a;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image-url);
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: blur(4px);
    transform: scale(1.1); /* Prevent blur edges */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

.content {
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    animation: fadeUp 1s ease-out;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(252, 163, 17, 0.2);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    animation: float 6s ease-in-out infinite;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 .highlight {
    color: var(--primary-color);
    display: block;
    margin-top: 0.5rem;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Progress Bar Loader */
.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: var(--primary-color);
    border-radius: 10px;
    animation: loading 2s infinite ease-in-out;
    transform-origin: left;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes loading {
    0% { left: -50%; width: 50%; }
    50% { left: 25%; width: 50%; }
    100% { left: 100%; width: 50%; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h1 .highlight {
        font-size: 2.4rem;
    }
    .glass-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }
    h1 {
        font-size: 1.8rem;
    }
    h1 .highlight {
        font-size: 2rem;
        letter-spacing: 1px;
    }
}
