/* ═══ Selene Mini App — дизайн-система «Deep Cosmic + Warm Gold» ═══
   Токены из исследования: нейтрали с фиолетовым подтоном (не серые),
   8pt-сетка отступов, elevation тонами, hairline-бордеры вместо теней. */

:root {
  --bg: #0B0A14;
  --surface-1: #14121F;
  --surface-2: #1C1930;
  --surface-3: #26223D;
  --hairline: #2E2A45;
  --text: #F4F1FA;
  --text-2: #A9A3C2;
  --hint: #6F6A8A;
  --accent: #9B6CFF;
  --accent-deep: #6E3FD6;
  --gold: #E8C57E;
  --success: #5FD3A3;
  --r-chip: 12px;
  --r-card: 20px;
  --r-hero: 28px;
  --pad: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  overscroll-behavior: none;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(600px 420px at 22% -4%, rgba(110, 63, 214, .28), transparent 70%),
    radial-gradient(520px 380px at 88% 30%, rgba(50, 90, 150, .14), transparent 70%),
    var(--bg);
  padding-bottom: calc(86px + env(safe-area-inset-bottom));
}

.app { max-width: 480px; margin: 0 auto; padding: 0 var(--pad); }

/* ── Шапка ── */
.header {
  display: flex; align-items: center; gap: 12px;
  padding-top: calc(16px + env(safe-area-inset-top));
  padding-bottom: 16px;
}
.avatar {
  width: 46px; height: 46px; border-radius: 999px; flex: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: grid; place-items: center; font-size: 22px;
}
.hello { flex: 1; min-width: 0; }
.hello .hi { font-weight: 600; font-size: 17px; }
.hello .sub { color: var(--text-2); font-size: 13px; margin-top: 1px; }
.balance-chip {
  display: flex; align-items: center; gap: 7px;
  background: var(--surface-1); border: 1px solid var(--hairline);
  border-radius: 999px; padding: 9px 14px; cursor: pointer;
  font-weight: 700; font-size: 15px;
}
.balance-chip .gem { color: var(--gold); font-size: 14px; }

