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

:root {
  --primary: #ff8f42;
  --primary-dark: #e67936;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-light: #ffffff;
  --gradient-primary: linear-gradient(135deg, #ff8f42 0%, #ff6b35 100%);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* Language Switch */
.language-switch {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
}

.lang-btn.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 143, 66, 0.4);
}

.lang-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Video Background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(255, 143, 66, 0.2) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: -1;
}

/* Coming Soon Container */
.coming-soon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.coming-soon-content {
  text-align: center;
  max-width: 600px;
  animation: fadeInUp 1.2s ease-out;
}

/* Trust Badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse 3s ease-in-out infinite;
}

.user-avatars {
  display: flex;
  gap: -8px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-left: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: float 4s ease-in-out infinite;
}

.avatar:first-child {
  margin-left: 0;
  animation-delay: -1s;
}

.avatar:nth-child(2) {
  animation-delay: -2s;
}

.trust-text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Main Title */
.main-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text-light);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 143, 66, 0.3));
}

/* Description */
.description {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

/* CTA Button */
.cta-button {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(255, 143, 66, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  min-width: 200px;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 20px 40px rgba(255, 143, 66, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.cta-button:active {
  transform: translateY(-1px) scale(1.02);
}

/* Coming Soon Label */
.coming-soon-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: glow 2s ease-in-out infinite alternate;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px rgba(255, 143, 66, 0.3);
  }
  to {
    text-shadow: 0 0 20px rgba(255, 143, 66, 0.6), 0 0 30px rgba(255, 143, 66, 0.4);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .coming-soon-content {
    padding: 0 20px;
  }
  
  .trust-badge {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .user-avatars {
    justify-content: center;
  }
  
  .cta-button {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-width: 180px;
  }
  
  .language-switch {
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .coming-soon-container {
    padding: 20px 15px;
  }
  
  .trust-badge {
    padding: 10px 20px;
  }
  
  .avatar {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
}

/* Smooth scrolling and custom scrollbar (if needed) */
html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

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