* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    background: #1e1e1e;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    max-width: 400px;
    padding: 30px;
}

.construction-icon {
    margin-bottom: 30px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #d1d5db;
}

.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #374151;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 4px;
    animation: progress 2.5s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 20%; }
    50% { width: 80%; }
    100% { width: 20%; }
}

.progress-text {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
}

.description {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #d1d5db;
    line-height: 1.5;
}

.contact-section {
    margin-top: 50px;
}

.contact-label {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 20px;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: #2d2d2d;
    border-radius: 15px;
    border: 2px solid #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.contact-wrapper a {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #d1d5db;
    background: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-wrapper a:hover {
    background: #fbbf24;
    color: #1e1e1e;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

/* Tooltip Styles */
.contact-tooltip {
    position: relative;
    display: inline-block;
}

.contact-tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid #fbbf24;
    z-index: 1000;
}

.contact-tooltip::after {
    content: '';
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #000000;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.contact-tooltip:hover::before,
.contact-tooltip:hover::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .contact-wrapper {
        gap: 15px;
        padding: 15px;
    }
    
    .contact-wrapper a {
        padding: 12px;
    }
}