/* ── Hero: Карта дня + ритуал вытягивания ── */
.hero {
  position: relative; border-radius: var(--r-hero); overflow: hidden;
  background:
    radial-gradient(440px 320px at 78% -6%, rgba(155, 108, 255, .42), transparent 70%),
    linear-gradient(160deg, #2E2466 0%, #211a4c 48%, #14122C 100%);
  border: 1px solid rgba(155, 108, 255, .22);
  min-height: 470px;
  padding: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero .stars { position: absolute; inset: 0; pointer-events: none; }
.hero .stars i {
  position: absolute; width: 4px; height: 4px; border-radius: 999px;
  background: #fff; opacity: .8; animation: tw 2.6s ease-in-out infinite;
}
@keyframes tw { 50% { opacity: .25; transform: scale(.7);} }
.hero .moon {
  position: absolute; top: 22px; right: 26px; width: 60px; height: 60px;
  border-radius: 999px;
  box-shadow: inset -15px -7px 0 0 #F4F1FA, 0 0 34px rgba(232,197,126,.30);
  transform: rotate(18deg); pointer-events: none;
}

/* — Ритуал: подсказка + веер карт — */
.ritual { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.ritual .prompt {
  text-align: center; font-size: 16px; line-height: 1.5; color: rgba(244,241,250,.92);
  font-weight: 500; max-width: 280px;
}
.deck { position: relative; width: 100%; height: 240px; perspective: 1200px; }
.slot {
  position: absolute; left: 50%; top: 18px; width: 104px; height: 172px;
  margin-left: -52px;
  transform: translateX(var(--tx)) translateY(var(--ty)) rotate(var(--rot));
  transition: transform .8s cubic-bezier(.33,.02,.2,1), opacity .5s ease;
  cursor: pointer;
}
.slot.float { animation: floaty 3.4s ease-in-out infinite; animation-delay: var(--d); }
@keyframes floaty { 50% { transform: translateX(var(--tx)) translateY(calc(var(--ty) - 8px)) rotate(var(--rot)); } }
.slot.faded { opacity: 0; transform: translateY(60px) scale(.85); pointer-events: none; }
.slot.chosen {
  --tx: 0px; --ty: 0px; --rot: 0deg;
  transform: translate(0, -6px) scale(1.26); z-index: 5; animation: none;
}
.result .card-img { cursor: pointer; }
.flipper { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .7s cubic-bezier(.4,.1,.2,1); }
.slot.revealed .flipper { transform: rotateY(180deg); }
.face {
  position: absolute; inset: 0; border-radius: 12px; backface-visibility: hidden;
  -webkit-backface-visibility: hidden; overflow: hidden;
}
.face.back {
  background: linear-gradient(160deg, #34276E, #1B1442);
  border: 2px solid rgba(232,197,126,.45);
  box-shadow: 0 10px 24px rgba(0,0,0,.5);
  display: grid; place-items: center;
}
.face.back::before {
  content: ''; width: 38px; height: 38px; border-radius: 999px;
  box-shadow: inset -10px -4px 0 0 rgba(232,197,126,.9);
  transform: rotate(20deg);
}
.face.front {
  transform: rotateY(180deg); background: #1B1442;
  border: 2px solid rgba(232,197,126,.55);
  box-shadow: 0 12px 30px rgba(0,0,0,.55);
}
.face.front img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* — Результат (открытая карта + название) — */
.result { display: flex; flex-direction: column; align-items: center; text-align: center; }
.result.hidden { display: none; }
.result .card-img {
  width: 168px; border-radius: 14px; border: 2px solid rgba(232,197,126,.55);
  box-shadow: 0 14px 36px rgba(0,0,0,.55); margin-bottom: 14px;
}
.result .label { font-size: 12px; letter-spacing: .12em; font-weight: 700; color: rgba(244,241,250,.7); }
.result .title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px; font-weight: 600; line-height: 1.1; margin-top: 4px;
}
.result .read-hint {
  margin-top: 12px; font-size: 13px; font-weight: 600;
  color: var(--gold); letter-spacing: .02em;
  border: 1px solid rgba(232,197,126,.35); border-radius: 999px;
  padding: 8px 16px; animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .55; } }

/* ── Чтение ── */
.reading {
  margin-top: 16px; background: var(--surface-1);
  border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: 20px; display: none;
}
.reading h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 21px; color: var(--gold); margin: 14px 0 6px; font-weight: 600;
}
.reading h3:first-child { margin-top: 0; }
.reading p { color: var(--text-2); font-size: 15px; line-height: 1.65; margin-bottom: 8px; }
.shimmer {
  height: 14px; border-radius: 8px; margin: 10px 0;
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 50%, var(--surface-2) 75%);
  background-size: 200% 100%; animation: sh 1.2s linear infinite;
}
@keyframes sh { to { background-position: -200% 0; } }

/* ── Бенто 2×2 ── */
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.tile {
  background: var(--surface-1); border: 1px solid var(--hairline);
  border-radius: var(--r-card); padding: 18px; cursor: pointer;
  transition: transform .15s ease, border-color .15s ease;
}
.tile:active { transform: scale(.97); border-color: var(--accent); }
.tile .ic {
  width: 44px; height: 44px; border-radius: 999px; margin-bottom: 12px;
  background: rgba(155,108,255,.14); display: grid; place-items: center;
}
.tile .ic svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tile .t { font-weight: 600; font-size: 16px; }
.tile .s { color: var(--hint); font-size: 12.5px; margin-top: 2px; }

/* ── Стрик ── */
.streak {
  display: flex; align-items: center; gap: 14px;
  margin-top: 16px; background: var(--surface-1);
  border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 16px 18px;
}
.streak .fire { font-size: 24px; color: var(--gold); }
.streak .tx { flex: 1; }
.streak .t { font-weight: 600; font-size: 15px; }
.streak .s { color: var(--text-2); font-size: 12.5px; margin-top: 1px; }
.streak .gem { color: var(--gold); font-size: 18px; }

/* ── Нижняя навигация ── */
.nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(11,10,20,.92); backdrop-filter: blur(18px);
  border-top: 1px solid var(--hairline);
  padding-bottom: env(safe-area-inset-bottom);
}
.nav .row { max-width: 480px; margin: 0 auto; display: flex; }
.nav button {
  flex: 1; background: none; border: 0; color: var(--hint);
  padding: 11px 0 9px; font-family: inherit; font-size: 11px; font-weight: 500;
  display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer;
}
.nav button svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.nav button.active { color: var(--accent); }

