/* Reset and Base Styles */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: "Inter", sans-serif;
   background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
   color: #ffffff;
   overflow-x: hidden;
   min-height: 100vh;
   position: relative;
}

/* Particles Canvas */
#particles-canvas {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   background: transparent;
}

/* Container */
.container {
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
   position: relative;
   z-index: 1;
}

.content {
   text-align: center;
   max-width: 800px;
   width: 100%;
   animation: fadeInUp 1s ease-out;
}

/* Logo */
.logo-container {
   margin-top: 2rem;
   margin-bottom: 2rem;
   animation: float 3s ease-in-out infinite;
}

.logo {
   height: 80px;
   width: auto;
   filter: brightness(1.1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
   transition: transform 0.3s ease;
}

.logo:hover {
   transform: scale(1.1);
}

/* Typography */
.company-name {
   font-size: 3.5rem;
   font-weight: 700;
   background: linear-gradient(135deg, #00d4ff, #00b4d8, #0077b6);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin-bottom: 1rem;
   text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.coming-soon {
   font-size: 2.5rem;
   font-weight: 600;
   margin-bottom: 1rem;
   color: #7086ff;
   text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.description {
   font-size: 1.2rem;
   font-weight: 300;
   color: #b0b0b0;
   margin-bottom: 3rem;
   line-height: 1.6;
}

/* Countdown Timer */
.countdown-container {
   margin-bottom: 4rem;
}

.countdown {
   display: flex;
   justify-content: center;
   gap: 2rem;
   flex-wrap: wrap;
}

.time-unit {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 15px;
   padding: 1.5rem 1rem;
   min-width: 120px;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
}

.time-unit::before {
   content: "";
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
   transition: left 0.5s ease;
}

.time-unit:hover::before {
   left: 100%;
}

.time-unit:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.time-value {
   display: block;
   font-size: 3rem;
   font-weight: 700;
   color: #00d4ff;
   text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.time-label {
   display: block;
   font-size: 0.9rem;
   font-weight: 400;
   color: #b0b0b0;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-top: 0.5rem;
}

/* Features */
.features {
   display: flex;
   justify-content: center;
   gap: 3rem;
   margin-bottom: 4rem;
   flex-wrap: wrap;
}

.feature {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1rem;
   padding: 1.5rem;
   background: rgba(255, 255, 255, 0.05);
   border-radius: 15px;
   transition: all 0.3s ease;
   cursor: pointer;
   min-width: 150px;
}

.feature:hover {
   transform: translateY(-10px);
   background: rgba(255, 255, 255, 0.1);
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
   font-size: 2.5rem;
   filter: grayscale(0) brightness(1.2);
}

.feature-text {
   font-weight: 500;
   color: #ffffff;
   text-align: center;
}

/* Newsletter */
.newsletter {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 20px;
   padding: 2rem;
   max-width: 500px;
   margin: 0 auto;
}

.newsletter p {
   font-size: 1.1rem;
   margin-bottom: 1.5rem;
   color: #ffffff;
}

.email-form {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   justify-content: center;
}

.email-input {
   flex: 1;
   min-width: 200px;
   padding: 12px 20px;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 10px;
   color: #ffffff;
   font-size: 1rem;
   outline: none;
   transition: all 0.3s ease;
}

.email-input::placeholder {
   color: #b0b0b0;
}

.email-input:focus {
   border-color: #00d4ff;
   box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.notify-btn {
   padding: 12px 30px;
   background: linear-gradient(135deg, #00d4ff, #0077b6);
   border: none;
   border-radius: 10px;
   color: #ffffff;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.notify-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
   background: linear-gradient(135deg, #00b4d8, #005f87);
}

/* Animations */
@keyframes fadeInUp {
   from {
      opacity: 0;
      transform: translateY(50px);
   }
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes float {
   0%,
   100% {
      transform: translateY(0px);
   }
   50% {
      transform: translateY(-10px);
   }
}

/* Responsive Design */
@media (max-width: 768px) {
   .container {
      padding: 10px;
   }

   .logo-container {
      margin-top: 1rem;
      margin-bottom: 1.5rem;
   }

   .logo {
      height: 60px;
   }

   .company-name {
      font-size: 2.5rem;
   }

   .coming-soon {
      font-size: 2rem;
   }

   .description {
      font-size: 1rem;
      padding: 0 1rem;
   }

   .countdown {
      gap: 0.8rem;
      justify-content: space-between;
      max-width: 100%;
      padding: 0 2.5rem;
   }

   .time-unit {
      flex: 1;
      min-width: 70px;
      max-width: 85px;
      padding: 1rem 0.2rem;
   }

   .time-value {
      font-size: 1.8rem;
   }

   .time-label {
      font-size: 0.7rem;
   }

   .features {
      gap: 1.5rem;
   }

   .feature {
      min-width: 120px;
      padding: 1rem;
   }

   .email-form {
      flex-direction: column;
   }

   .email-input {
      min-width: auto;
   }
}

@media (max-width: 480px) {
   .container {
      padding: 5px;
   }

   .logo-container {
      margin-top: 0.5rem;
      margin-bottom: 1rem;
   }

   .logo {
      height: 50px;
   }

   .company-name {
      font-size: 2rem;
   }

   .coming-soon {
      font-size: 1.5rem;
   }

   .countdown {
      gap: 0.5rem;
      justify-content: space-between;
      max-width: 100%;
      padding: 0 2.5rem;
   }

   .time-unit {
      flex: 1;
      min-width: 60px;
      max-width: 75px;
      padding: 0.8rem 0.3rem;
   }

   .time-value {
      font-size: 1.4rem;
   }

   .time-label {
      font-size: 0.6rem;
   }

   .features {
      flex-direction: column;
      gap: 1rem;
   }
}

/* Footer Styles */
.footer {
   background: rgba(0, 0, 0, 0.3);
   backdrop-filter: blur(10px);
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding: 2rem 0;
   margin-top: 3rem;
   position: relative;
   z-index: 2;
}

.footer-content {
   max-width: 800px;
   margin: 0 auto;
   padding: 0 2rem;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 2rem;
}

.social-media {
   display: flex;
   gap: 2rem;
   justify-content: center;
}

.social-link {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 50px;
   height: 50px;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   color: #ffffff;
   text-decoration: none;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
}

.social-link::before {
   content: "";
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
   transition: left 0.5s ease;
}

.social-link:hover::before {
   left: 100%;
}

.social-link:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
   background: rgba(0, 212, 255, 0.2);
   border-color: #00d4ff;
}

.social-icon {
   color: #ff9339;
   width: 24px;
   height: 24px;
   transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
   transform: scale(1.1);
}

.contact-info {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   align-items: center;
}

.contact-item {
   display: flex;
   align-items: center;
   gap: 0.8rem;
   color: #b0b0b0;
   font-size: 0.9rem;
   transition: color 0.3s ease;
}

.contact-item:hover {
   color: #00d4ff;
}

.contact-icon {
   width: 18px;
   height: 18px;
   color: #00d4ff;
   flex-shrink: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
   .footer-content {
      padding: 0 1rem;
      gap: 1.5rem;
   }

   .social-media {
      gap: 1.5rem;
   }

   .social-link {
      width: 45px;
      height: 45px;
   }

   .social-icon {
      width: 20px;
      height: 20px;
   }

   .contact-info {
      gap: 0.8rem;
   }

   .contact-item {
      font-size: 0.85rem;
   }

   .contact-icon {
      width: 16px;
      height: 16px;
   }
}

@media (max-width: 480px) {
   .footer {
      padding: 1.5rem 0;
      margin-top: 2rem;
   }

   .footer-content {
      gap: 1rem;
   }

   .social-media {
      gap: 1rem;
   }

   .social-link {
      width: 40px;
      height: 40px;
   }

   .social-icon {
      width: 18px;
      height: 18px;
   }

   .contact-item {
      font-size: 0.8rem;
   }

   .contact-icon {
      width: 14px;
      height: 14px;
   }
}
