/* =================================================================
   100 LİTRE — Oyun
   Müze ile aynı görsel kimlik: koyu okyanus + altın vurgu + glassmorphism
   ================================================================= */

:root {
  --deep:      #03142b;
  --deep-2:    #062547;
  --ocean:     #0a4a86;
  --water:     #1a8fd1;
  --sky:       #6cc8ff;
  --ice:       #e9f6ff;
  --paper:     #f5fbff;
  --gold:      #f3c969;
  --gold-2:    #e9a83a;
  --danger:    #ff6b6b;
  --warn:      #ffb84d;
  --good:      #6cdc8b;
  --text:      #0a2540;
  --text-soft: #4a6b8c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  user-select: none;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

a { color: inherit; }


/* =================================================================
   LOBİ
   ================================================================= */
.lobby {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(ellipse at top, #0d3a6b 0%, var(--deep) 60%, #01081a 100%);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(.6,0,.4,1);
  overflow: hidden;
}
.lobby.hidden { opacity: 0; transform: scale(1.15); pointer-events: none; }

.bg-waves { position: absolute; inset: 0; overflow: hidden; }
.wave {
  position: absolute;
  left: -25%; bottom: -250px;
  width: 150%; height: 600px;
  border-radius: 45%;
  opacity: 0.18;
  animation: waveSpin 22s linear infinite;
}
.wave1 { background: radial-gradient(circle, #4ec3ff, transparent 60%); }
.wave2 { background: radial-gradient(circle, #1a8fd1, transparent 60%); animation-duration: 30s; animation-direction: reverse; }
.wave3 { background: radial-gradient(circle, #0a4a86, transparent 60%); animation-duration: 40s; }
@keyframes waveSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.droplets { position: absolute; inset: 0; pointer-events: none; }
.droplets span {
  position: absolute; top: -10vh;
  width: 6px; height: 18px;
  background: linear-gradient(180deg, transparent, #bfeaff);
  border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%;
  opacity: 0.55;
  animation: fall linear infinite;
}
.droplets span:nth-child(1) { left: 12%; animation-duration: 6s; }
.droplets span:nth-child(2) { left: 24%; animation-duration: 8s; animation-delay: 2s; }
.droplets span:nth-child(3) { left: 38%; animation-duration: 7s; animation-delay: 4s; }
.droplets span:nth-child(4) { left: 50%; animation-duration: 9s; animation-delay: 1s; }
.droplets span:nth-child(5) { left: 62%; animation-duration: 5s; animation-delay: 3s; }
.droplets span:nth-child(6) { left: 74%; animation-duration: 10s; }
.droplets span:nth-child(7) { left: 86%; animation-duration: 7s; animation-delay: 5s; }
.droplets span:nth-child(8) { left: 95%; animation-duration: 8s; animation-delay: 2s; }
@keyframes fall {
  0%   { transform: translateY(-10vh); opacity: 0; }
  10%  { opacity: 0.7; }
  100% { transform: translateY(120vh); opacity: 0; }
}

.lobby-content { position: relative; z-index: 2; padding: 0 24px; max-width: 760px; }
.lobby-drop {
  width: 110px; height: 145px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 18px 30px rgba(78, 195, 255, 0.45));
  animation: pulse 3.4s ease-in-out infinite;
}
.lobby-drop svg { width: 100%; height: 100%; display: block; }
@keyframes pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-6px) scale(1.04); }
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: var(--sky);
  margin-bottom: 14px;
}
.title {
  font-size: clamp(40px, 6.5vw, 84px);
  margin-bottom: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #bfeaff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  color: #d4e9f7;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}
.subtitle strong { color: var(--gold); font-weight: 700; }
.subtitle em { color: var(--sky); font-style: italic; }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #2a1d00;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 14px 32px -10px rgba(243, 201, 105, 0.6);
  transition: transform .25s, box-shadow .25s;
}
.cta:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -10px rgba(243, 201, 105, 0.8); }
.cta:active { transform: translateY(-1px); }
.cta svg { transition: transform .3s; }
.cta:hover svg { transform: translateX(4px); }

.lobby-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.back-link {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all .25s;
}
.back-link:hover { color: var(--gold); border-color: var(--gold); }


/* =================================================================
   OYUN — Ana kapsayıcı
   ================================================================= */
.game {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, #0d3a6b 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, #062547 0%, transparent 60%),
    linear-gradient(180deg, #03142b 0%, #01081a 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease 0.3s;
  display: flex;
  flex-direction: column;
}
.game.is-active { opacity: 1; pointer-events: auto; }

/* Su seviyesi rengine göre arka plan tonu */
.game.warn { background: radial-gradient(ellipse at 50% 0%, #5e2a0d 0%, transparent 50%), linear-gradient(180deg, #2b1502 0%, #0a0500 100%); transition: background 1.5s; }
.game.danger { background: radial-gradient(ellipse at 50% 0%, #6e1414 0%, transparent 50%), linear-gradient(180deg, #2b0606 0%, #0a0000 100%); transition: background 1.5s; }


/* =================================================================
   HUD
   ================================================================= */
.hud {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 32px;
  background: linear-gradient(180deg, rgba(3,20,43,0.7) 0%, transparent 100%);
  z-index: 10;
  flex-shrink: 0;
}

.hud-water, .hud-virtual {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.water-icon {
  width: 44px; height: 56px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(108,200,255,0.4));
}
.water-icon svg { width: 100%; height: 100%; display: block; }

.hud-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.hud-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.hud-num small {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.hud-num.gold { color: var(--gold); }

/* Düşük su uyarısı animasyonu */
.hud-water.warn { animation: warnPulse 2s ease-in-out infinite; border-color: rgba(255, 184, 77, 0.4); }
.hud-water.danger { animation: dangerPulse 1s ease-in-out infinite; border-color: rgba(255, 107, 107, 0.6); background: rgba(255,107,107,0.08); }
@keyframes warnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,184,77,0); }
  50%      { box-shadow: 0 0 20px 0 rgba(255,184,77,0.4); }
}
@keyframes dangerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,107,0.2); transform: scale(1); }
  50%      { box-shadow: 0 0 24px 0 rgba(255,107,107,0.6); transform: scale(1.02); }
}

.hud-right { margin-left: auto; display: flex; gap: 8px; }
.hud-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .2s, transform .2s;
}
.hud-btn:hover { background: rgba(255,255,255,0.12); transform: scale(1.05); }
.hud-btn.music-on {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #2a1d00;
  border-color: var(--gold);
}


/* =================================================================
   PROGRESS — Sabah / Öğle / Akşam / Final
   ================================================================= */
.progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 32px 22px;
  flex-shrink: 0;
}
.step {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: all .4s;
  white-space: nowrap;
}
.step.active {
  color: #fff;
  background: linear-gradient(135deg, var(--water), #0a6cb2);
  border-color: var(--sky);
  box-shadow: 0 6px 18px rgba(26,143,209,0.4);
  transform: scale(1.05);
}
.step.done {
  color: var(--good);
  background: rgba(108,220,139,0.08);
  border-color: rgba(108,220,139,0.3);
}
.step-line {
  flex: 0 0 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1));
}


/* =================================================================
   STAGE — Sahne
   ================================================================= */
.stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 5vw 60px;
  overflow: hidden;
  position: relative;
}

