/* Modern UI Revamp for Coming Soon Page (Monochrome Black) */
:root {
  --primary-color: #ffffff;
  --secondary-color: #888888;
  --bg-color: #050505;
  --text-main: #ffffff;
  --text-muted: #888888;
  --glass-bg: rgba(15, 15, 15, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
}

body {
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 800;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}

/* Background & Animated Shapes */
.comming-soon {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  background: radial-gradient(circle at center, #111111 0%, #000000 100%);
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: float 20s infinite ease-in-out alternate;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  top: -10%;
  left: -10%;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.03);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 25s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 30px) scale(1.1);
  }

  100% {
    transform: translate(-30px, 60px) scale(0.9);
  }
}

.relative-z {
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  text-align: center;
}

/* Logo */
.logo-wrapper {
  margin-bottom: 30px;
}

/* .logo-wrapper img {
  filter: grayscale(100%);
} */

/* Typography */
.coming-text .subtitle {
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.coming-text h2 {
  font-size: 64px;
  letter-spacing: 0.05em;
  margin: 10px 0 30px;
  background: linear-gradient(90deg, #bbbbbb, #ffffff, #888888);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientText 5s linear infinite;
}

@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.glow-text {
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.typing-title {
  display: none;
}

/* Countdown Timer */
.countdown-timer-wrapper {
  margin: 40px 0;
}

.timer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.timer .timer-wrapper {
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timer .timer-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.timer .timer-wrapper .time {
  font-size: 48px;
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.timer .timer-wrapper .text {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

/* Quote */
.newsletter p {
  font-size: 18px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Bottom Section */
.bottom-section {
  border-top: 1px solid var(--glass-border);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Social Media */
.social-link {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 18px;
  border: 1px solid var(--glass-border);
}

.social-link a:hover {
  background: #ffffff;
  color: #000000;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
}

.copyright {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Responsive */
@media only screen and (max-width:768px) {
  .glass-card {
    padding: 40px 20px;
    margin: 20px;
    border-radius: 20px;
  }

  .coming-text h2 {
    font-size: 42px;
  }

  .timer .timer-wrapper {
    width: 100px;
    height: 100px;
  }

  .timer .timer-wrapper .time {
    font-size: 36px;
  }
}

@media only screen and (max-width:480px) {
  .timer {
    gap: 10px;
  }

  .timer .timer-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 12px;
  }

  .coming-text h2 {
    font-size: 32px;
  }

  .coming-text .subtitle {
    font-size: 16px;
  }

  .timer .timer-wrapper .time {
    font-size: 28px;
  }

  .timer .timer-wrapper .text {
    font-size: 10px;
  }

  .social-link a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}