:root {
  --bg-color: #0f172a;
  --text-color: #f8fafc;
  --text-muted: #94a3b8;
  --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --secondary-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: 'IBM Plex Sans Arabic', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background: linear-gradient(45deg, #135C63, #154D34);
  background-attachment: fixed;
  color: var(--text-color);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  z-index: 1;
}

.content {
  text-align: center;
  z-index: 10;
  max-width: 800px;
  animation: fadeIn 1s ease-out;
}

.logo-placeholder {
  margin-bottom: 2rem;
  animation: float 6s ease-in-out infinite;
}

.main-logo {
  max-width: 100%;
  height: auto;
}

.title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: #66D575;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.notify-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 4rem;
  position: relative;
}

input[type="email"] {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: white;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

input[type="email"]:focus {
  border-color: #8b5cf6;
  background: rgba(255, 255, 255, 0.1);
}

button {
  padding: 1rem 2rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(45deg, #135C63, #154D34);
  color: white;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(99, 102, 241, 0.5);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  min-width: 100px;
  /* backdrop-filter: blur(10px); Removed as background is opaque */
}

.number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  /* Default fallback */
  margin-bottom: 0.5rem;
}

#seconds {
  color: #2BAC52;
}

#minutes {
  color: #13A8E0;
}

#hours {
  color: #098569;
}

#days {
  color: #BD8F46;
}

.label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0em;
}

/* Background Shapes */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}


@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }

  .notify-form {
    flex-direction: column;
  }

  .countdown {
    gap: 1rem;
  }

  .time-unit {
    min-width: 80px;
    padding: 1rem;
  }

  .number {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }

  .title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .logo-placeholder svg {
    width: 50px;
    height: 50px;
  }

  .notify-form {
    margin-bottom: 3rem;
  }

  input[type="email"] {
    padding: 0.875rem 1rem;
  }

  button {
    padding: 0.875rem 1.5rem;
  }

  .countdown {
    gap: 0.75rem;
  }

  .time-unit {
    min-width: 70px;
    padding: 0.75rem;
  }

  .number {
    font-size: 1.5rem;
  }

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

.footer {
  margin-top: 4rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding-bottom: 2rem;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}