.scene {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  animation: sceneIn 0.7s cubic-bezier(.2,1,.3,1);
}
@keyframes sceneIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scene-eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
}
.scene-h {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 12px;
  color: #fff;
}
.scene-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Seçim kartları */
.choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.choice {
  position: relative;
  padding: 24px 22px 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.25) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  text-align: left;
  cursor: pointer;
  transition: all .35s cubic-bezier(.2,1,.3,1);
  overflow: hidden;
  color: #fff;
}
.choice:hover {
  transform: translateY(-6px);
  border-color: var(--sky);
  background: linear-gradient(160deg, rgba(108,200,255,0.12) 0%, rgba(0,0,0,0.25) 100%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(108,200,255,0.15);
}
.choice::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(108,200,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s;
}
.choice:hover::before { opacity: 1; }

.choice-emoji {
  font-size: 44px;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform .4s;
}
.choice:hover .choice-emoji { transform: scale(1.15) rotate(-4deg); }

.choice-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.choice-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 14px;
}

.choice-cost {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cost-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.cost-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.cost-value small { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; opacity: 0.6; }
.cost-value.direct { color: var(--sky); }
.cost-value.virtual { color: var(--gold); }
.cost-value.bad { color: var(--danger); }
.cost-value.good { color: var(--good); }

.choice-extra {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  text-align: right;
}

/* Seçim sonrası tepki balonu */
.choice.picked {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(243,201,105,0.18) 0%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  animation: pickedPulse 0.5s ease;
}
@keyframes pickedPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.08); box-shadow: 0 0 40px rgba(243,201,105,0.6); }
  100% { transform: scale(1); }
}
.choice.fade {
  opacity: 0.3;
  pointer-events: none;
  transform: scale(0.96);
}


