/* Welcome page - light background with smooth animations */

:root {
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --background-color: #ffffff;
  --text-color: #000000;
  --accent-color: #8b5cf6;
  --accent-color-2: #a78bfa;
  --transition-speed: 0.8s;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; }
html, body { 
  height: 100%; 
  margin: 0; 
  padding: 0;
  overflow: hidden;
}

body {
  background: var(--background-color);
  font-family: var(--font-family);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.welcome-container {
  width: 100vw;
  height: 100vh;
  padding: 2rem;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.greeting-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.greeting-line {
  margin: 0;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s var(--ease-out) forwards;
}

#greeting-line-1 {
  font-size: 2.5rem;
  font-weight: 400;
  animation-delay: 0.5s;
}

#greeting-line-2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color);
  animation-delay: 1.2s;
}

.brand-accent {
  color: var(--accent-color); /* MELLNI фиолетовый */
}

#user-name {
  color: var(--accent-color);
  font-weight: 600;
}

.welcome-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s var(--ease-out) 2s forwards;
}

.continue-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-2) 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-family);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.continue-btn:active {
  transform: translateY(0);
}

/* remove arrow-specific animation since icon removed */

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

/* Responsive */
@media (max-width: 768px) {
  .welcome-container {
    padding: 1.5rem;
  }
  
  #greeting-line-1 {
    font-size: 2rem;
  }
  
  #greeting-line-2 {
    font-size: 1.5rem;
  }
  
  .continue-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}
