/* ================================================================
   FIYONK — Profil sayfası (Premium kullanıcı)
   402 × 874. Light + amber. Premium = amber ring + crown + outline.
   ================================================================ */

:root {
  --slate-950: #020618;
  --slate-700: #314158;
  --slate-600: #45556c;
  --slate-500: #62748e;
  --slate-400: #90a1b9;
  --slate-300: #cad5e2;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --amber-500: #ffb900;
  --amber-600: #fe9a00;
  --amber-soft: rgba(255, 185, 0, 0.16);
  --green-500: #00c950;
  --blue-500:  #2b7fff;
  --white: #ffffff;

  --stage-bg: #e7eaf0;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--stage-bg);
  color: var(--slate-950);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button {
  background: none; border: 0; color: inherit;
  font: inherit; cursor: pointer; padding: 0;
}
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }

/* ----------------------------------------------------------------
   Stage / phone
---------------------------------------------------------------- */
.stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}
.phone {
  position: relative;
  width: 402px;
  height: 874px;
  overflow: hidden;
  background: var(--slate-50);
  isolation: isolate;
}

/* ----------------------------------------------------------------
   Status bar
---------------------------------------------------------------- */
.status-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 62px;
  z-index: 50;
  padding: 18px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--slate-950);
  font-size: 17px;
  font-weight: 600;
  background: var(--white);
  pointer-events: none;
}
.status-bar__icons { display: flex; align-items: center; gap: 6px; }

/* ----------------------------------------------------------------
   Top bar (logo + coin + bell)
---------------------------------------------------------------- */
.topbar {
  position: absolute;
  top: 62px; left: 0; right: 0;
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  z-index: 5;
}
.topbar__logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--slate-950);
}
.topbar__actions { display: flex; align-items: center; gap: 6px; }
.coin-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-950);
}
.bell-btn {
  position: relative;
  width: 40px; height: 40px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bell-btn__dot {
  position: absolute;
  top: 9px; right: 10px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #ef4444;
  border: 2px solid var(--white);
}

/* ----------------------------------------------------------------
   Body
---------------------------------------------------------------- */
.body {
  position: absolute;
  top: 110px;
  left: 0; right: 0;
  bottom: 72px;
  padding: 14px 16px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ----------------------------------------------------------------
   Profile card — PREMIUM
---------------------------------------------------------------- */
.profile-card {
  position: relative;
  background: var(--white);
  border-radius: 22px;
  padding: 22px 16px 20px;
  text-align: center;
  border: 1px solid var(--slate-100);
}
.profile-card--premium {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 1px rgba(255, 185, 0, 0.18) inset, 0 8px 22px rgba(255, 185, 0, 0.08);
}

/* Crown floating above avatar */
.premium-crown {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  z-index: 3;
  display: inline-flex;
  filter: drop-shadow(0 2px 4px rgba(255, 185, 0, 0.35));
}

.profile-avatar {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 24px auto 14px;
}
.profile-avatar__ring {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  padding: 3px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
}
.profile-avatar__img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  border: 3px solid var(--white);
  background: var(--slate-200);
}
.profile-avatar__verified {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.profile-avatar__verified svg { display: block; }

.profile-meta__name {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 700;
  color: var(--slate-950);
  letter-spacing: -0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.profile-meta__edit {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
}
.profile-meta__edit:hover { color: var(--slate-700); }
.profile-meta__city {
  margin: 0;
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 500;
}

/* ----------------------------------------------------------------
   Phone teaser card
---------------------------------------------------------------- */
.teaser-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 22px;
  padding: 18px 18px 16px;
  text-align: center;
}
.teaser-card__avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.teaser-card__avatars img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2.5px solid var(--white);
  object-fit: cover;
  background: var(--slate-200);
}
.teaser-card__avatars img + img {
  margin-left: -14px;
}
.teaser-card__title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-950);
  letter-spacing: -0.2px;
}
.teaser-card__sub {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 500;
}
.teaser-card__dots {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 14px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--slate-200);
}
.dot--active { background: var(--amber-500); width: 16px; }
.teaser-card__cta {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  background: var(--amber-500);
  color: var(--slate-950);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.1px;
  transition: background-color .15s ease;
}
.teaser-card__cta:hover { background: var(--amber-600); }

/* ----------------------------------------------------------------
   Settings list
---------------------------------------------------------------- */
.settings {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 22px;
  padding: 6px 14px;
}
.settings__row {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  cursor: pointer;
}
.settings__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-700);
}
.settings__label {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-950);
  letter-spacing: -0.1px;
}
.settings__value {
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 500;
  margin-right: 4px;
}
.settings__chevron {
  color: var(--slate-400);
  display: inline-flex;
}
.settings__divider {
  height: 1px;
  background: var(--slate-100);
  margin: 0 -2px;
}
.settings__toggle {
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: var(--slate-200);
  position: relative;
  flex: 0 0 auto;
  transition: background-color .15s ease;
}
.settings__toggle--on {
  background: var(--amber-500);
}
.settings__toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--white);
  transition: transform .15s ease;
}
.settings__toggle--on .settings__toggle-knob {
  transform: translateX(18px);
}

/* ----------------------------------------------------------------
   Bottom nav
---------------------------------------------------------------- */
.bottom-nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  background: var(--white);
  border-top: 1px solid var(--slate-100);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 5;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--slate-400);
  font-size: 11px;
  font-weight: 600;
  padding-top: 10px;
  letter-spacing: -0.05px;
}
.nav-item--active {
  color: var(--amber-500);
}