/* =================================================================
   SPLASH — Seçim sonrası damla efekti
   ================================================================= */
.splash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.splash-drop {
  position: absolute;
  width: 12px; height: 16px;
  background: linear-gradient(180deg, #bfeaff, #1a8fd1);
  border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%;
  filter: drop-shadow(0 4px 10px rgba(108,200,255,0.6));
  animation: splashDrop 1.2s cubic-bezier(.4, 0, .8, .9) forwards;
}
@keyframes splashDrop {
  0%   { transform: translate(var(--sx, 0), 0) scale(1.6); opacity: 0; }
  10%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: translate(var(--ex, 0), var(--ey, 100px)) scale(0.5); opacity: 0; }
}


/* =================================================================
   FİNAL EKRANI
   ================================================================= */
.final-screen {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background:
    radial-gradient(ellipse at top, #0d3a6b 0%, transparent 50%),
    linear-gradient(180deg, #03142b 0%, #01081a 100%);
  overflow-y: auto;
}
.final-screen.is-open { display: flex; animation: fadeIn 0.6s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.final-inner {
  max-width: 980px;
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

.final-emoji {
  font-size: 70px;
  margin-bottom: 12px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
  animation: finalBob 3s ease-in-out infinite;
}
@keyframes finalBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.final-eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}
.final-h {
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 32px;
  background: linear-gradient(180deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.fc {
  padding: 22px 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.25) 100%);
  border: 1px solid rgba(108,200,255,0.18);
  border-radius: 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.fc.gold { border-color: rgba(243,201,105,0.25); }
.fc.total {
  background: linear-gradient(160deg, rgba(243,201,105,0.12) 0%, rgba(0,0,0,0.3) 100%);
  border-color: rgba(243,201,105,0.35);
  box-shadow: 0 0 40px rgba(243,201,105,0.1);
}
.fc-lbl {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.fc-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--sky);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.fc-num.big { font-size: 50px; color: var(--gold); }
.fc-num small {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}
.fc.gold .fc-num { color: var(--gold); }
.fc-bar {
  display: block;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.fc-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--sky), var(--water));
  border-radius: 999px;
  transition: width 1.5s cubic-bezier(.2,.8,.2,1);
}
.fc-bar i.over {
  background: linear-gradient(90deg, var(--warn), var(--danger));
}
.fc-cap {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.compare-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  margin-bottom: 26px;
}
.cmp { text-align: center; }
.cmp strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}
.cmp span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.tips {
  text-align: left;
  padding: 22px 28px;
  background: linear-gradient(160deg, rgba(108,220,139,0.06) 0%, rgba(0,0,0,0.2) 100%);
  border: 1px solid rgba(108,220,139,0.2);
  border-radius: 18px;
  margin-bottom: 28px;
}
.tips-h {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--good);
  margin-bottom: 14px;
}
.tips ul { list-style: none; display: grid; gap: 10px; }
.tips li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 12px 16px;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  border-left: 3px solid var(--good);
}
.tips li span { font-size: 24px; flex-shrink: 0; }
.tips li strong { color: var(--good); font-weight: 700; }

.final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  letter-spacing: 0.02em;
}
.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #2a1d00;
  box-shadow: 0 12px 28px -8px rgba(243, 201, 105, 0.5);
}
.btn.primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -8px rgba(243, 201, 105, 0.7); }
.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn.ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--gold); }


