/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}

/* Logo Styling */
.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10; /* Ensure the logo is above other elements */
}

.logo {
    width: 150px;
    height: auto;
    cursor: pointer; /* Makes the logo clickable */
}

.container {
    z-index: 1;
    max-width: 600px;
}

h1 {
    font-size: 3rem;
    margin: 20px 0;
    color: #FFD700;
    text-transform: uppercase;
}

p {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #BBBBBB;
}

/* Bouncing construction icon */
.icon-container {
    position: relative;
    margin: 40px auto;
}

.icon {
    width: 100px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* Progress bar styling */
.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #444444;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.progress {
    width: 0;
    height: 100%;
    background-color: #FFD700;
    animation: load 5s infinite;
    border-radius: 10px;
}

@keyframes load {
    0% {
        width: 0;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

/* Particle animation for cool effect */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Ensure particles are behind everything */
    overflow: hidden;
}

.shape {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 215, 0, 0.7);
    border-radius: 50%;
    animation: float 10s linear infinite;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(-1200px) translateX(300px);
    }
}