/* ==================== BASE & RESET ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

:root {
  /* Colors from main site */
  --primary-color: #6b21a8;
  --secondary-color: #a855f7;
  --accent-color: #4c1d95;
  --text-light: #fff;
  --text-dark: #333;
  --background: #f8f9fa;
  --border-color: #e3e2e1;
}

/* ==================== LAYOUT ==================== */
body {
  overflow-x: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

.coming-soon-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Background Pattern */
.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* ==================== CONTENT CONTAINER ==================== */
.content-container {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  padding: 60px 40px;
  max-width: 900px;
  width: 100%;
  backdrop-filter: blur(10px);
  animation: slideUp 0.8s ease-out;
}

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

/* ==================== LOGO SECTION ==================== */
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
  text-align: center;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(107, 33, 168, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

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

.coming-soon-badge i {
  font-size: 1.3rem;
}

.description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== COUNTDOWN TIMER ==================== */
.countdown-container {
  margin-bottom: 50px;
}

.countdown-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 30px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.time-box {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 15px;
  padding: 25px 20px;
  min-width: 110px;
  box-shadow: 0 10px 30px rgba(107, 33, 168, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107, 33, 168, 0.3);
}

.time-value {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.time-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-separator {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 5px;
}

/* ==================== FEATURES ==================== */
.features {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: default;
}

.feature-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(107, 33, 168, 0.2);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.feature-item:hover i {
  color: white;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ==================== CONTACT INFO ==================== */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #555;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* ==================== SOCIAL LINKS ==================== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(107, 33, 168, 0.2);
}

.social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 10px 25px rgba(107, 33, 168, 0.3);
}

/* ==================== FOOTER ==================== */
.footer {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #e3e2e1;
  margin-top: 20px;
}

.footer p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media screen and (max-width: 768px) {
  .content-container {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .logo-section {
    gap: 20px;
    margin-bottom: 30px;
  }

  .logo {
    width: 70px;
    height: 70px;
  }

  .subtitle {
    font-size: 0.85rem;
  }

  .main-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .coming-soon-badge {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .description {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .countdown-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .countdown-timer {
    gap: 10px;
  }

  .time-box {
    padding: 20px 15px;
    min-width: 85px;
  }

  .time-value {
    font-size: 2rem;
  }

  .time-label {
    font-size: 0.75rem;
  }

  .time-separator {
    font-size: 1.8rem;
    margin: 0 2px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0;
  }

  .feature-item {
    padding: 15px;
  }

  .feature-item i {
    font-size: 1.5rem;
  }

  .feature-item span {
    font-size: 0.8rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .social-links {
    gap: 15px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 480px) {
  .content-container {
    padding: 30px 20px;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .coming-soon-badge {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .time-box {
    padding: 15px 10px;
    min-width: 70px;
  }

  .time-value {
    font-size: 1.5rem;
  }

  .time-label {
    font-size: 0.7rem;
  }

  .time-separator {
    font-size: 1.5rem;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