/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 900px) {
  .hud { padding: 14px 18px; gap: 12px; flex-wrap: wrap; }
  .hud-water, .hud-virtual { padding: 8px 14px; }
  .hud-num { font-size: 20px; }
  .water-icon { width: 36px; height: 46px; }
  .progress { gap: 6px; padding: 0 14px 16px; }
  .step { font-size: 11px; padding: 6px 12px; }
  .step-line { flex-basis: 14px; }
  .scene-h { font-size: 24px; }
  .choices { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .choice { padding: 18px 14px 16px; }
  .choice-emoji { font-size: 36px; }
  .choice-name { font-size: 16px; }
  .final-cards { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr; gap: 8px; }
  .cmp { display: flex; justify-content: space-between; align-items: baseline; }
  .cmp strong { font-size: 18px; margin-bottom: 0; }
}

@media (max-width: 500px) {
  .choices { grid-template-columns: 1fr; }
  .hud-virtual { display: none; }
}

/* =================================================================
   MOBİL — Kapsamlı düzeltmeler (≤ 768px)
   ================================================================= */
@media (max-width: 768px) {
  /* HUD kompakt - dikey stack */
  .hud {
    padding: 10px 12px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .hud-water, .hud-virtual {
    padding: 6px 12px;
    gap: 8px;
    flex: 1;
    min-width: 0;
  }
  .water-icon { width: 30px; height: 38px; }
  .hud-label { font-size: 8px; letter-spacing: 0.15em; }
  .hud-num { font-size: 16px; }
  .hud-num small { font-size: 9px; }
  .hud-right { gap: 4px; margin-left: 0; }
  .hud-btn { width: 36px; height: 36px; }
  .hud-btn svg { width: 16px; height: 16px; }

  /* Progress steps daha küçük */
  .progress {
    padding: 0 10px 12px;
    gap: 4px;
  }
  .step {
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 12px;
  }
  .step-line { flex-basis: 8px; }

  /* Stage */
  .stage { padding: 12px 4vw 50px; }
  .scene-eyebrow { font-size: 10px; letter-spacing: 0.22em; }
  .scene-h { font-size: 20px; margin-bottom: 8px; }
  .scene-sub { font-size: 12px; margin-bottom: 22px; line-height: 1.5; }

  /* Choices tek sütun */
  .choices {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .choice {
    padding: 14px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    border-radius: 14px;
  }
  .choice-emoji {
    font-size: 38px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .choice > div, .choice-cost {
    text-align: left;
  }
  .choice-name { font-size: 15px; margin-bottom: 2px; }
  .choice-desc { font-size: 11px; margin-bottom: 6px; line-height: 1.4; }
  .choice-cost {
    border-top: none;
    padding-top: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .cost-label { font-size: 9px; letter-spacing: 0.12em; }
  .cost-value { font-size: 16px; }
  .cost-value small { font-size: 9px; }
  .choice-extra { margin-top: 4px; font-size: 10px; text-align: left; }

  /* Final ekranı */
  .final-inner { padding: 12px 0; }
  .final-emoji { font-size: 50px; margin-bottom: 8px; }
  .final-eyebrow { font-size: 10px; letter-spacing: 0.22em; }
  .final-h { font-size: 22px; margin-bottom: 18px; }

  .final-cards { grid-template-columns: 1fr; gap: 10px; margin-bottom: 18px; }
  .fc { padding: 14px 16px; gap: 6px; border-radius: 14px; }
  .fc-lbl { font-size: 10px; letter-spacing: 0.12em; }
  .fc-num { font-size: 28px; }
  .fc-num.big { font-size: 36px; }
  .fc-num small { font-size: 11px; }
  .fc-cap { font-size: 10px; }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 16px;
    margin-bottom: 18px;
  }
  .cmp { display: flex; justify-content: space-between; align-items: baseline; text-align: left; }
  .cmp strong { font-size: 16px; margin-bottom: 0; }
  .cmp span { font-size: 9px; letter-spacing: 0.06em; }

  .tips { padding: 14px 16px; margin-bottom: 18px; }
  .tips-h { font-size: 16px; margin-bottom: 10px; }
  .tips li { font-size: 12px; padding: 9px 12px; gap: 10px; }
  .tips li span { font-size: 18px; }

  .final-actions { gap: 8px; }
  .btn { padding: 11px 20px; font-size: 12px; }

  /* Lobby */
  .lobby-content { padding: 0 18px; }
  .lobby-drop { width: 80px; height: 108px; margin-bottom: 18px; }
  .title { font-size: 44px; }
  .subtitle { font-size: 13px; margin-bottom: 28px; line-height: 1.55; }
  .cta { padding: 14px 28px; font-size: 14px; }
  .lobby-links { gap: 12px; margin-top: 20px; flex-direction: column; align-items: center; }
  .back-link { font-size: 10px; padding: 5px 12px; }
}

/* Çok dar */
@media (max-width: 380px) {
  .hud-num { font-size: 14px; }
  .water-icon { width: 26px; height: 34px; }
  .hud-virtual { display: none; }
  .step { font-size: 9px; padding: 4px 8px; }
  .scene-h { font-size: 18px; }
  .choice-emoji { font-size: 32px; }
  .choice-name { font-size: 14px; }
  .fc-num { font-size: 24px; }
  .fc-num.big { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01s !important; transition-duration: 0.1s !important; }
}
