/* Base Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #004d99;
    --accent-color: #00b3e6;
    --dark-color: #1a1a2e;
    --light-color: #f5f5f7;
    --text-color: #333;
    --text-light: #666;
    --cube-size: 200px;
    --cube-color1: #0066cc;
    --cube-color2: #004d99;
    --cube-color3: #00b3e6;
    --cube-color4: #1a1a2e;
    --cube-color5: #0055aa;
    --cube-color6: #003377;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.buttonback {background-color: #00A8FF;
             width: 70px;;
			  border-radius: 30px;

} /* Blue */

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.maintenance-content {
    text-align: center;
    max-width: 800px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* 3D Cube Styles */
.scene {
    width: var(--cube-size);
    height: var(--cube-size);
    margin: 50px auto;
    perspective: 600px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(-100px);
    animation: rotate 20s infinite linear;
}

.cube__face {
    position: absolute;
    width: var(--cube-size);
    height: var(--cube-size);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cube__face--front {
    background: var(--cube-color1);
    transform: rotateY(0deg) translateZ(calc(var(--cube-size) / 2));
}

.cube__face--back {
    background: var(--cube-color2);
    transform: rotateY(180deg) translateZ(calc(var(--cube-size) / 2));
}

.cube__face--right {
    background: var(--cube-color3);
    transform: rotateY(90deg) translateZ(calc(var(--cube-size) / 2));
}

.cube__face--left {
    background: var(--cube-color4);
    transform: rotateY(-90deg) translateZ(calc(var(--cube-size) / 2));
}

.cube__face--top {
    background: var(--cube-color5);
    transform: rotateX(90deg) translateZ(calc(var(--cube-size) / 2));
}

.cube__face--bottom {
    background: var(--cube-color6);
    transform: rotateX(-90deg) translateZ(calc(var(--cube-size) / 2));
}

.cube__face i {
    font-size: 3rem;
}

@keyframes rotate {
    0% {
        transform: translateZ(-100px) rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: translateZ(-100px) rotateX(360deg) rotateY(360deg);
    }
}

/* Countdown Styles */
.countdown {
    margin: 40px 0;
}

#timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit span:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    background-color: white;
    border-radius: 8px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.time-unit .label {
    font-size: 0.8rem;
    margin-top: 5px;
    color: var(--text-light);
}

/* Contact Info Styles */
.contact-info {
    margin: 30px 0;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-link i {
    margin-right: 8px;
}

/* Social Links Styles */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    :root {
        --cube-size: 150px;
    }
    
    .cube__face {
        font-size: 1.2rem;
    }
    
    #timer {
        gap: 10px;
    }
    
    .time-unit span:first-child {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    :root {
        --cube-size: 120px;
    }
    
    .cube__face {
        font-size: 1rem;
        padding: 10px;
    }
    
    .cube__face--left {
        font-size: 0.9rem;
    }
    
    #timer {
        flex-wrap: wrap;
    }
    
    .time-unit {
        width: 45%;
        margin-bottom: 10px;
    }
	
	
}