/* ============================================================
   DOSYA SORUMLULUGU — screens-01-welcome.css
   ------------------------------------------------------------
   NE YAPAR   : Karsilama ekrani — tanitim slaytlari ve nokta gostergesi.
   KAYNAK     : v3.12.0'da bolundu — kurallar birebir tasindi,
                hicbir kural yeniden yazilmadi veya siralanmadi.
   SIRA       : index.html'deki <link> sirasi kaskadi belirler.
                Bu dosyanin sirasini DEGISTIRME.
   ------------------------------------------------------------
   Tam dosya listesi ve sira: BAGIMLILIK-HARITASI.md
   ============================================================ */

/* ============================================================
   WELCOME SCREEN — PAGINATED HOWTO CARDS
   ============================================================ */
#welcome-screen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
}
#welcome-screen.active { display: flex; }

.wlc-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 20px 20px 12px;
  flex-shrink: 0;
}
.wlc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border2);
  transition: background 0.2s, width 0.2s;
}
.wlc-dot.active {
  background: var(--orange);
  width: 18px;
  border-radius: 3px;
}
.wlc-cards {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.wlc-card {
  display: none;
  flex-direction: column;
  padding: 20px 24px 16px;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}
.wlc-card.active { display: flex; }
.wlc-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--orange-light);
  border: 1.5px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.wlc-card-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.wlc-card-body {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  line-height: 1.7;
}
.wlc-acc-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wlc-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg3);
}
.wlc-row:last-child { border-bottom: none; }
.wlc-row-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.wlc-row-text {
  flex: 1;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
}
.wlc-row-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.wlc-nav {
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom, 0px));
  flex-shrink: 0;
}
.wlc-btn-next {
  width: 100%;
  height: 54px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--orange2), var(--orange));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.15s, transform 0.12s, box-shadow 0.12s;
  box-shadow: 0 4px 20px rgba(232,93,0,0.35);
}
.wlc-btn-next:active { opacity: 0.9; transform: scale(0.97); box-shadow: none; }
.wlc-btn-skip {
  background: none;
  border: none;
  color: var(--text3);
  font-size: 13px;
  font-weight: 500;
  padding: 10px;
  cursor: pointer;
  margin-top: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

