* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #e0f7fa, #bbdefb, #e3f2fd);
    color: #37474f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 1.5s ease-out;
}

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

.construction-icon {
    font-size: 5rem;
    color: #4fc3f7;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

h1 { font-size: 2.8rem; margin-bottom: 15px; color: #0277bd; font-weight: 600; text-transform: lowercase; }

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #546e7a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-transform: lowercase;
}

.info-box {
    background: linear-gradient(135deg, #e1f5fe, #b3e5fc);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(2, 119, 189, 0.1);
}

.time-display { font-size: 1.4rem; margin: 15px 0; color: #01579b; font-weight: 500; }

.clock-display {
    font-size: 2.2rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    margin: 20px 0;
    color: #0288d1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-container {
    height: 10px;
    background: #e0f7fa;
    border-radius: 5px;
    margin: 40px 0 20px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 65%;
    background: linear-gradient(to right, #4fc3f7, #29b6f6);
    border-radius: 5px;
    animation: progressAnimation 3s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { width: 65%; }
    50% { width: 75%; }
    100% { width: 65%; }
}

.social-links { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }

.social-link {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.5rem; text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(41, 182, 246, 0.3);
}

.social-link:hover { transform: translateY(-5px); box-shadow: 0 6px 12px rgba(41, 182, 246, 0.4); }

.back-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(41, 182, 246, 0.4);
}

footer { margin-top: 40px; color: #546e7a; font-size: 1rem; text-transform: lowercase; }


@media (max-width: 768px) {
    .container { padding: 25px; }
    h1 { font-size: 2.2rem; }
    .clock-display { font-size: 1.8rem; }
}
