/* Coming Soon Page Styles */
:root {
  --primary-color: #1c1d22;
  --secondary-color: #775ee9;
  --accent-color: #775ee9;
  --warning-color: #ffa048;
  --text-primary: #1c1d22;
  --text-secondary: rgba(28, 29, 34, 0.7);
  --text-muted: rgba(28, 29, 34, 0.5);
  --background: #ffffff;
  --surface: #f8f9fa;
  --border: rgba(28, 29, 34, 0.1);
  --shadow: rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, #775ee9 0%, #775ee9 100%);
  --gradient-secondary: linear-gradient(135deg, #ffa048 0%, #775ee9 100%);
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
  :root {
    --primary-color: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
    --background: #1c1d22;
    --surface: #2a2b30;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0, 0, 0, 0.3);
  }
}

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

html {
  font-size: 62.5%; /* 10px */
}

body {
  font-family: "Exo2-Medium", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  direction: rtl;
}

.coming-soon-container {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Background Animation */
.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.1;
  animation: float 20s infinite linear;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 30%;
  animation-delay: -10s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: -15s;
}

.shape-5 {
  width: 140px;
  height: 140px;
  top: 10%;
  right: 50%;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  text-align: center;
  background: var(--background);
  border-radius: 2rem;
  padding: 4rem 3rem;
  box-shadow: 0 20px 60px var(--shadow);
  border: 1px solid var(--border);
}

/* Logo Section */
.logo-section {
  margin-bottom: 3rem;
}

.logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--gradient);
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(119, 94, 233, 0.3);
}

.logo-svg {
  color: white;
  width: 60px;
  height: 60px;
}

/* Title Section */
.title-section {
  margin-bottom: 4rem;
}

.main-title {
  font-family: "Exo2-Bold", sans-serif;
  font-size: 4.8rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.subtitle {
  font-family: "Exo2-SemiBold", sans-serif;
  font-size: 2.4rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 600;
}

.description {
  font-family: "Exo2-Medium", sans-serif;
  font-size: 1.6rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Countdown Section */
.countdown-section {
  margin-bottom: 4rem;
}

.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  direction: ltr;
}

.countdown-item {
  text-align: center;
  min-width: 80px;
}

.countdown-number {
  font-family: "Exo2-Bold", sans-serif;
  font-size: 3.6rem;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.countdown-label {
  font-family: "Exo2-SemiBold", sans-serif;
  font-size: 1.4rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-separator {
  font-family: "Exo2-Bold", sans-serif;
  font-size: 2.4rem;
  color: var(--text-muted);
  margin: 0 0.5rem;
}

/* Features Section */
.features-section {
  margin-bottom: 4rem;
}

.features-title {
  font-family: "Exo2-Bold", sans-serif;
  font-size: 2.4rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow);
  border-color: var(--secondary-color);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.feature-item h4 {
  font-family: "Exo2-SemiBold", sans-serif;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-item p {
  font-family: "Exo2-Medium", sans-serif;
  font-size: 1.4rem;
  color: var(--text-secondary);
  line-height: 1.6;
}



/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.footer p {
  font-family: "Exo2-Medium", sans-serif;
  font-size: 1.3rem;
  color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
  .coming-soon-container {
    padding: 1rem;
  }

  .main-content {
    padding: 3rem 2rem;
  }

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

  .subtitle {
    font-size: 2rem;
  }

  .description {
    font-size: 1.4rem;
  }

  .countdown-container {
    gap: 1rem;
  }

  .countdown-number {
    font-size: 2.8rem;
  }

  .countdown-label {
    font-size: 1.2rem;
  }

  .countdown-separator {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-item {
    padding: 2rem 1.5rem;
  }


}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.8rem;
  }

  .subtitle {
    font-size: 1.8rem;
  }


  .countdown-separator {
    display: none;
  }


  .countdown-number {
    font-size: 3.2rem;
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-content {
  animation: fadeInUp 0.8s ease-out;
}

/* Loading animation for countdown */
.countdown-number {
  transition: all 0.3s ease;
}

.countdown-number.updating {
  transform: scale(1.1);
  color: var(--accent-color);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}