/* ── Тост и лок-экран ── */
.toast {
  position: fixed; left: 50%; bottom: 104px; transform: translateX(-50%) translateY(20px);
  background: var(--surface-3); color: var(--text); border: 1px solid var(--hairline);
  border-radius: 999px; padding: 10px 20px; font-size: 14px; font-weight: 500;
  opacity: 0; transition: all .25s ease; pointer-events: none; z-index: 99; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.lock {
  position: fixed; inset: 0; z-index: 100; background: var(--bg);
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 40px;
}
.lock .m { font-size: 56px; }
.lock .t { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; }
.lock .s { color: var(--text-2); max-width: 280px; }

.hidden { display: none !important; }

/* ═══ Многоэкранность ═══ */
.screen { }

/* ── Экран Оракула (чат) ── */
#screen-oracle {
  position: fixed; top: 0; left: 0; right: 0;
  bottom: calc(86px + env(safe-area-inset-bottom));
  max-width: 480px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.chat-head {
  display: flex; align-items: center; gap: 12px;
  padding: calc(14px + env(safe-area-inset-top)) 20px 14px;
  border-bottom: 1px solid var(--hairline); background: var(--bg);
}
.avatar.sm { width: 40px; height: 40px; font-size: 19px; }
.ch-name { font-weight: 600; font-size: 17px; }
.ch-status { font-size: 12px; color: var(--success); }
.chat {
  flex: 1; overflow-y: auto; padding: 18px 16px 8px;
  display: flex; flex-direction: column; gap: 10px;
}
.msg {
  max-width: 82%; padding: 11px 15px; border-radius: 18px;
  font-size: 15px; line-height: 1.5; white-space: pre-wrap; word-wrap: break-word;
  animation: msgIn .25s ease;
}
@keyframes msgIn { from { opacity: 0; transform: translateY(6px);} }
.msg.in {
  align-self: flex-start; background: var(--surface-2);
  border: 1px solid var(--hairline); border-bottom-left-radius: 6px; color: var(--text);
}
.msg.out {
  align-self: flex-end; color: #fff; border-bottom-right-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}
.msg.typing { display: flex; gap: 5px; align-items: center; padding: 14px 16px; }
.msg.typing i { width: 7px; height: 7px; border-radius: 999px; background: var(--text-2); animation: blink 1.2s infinite; }
.msg.typing i:nth-child(2) { animation-delay: .2s; }
.msg.typing i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }
.chat-sys { align-self: center; text-align: center; color: var(--text-2); font-size: 13.5px; padding: 10px 14px; max-width: 90%; }
.chat-sys .pay-btn { margin-top: 10px; background: var(--accent); color: #fff; border: 0; border-radius: 999px; padding: 10px 20px; font-family: inherit; font-weight: 600; font-size: 14px; cursor: pointer; }
.chat-input {
  display: flex; gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--hairline); background: var(--bg);
}
.chat-input input {
  flex: 1; background: var(--surface-1); border: 1px solid var(--hairline);
  border-radius: 999px; padding: 12px 18px; color: var(--text);
  font-family: inherit; font-size: 15px; outline: none;
}
.chat-input input:focus { border-color: var(--accent); }
.chat-input button {
  width: 46px; height: 46px; flex: none; border: 0; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  cursor: pointer; display: grid; place-items: center;
}
.chat-input button:disabled { opacity: .5; }
.chat-input button svg { width: 22px; height: 22px; fill: #fff; }

/* ── Экраны-заглушки ── */
.soon-screen {
  min-height: 72vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  gap: 12px; padding: 40px 30px;
}
.soon-ic { font-size: 50px; color: var(--gold); }
.soon-t { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; }
.soon-s { color: var(--text-2); max-width: 280px; }
.soon-bal { margin-top: 10px; color: var(--gold); font-weight: 700; font-size: 22px; }

/* ── Магазин ── */
.shop-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(18px + env(safe-area-inset-top)) 0 8px;
}
.shop-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 32px; font-weight: 600; }
.shop-bal {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface-1); border: 1px solid var(--hairline);
  border-radius: 999px; padding: 10px 18px; font-weight: 700; font-size: 18px;
}
.shop-bal .gem { color: var(--gold); }
.shop-sec-t { font-size: 13px; font-weight: 600; color: var(--text-2); margin: 22px 0 12px; }
.pack-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.pack {
  background: var(--surface-1); border: 1px solid var(--hairline);
  border-radius: 16px; padding: 16px 8px; text-align: center; cursor: pointer;
  transition: transform .15s ease, border-color .15s ease;
}
.pack:active { transform: scale(.96); }
.pack .a { font-weight: 700; font-size: 19px; }
.pack .a .gem { color: var(--gold); font-size: 14px; }
.pack .s { color: var(--text-2); font-size: 12px; margin-top: 4px; }
.pack .bonus { color: var(--gold); font-size: 11px; font-weight: 600; margin-top: 4px; }
.card-links { display: flex; flex-direction: column; gap: 8px; }
.card-link {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface-1); border: 1px solid var(--hairline);
  border-radius: 14px; padding: 14px 18px; cursor: pointer; font-size: 15px;
}
.card-link:active { border-color: var(--accent); }
.card-link .r { color: var(--gold); font-weight: 600; }
.lk-bonus { color: var(--gold); font-size: 12px; font-weight: 700; }

