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

body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* COMING SOON SECTION */
.coming-soon {
  min-height: 100vh;
  background: linear-gradient(340deg, #0775B4 4.02%, #003756 54.01%, #00141F 100%);
  position: relative;
  overflow: hidden;
}

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

/* Background Overlay Effect */
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/blue-rays-overlay.png') no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  opacity: 0.2;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

/* Content Wrapper */
.content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

/* Logo */
.logo {
  margin-bottom: 60px;
  animation: fadeInDown 1s ease-out;
}

.logo img {
  max-width: 200px;
  height: auto;
}

/* Main Content */
.main-content {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.main-heading {
  color: #ADE2FF;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.sub-heading {
  color: #FFFFFF;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #FFFFFF 0%, #0EA7FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description {
  color: #9DD3F2;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Notify Form */
.notify-form {
  margin-bottom: 50px;
}

.notify-heading {
  color: #FFFFFF;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.form-group input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 16px 20px;
  border: 1px solid rgba(173, 226, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  color: #FFFFFF;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input[type="email"]::placeholder {
  color: rgba(173, 226, 255, 0.5);
}

.form-group input[type="email"]:focus {
  border-color: #0EA7FF;
  background: rgba(255, 255, 255, 0.08);
}

.notify-btn {
  padding: 16px 40px;
  background: linear-gradient(98deg, #00A4FF 0.33%, #005A9C 93.35%);
  box-shadow: 0px 3px 20px 0px rgba(1, 115, 153, 0.4);
  color: #FFFFFF;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 5px 25px 0px rgba(1, 115, 153, 0.6);
}

.notify-btn:active {
  transform: translateY(0);
}

/* Social Links */
.social-links {
  margin-bottom: 40px;
}

.social-text {
  color: #9DD3F2;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(173, 226, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #0EA7FF;
  transform: translateY(-3px);
}

.social-icons a img {
  width: 24px;
  height: 24px;
}

/* Back to Home */
.back-home {
  margin-top: 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ADE2FF;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 8px;
}

.back-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-5px);
}

.back-link svg {
  width: 20px;
  height: 20px;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* RESPONSIVE - TABLET */
@media (max-width: 960px) {
  .main-heading {
    font-size: 36px;
  }

  .sub-heading {
    font-size: 56px;
  }

  .description {
    font-size: 16px;
  }

  .logo img {
    max-width: 180px;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 670px) {
  .coming-soon-container {
    padding: 30px 15px;
  }

  .logo {
    margin-bottom: 40px;
  }

  .logo img {
    max-width: 150px;
  }

  .main-heading {
    font-size: 28px;
  }

  .sub-heading {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .description {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .notify-heading {
    font-size: 16px;
  }

  .form-group {
    flex-direction: column;
    gap: 12px;
  }

  .form-group input[type="email"] {
    min-width: 100%;
    padding: 14px 18px;
    font-size: 14px;
  }

  .notify-btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 14px;
  }

  .social-text {
    font-size: 12px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons a img {
    width: 20px;
    height: 20px;
  }

  .back-link {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .main-heading {
    font-size: 24px;
  }

  .sub-heading {
    font-size: 32px;
  }
}
