:root {
     --primary: #4800b3;
     --secondary: #6d34c1;
     --accent: #8642e5;
     --light-accent: #94dbdd;
     --white: #ffffff;
     --gradient: linear-gradient(135deg, var(--primary), var(--accent));
   }
   
   * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
   }
   
   body {
     font-family: 'Days One', sans-serif;
     user-select: none;
     background-color: var(--white);
     color: #333;
     min-height: 100vh;
     margin: 0;
     padding: 0;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
   }
   
   .maintenance-container {
     width: 100%;
     min-height: 100vh;
     padding: 0;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     position: relative;
     z-index: 1;
   }
   
   .content {
     background-color: var(--white);
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(72, 0, 179, 0.1);
     padding: 2rem;
     width: 70%;
     min-height: 60vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     position: relative;
   }
   
   .logo-container {
     margin-bottom: 2rem;
   }
   
   .logo {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     position: relative;
   }
   
   .logo-text {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--primary);
     letter-spacing: 2px;
     position: relative;
   }
   
   .logo-text::after {
     content: "";
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 3px;
     background: var(--gradient);
     border-radius: 3px;
   }
   
   .maintenance-info h1 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: #333;
   }
   
   .highlight {
     color: var(--primary);
     position: relative;
     display: inline-block;
   }
   
   .highlight::after {
     content: "";
     position: absolute;
     bottom: 5px;
     left: 0;
     width: 100%;
     height: 8px;
     background-color: var(--light-accent);
     z-index: -1;
     opacity: 0.5;
   }
   
   .separator {
     width: 80px;
     height: 4px;
     background: var(--gradient);
     margin: 1.5rem auto;
     border-radius: 2px;
   }
   
   .message {
     font-size: 1.2rem;
     line-height: 1.6;
     color: #666;
     margin-bottom: 2rem;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
   }
   
   .progress-container {
     margin: 2rem 0;
   }
   
   .progress-bar {
     width: 100%;
     height: 10px;
     background-color: #f0f0f0;
     border-radius: 5px;
     overflow: hidden;
     margin-bottom: 0.5rem;
   }
   
   .progress-fill {
     width: 100%;
     height: 100%;
     background: var(--gradient);
     border-radius: 5px;
     animation: pulse 2s infinite;
   }
   
   .progress-text {
     font-size: 0.9rem;
     color: var(--secondary);
     font-weight: 500;
   }
   
   .countdown {
     display: flex;
     justify-content: center;
     gap: 1.5rem;
     margin: 2rem 0;
   }
   
   .countdown-item {
     display: flex;
     flex-direction: column;
     align-items: center;
   }
   
   .count {
     font-size: 2rem;
     font-weight: 700;
     color: var(--primary);
     background-color: rgba(134, 66, 229, 0.1);
     border-radius: 10px;
     width: 70px;
     height: 70px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 0.5rem;
     box-shadow: 0 4px 10px rgba(72, 0, 179, 0.1);
   }
   
   .label {
     font-size: 0.8rem;
     color: #666;
     font-weight: 500;
   }
   
   .contact {
     margin-top: 2rem;
     font-size: 0.9rem;
     color: #666;
   }
   
   .contact a {
     color: var(--accent);
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
   }
   
   .contact a:hover {
     color: var(--primary);
     text-decoration: underline;
   }
   
   .decoration {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     overflow: hidden;
   }
   
   .circle {
     position: absolute;
     border-radius: 50%;
     opacity: 0.5;
   }

   .circle {
  animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(20px); }
  100% { transform: translateY(0); }
}
   
   .circle-1 {
     width: 300px;
     height: 300px;
     background-color: var(--light-accent);
     top: -150px;
     left: -150px;
     opacity: 0.1;
   }
   
   .circle-2 {
     width: 200px;
     height: 200px;
     background-color: var(--accent);
     bottom: -100px;
     right: -100px;
     opacity: 0.1;
   }
   
   .circle-3 {
     width: 150px;
     height: 150px;
     background-color: var(--secondary);
     top: 20%;
     right: -75px;
     opacity: 0.1;
   }
   
   .circle-4 {
     width: 100px;
     height: 100px;
     background-color: var(--primary);
     bottom: 30%;
     left: -50px;
     opacity: 0.1;
   }
   
   @keyframes pulse {
     0% {
       opacity: 1;
     }
     50% {
       opacity: 0.7;
     }
     100% {
       opacity: 1;
     }
   }
   
   /* Responsive styles */
   @media (max-width: 768px) {
     .content {
       padding: 2rem;
     }
   
     .logo-text {
       font-size: 2rem;
     }
   
     .maintenance-info h1 {
       font-size: 2rem;
     }
   
     .message {
       font-size: 1rem;
     }
   
     .countdown {
       gap: 1rem;
     }
   
     .count {
       font-size: 1.5rem;
       width: 60px;
       height: 60px;
     }
   }
   
   @media (max-width: 576px) {
     .maintenance-container {
       padding: 1rem;
     }
   
     .content {
       padding: 1.5rem;
     }
   
     .logo-text {
       font-size: 1.8rem;
     }
   
     .maintenance-info h1 {
       font-size: 1.8rem;
     }
   
     .countdown {
       flex-wrap: wrap;
       gap: 0.8rem;
     }
   
     .count {
       font-size: 1.2rem;
       width: 50px;
       height: 50px;
     }
   
     .label {
       font-size: 0.7rem;
     }
   }
   