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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    color: white;
    z-index: 10;
    position: relative;
}

.construction-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFD700;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 15px #FFD700;
    }
    to {
        text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
    }
}

.image-container {
    position: relative;
    margin: 30px 0;
    display: inline-block;
}

.electrician-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #FFD700;
    object-fit: cover;
    animation: bounce 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}
.papichulo-message {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    margin: 1rem 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

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

.sparks {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sparks::before,
.sparks::after {
    content: '⚡';
    position: absolute;
    font-size: 20px;
    color: #FFD700;
    animation: spark 2s infinite;
}

.sparks::before {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.sparks::after {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

@keyframes spark {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.progress-text {
    font-size: 1.1rem;
    margin: 15px 0;
    font-weight: bold;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.email {
    color: #FFD700;
    font-weight: bold;
}

.tools {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tool {
    position: absolute;
    font-size: 30px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.tool1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tool2 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.tool3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.tool4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .construction-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .electrician-image {
        width: 150px;
        height: 150px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

/* Entry animation */
.construction-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}