/* Welcome Screen Styles */
.welcome-screen {
  display: flex;
  flex-direction: column;
  height: 100vh;    /* fallback */
  height: 100dvh;   /* use visible viewport on mobile */
  max-height: 100dvh;
  background: #101c22;
}

.welcome-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}

.welcome-icon {
  width: 200px;
  height: 200px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

/* Separate class for welcome screen logo - big size */
.welcome-logo-img {
  width: 200px;
  height: 200px;
}

.welcome-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.welcome-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(203, 213, 225, 0.9);
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}

.welcome-footer {
  padding: 16px 16px calc(32px + env(safe-area-inset-bottom, 0px));
  background: #101c22;
}

.btn-primary {
  width: 100%;
  height: 56px;
  background: #13a4ec;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:active {
  transform: scale(0.98);
  background: #1090d0;
}