/* ── Портал: Колесо удачи + Чёрная Луна ── */
.portal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px; font-weight: 600; text-align: center;
  padding: calc(24px + env(safe-area-inset-top)) 0 8px;
}
/* Небесный портал «Удача дня» */
.celest {
  position: relative; width: 280px; height: 280px; margin: 18px auto 10px;
  border-radius: 999px; cursor: pointer; overflow: hidden;
  background: radial-gradient(circle at 50% 42%, #3a2a78 0%, #1c1540 55%, #0b0a14 100%);
  border: 1px solid rgba(155,108,255,.3);
  box-shadow: inset 0 0 60px rgba(110,63,214,.4), 0 10px 40px rgba(110,63,214,.32);
  display: grid; place-items: center;
}
.celest .c-ring {
  position: absolute; inset: 16px; border-radius: 999px;
  border: 1px dashed rgba(232,197,126,.22); animation: cspin 50s linear infinite;
}
@keyframes cspin { to { transform: rotate(360deg); } }
.celest .c-stars i {
  position: absolute; width: 3px; height: 3px; border-radius: 999px;
  background: #fff; opacity: .8; animation: tw 2.8s ease-in-out infinite;
}
.celest .c-flash {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(255,250,235,.95), transparent 62%);
}
.celest.flashing .c-flash { animation: cflash .7s ease; }
@keyframes cflash { 0% { opacity: 0; } 28% { opacity: .9; } 100% { opacity: 0; } }
.celest-prompt { text-align: center; z-index: 2; padding: 0 34px; color: rgba(244,241,250,.82); font-size: 14px; }
.celest-prompt .pulse {
  display: block; font-size: 42px; color: var(--gold); margin-bottom: 10px;
  animation: cpulse 2.2s ease-in-out infinite;
}
@keyframes cpulse { 50% { opacity: .5; transform: scale(.88); } }
.celest-planet { display: none; text-align: center; z-index: 2; }
.celest-planet .glyph {
  font-size: 92px; color: var(--gold); line-height: 1;
  text-shadow: 0 0 32px rgba(232,197,126,.7), 0 0 60px rgba(232,197,126,.35);
}
.celest-planet .pname {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; margin-top: 4px;
}
.celest.revealed .celest-prompt { display: none; }
.celest.revealed .celest-planet { display: block; animation: planetIn 1.1s cubic-bezier(.2,.7,.3,1); }
@keyframes planetIn {
  from { opacity: 0; transform: scale(.55); filter: blur(8px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}
.luck-result {
  background: var(--surface-1); border: 1px solid var(--hairline);
  border-radius: var(--r-card); padding: 18px 20px; margin-top: 8px;
}
.luck-result .lr-head {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px;
  color: var(--gold); text-align: center; margin-bottom: 12px;
}
.luck-result .lr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.luck-result .lr-row { display: flex; justify-content: space-between; font-size: 14px;
  border-bottom: 1px solid var(--hairline); padding: 7px 0; }
.luck-result .lr-row .k { color: var(--hint); }
.luck-result .lr-msg { color: var(--text-2); font-size: 15px; line-height: 1.6; margin-top: 14px; font-style: italic; }
.luck-drop { color: var(--gold); text-align: center; font-weight: 600; margin-top: 12px; }

.portal-card {
  display: flex; align-items: center; gap: 14px; margin-top: 18px;
  background: linear-gradient(160deg, rgba(40,30,70,.6), var(--surface-1));
  border: 1px solid rgba(155,108,255,.22); border-radius: var(--r-card);
  padding: 18px 20px; cursor: pointer;
}
.portal-card:active { transform: scale(.98); }
.portal-card .pc-ic { font-size: 30px; }
.portal-card .pc-tx { flex: 1; }
.portal-card .pc-t { font-weight: 600; font-size: 17px; }
.portal-card .pc-s { color: var(--text-2); font-size: 13px; margin-top: 1px; }
.portal-card .pc-go { color: var(--accent); font-size: 22px; }
.lua-result {
  background: var(--surface-1); border: 1px solid var(--hairline);
  border-radius: var(--r-card); padding: 20px; margin-top: 12px;
}
.lua-result h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px;
  color: var(--gold); margin: 14px 0 6px; font-weight: 600; }
.lua-result h3:first-child { margin-top: 0; }
.lua-result p { color: var(--text-2); font-size: 15px; line-height: 1.65; margin-bottom: 8px; }
.lua-result .lua-sign { text-align: center; font-size: 26px; color: var(--gold); margin-bottom: 6px; }

/* ── Переключатель музыки в Профиле ── */
.prof-toggle {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface-1); border: 1px solid var(--hairline);
  border-radius: 16px; padding: 16px 18px; margin-top: 14px;
  cursor: pointer; font-weight: 600; font-size: 15px;
}
.prof-toggle .switch {
  width: 46px; height: 28px; border-radius: 999px; flex: none;
  background: var(--surface-3); border: 1px solid var(--hairline);
  position: relative; transition: background .2s ease;
}
.prof-toggle .switch::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 999px; background: var(--text-2);
  transition: transform .2s ease, background .2s ease;
}
.prof-toggle .switch.on { background: var(--accent-deep); }
.prof-toggle .switch.on::after { transform: translateX(18px); background: #fff; }
.sub-box { display: flex; gap: 10px; }
.sub-btn {
  flex: 1; text-align: center; cursor: pointer;
  background: var(--surface-1); border: 1px solid var(--hairline);
  border-radius: 16px; padding: 18px 10px; font-weight: 700; font-size: 17px;
}
.sub-btn:active { border-color: var(--accent); }
.sub-btn .lbl { display: block; font-size: 12px; color: var(--text-2); font-weight: 500; margin-bottom: 6px; }
.sub-btn.stars { background: linear-gradient(135deg, rgba(155,108,255,.18), var(--surface-1)); }

/* ── Профиль ── */
.prof-head {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 8px; padding: calc(28px + env(safe-area-inset-top)) 0 8px;
}
.avatar.lg { width: 84px; height: 84px; font-size: 40px; }
.prof-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 30px; font-weight: 600; }
.prof-status {
  font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--hairline); color: var(--text-2);
}
.prof-status.vip { color: var(--gold); border-color: rgba(232,197,126,.4); }
.prof-status.trial { color: var(--accent); border-color: rgba(155,108,255,.4); }
.prof-stats {
  margin-top: 22px; background: var(--surface-1);
  border: 1px solid var(--hairline); border-radius: var(--r-card); overflow: hidden;
}
.prof-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px; border-bottom: 1px solid var(--hairline); font-size: 15px;
}
.prof-row:last-child { border-bottom: 0; }
.prof-row .k { color: var(--text-2); }
.prof-row .v { font-weight: 600; }
.prof-row .v .gem { color: var(--gold); font-size: 13px; }
.prof-cards { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; }
.prof-card { flex: none; width: 88px; text-align: center; }
.prof-card img {
  width: 88px; height: 146px; object-fit: cover; border-radius: 10px;
  border: 1px solid var(--hairline);
}
.prof-card .cn { font-size: 11px; color: var(--text-2); margin-top: 5px; line-height: 1.3; }
.prof-cards-empty { color: var(--hint); font-size: 14px; padding: 8px 2px; }
