/* Global Styles */
body {
     margin: 0;
     font-family: 'Arial', sans-serif;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     min-height: 100vh;
     background: linear-gradient(to bottom right, #2c3e50, #4ca1af);
     color: #ffffff;
     overflow-x: hidden;
 }
 
 h1 {
     font-size: 3rem;
     margin-bottom: 10px;
     text-transform: uppercase;
 }
 
 .message {
     font-size: 1.2rem;
     margin-bottom: 30px;
     line-height: 1.6;
     padding: 0 20px;
 }
 
 .maintenance-container {
     text-align: center;
     max-width: 700px;
     padding: 20px;
     background: rgba(0, 0, 0, 0.7);
     border-radius: 10px;
     box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
     animation: fadeIn 1.5s ease-in-out;
 }
 
 .timer {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     margin-top: 20px;
     padding: 10px;
     gap: 20px;
 }
 
 .time-box {
     text-align: center;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 5px;
     padding: 15px 20px;
     width: 100px;
     box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s ease;
 }
 
 .time-box:hover {
     transform: scale(1.1);
     background: rgba(255, 255, 255, 0.3);
 }
 
 .time-box span {
     display: block;
     font-size: 2rem;
     font-weight: bold;
     color: #f39c12;
 }
 
 .time-box p {
     margin: 5px 0 0;
     font-size: 1rem;
     color: #ffffff;
 }
 
 /* Footer */
 footer {
     margin-top: 20px;
     padding: 10px 20px;
     background: rgba(0, 0, 0, 0.8);
     color: #ffffff;
     width: 100%;
     text-align: center;
     position: fixed;
     bottom: 0;
 }
 
 /* Responsive Design */
 @media (max-width: 768px) {
     h1 {
         font-size: 2rem;
     }
     .message {
         font-size: 1rem;
     }
     .timer {
         flex-direction: column;
         align-items: center;
     }
     .time-box {
         width: 80px;
     }
 }
 
 @media (max-width: 480px) {
     .maintenance-container {
         padding: 15px;
     }
     footer {
         font-size: 0.8rem;
     }
 }
 
 /* Animation */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(-20px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }
 