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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-container {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  padding: 60px 40px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.glass-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.glass-container > * {
  position: relative;
  z-index: 1;
}

.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.coming-soon {
  color: #2c2c2c;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.coming-soon::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff4444;
  border-radius: 2px;
}

.contact-section {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.contact-label {
  color: #2c2c2c;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.email {
  color: #ff4444;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 68, 68, 0.1);
}

.email:hover {
  color: #ffffff;
  background: #ff4444;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  .glass-container {
    padding: 40px 30px;
    border-radius: 15px;
  }

  .logo {
    max-width: 150px;
    margin-bottom: 25px;
  }

  .coming-soon {
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }

  .coming-soon::after {
    width: 60px;
    height: 3px;
    bottom: -12px;
  }

  .contact-section {
    margin-top: 35px;
    padding-top: 25px;
  }

  .contact-label {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .email {
    font-size: 1rem;
    padding: 6px 12px;
  }
}

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

  .logo {
    max-width: 120px;
    margin-bottom: 20px;
  }

  .coming-soon {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .contact-section {
    margin-top: 30px;
    padding-top: 20px;
  }

  .email {
    font-size: 0.95rem;
  }
}
