body {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.construction-tape {
    position: fixed;
    width: 100%;
    height: 80px;
    background: repeating-linear-gradient(
        45deg,
        #ffcc02,
        #ffcc02 40px,
        #000 40px,
        #000 80px
    );
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(-2deg);
    transform-origin: left center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.construction-tape.bottom {
    top: auto;
    bottom: 0;
    transform: rotate(1deg);
    transform-origin: right center;
}

.construction-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

h1 {
    text-align: center;
    margin: 20px 0;
    font-family: 'Aldrich', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #ffcc02, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.construction-message {
    text-align: center;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 204, 2, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.construction-message p {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin: 15px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.sub-message {
    font-size: 1rem !important;
    color: #e0e0e0 !important;
    font-style: italic;
}

.progress-container {
    margin: 30px 0;
    text-align: center;
    width: 300px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 4px;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.progress-fill {
    background: linear-gradient(90deg, #ffcc02, #ff6b6b, #4ecdc4);
    height: 20px;
    width: 75%;
    border-radius: 20px;
    transition: width 0.3s ease;
    animation: progress-glow 2s ease-in-out infinite alternate;
}

@keyframes progress-glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 204, 2, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 204, 2, 0.8), 0 0 30px rgba(255, 107, 107, 0.6);
    }
}

.progress-text {
    color: #fff;
    font-family: 'Aldrich', sans-serif;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

img {
    width: 300px;
    height: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .construction-tape {
        height: 60px;
    }
    
    h1 {
        font-size: 2rem;
        margin: 15px 0;
    }
    
    .construction-icon {
        font-size: 3rem;
    }
    
    .construction-message {
        margin: 20px 10px;
        padding: 20px;
    }
    
    .construction-message p {
        font-size: 1rem;
    }
    
    .progress-container {
        width: 250px;
    }
    
    img {
        width: 250px;
    }
}