/* --- Landing / Login page --- */
.page-landing {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px;
}

.landing-logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.landing-logo span { font-family: 'Yellowtail', cursive; }

.landing-card {
  width: 100%;
  max-width: 400px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.landing-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--txt);
  text-align: center;
}

.landing-card input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-sm);
  color: var(--txt);
  font-size: .95rem;
  outline: none;
  transition: border var(--transition);
}
.landing-card input:focus {
  border-color: var(--pink);
}
.landing-card input::placeholder { color: var(--muted); }

.landing-card select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-sm);
  color: var(--txt);
  font-size: .95rem;
  outline: none;
}
.landing-card select option { background: var(--bg-1); }

.landing-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: .8rem;
}
.landing-divider::before, .landing-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--stroke);
}

.btn-google {
  background: #fff; color: #333;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 24px;
  border: none; border-radius: var(--radius-sm);
  font-size: .9rem;
  transition: all var(--transition);
  width: 100%;
}
.btn-google:hover { background: #f0f0f0; }
.btn-google svg { width: 20px; height: 20px; }

/* --- Mode selection --- */
.page-mode {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px;
}

.mode-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.mode-card {
  width: 260px;
  padding: 28px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.mode-card:hover { transform: translateY(-4px); border-color: var(--pink); }
.mode-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.mode-card p { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.mode-card .icon { font-size: 2.4rem; margin-bottom: 12px; }

.mode-back {
  color: var(--muted);
  font-size: .85rem;
  cursor: pointer;
  border: none;
  background: none;
}
.mode-back:hover { color: var(--txt); }

/* Online count */
.online-badge {
  font-size: .8rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.online-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
