/* ═══════════════════════════════════════════════════
   GPT-Image — Warm Obsidian Gallery Theme
   Aesthetic: Editorial luxury dark, warm amber on near-black
   ═══════════════════════════════════════════════════ */

:root {
  color-scheme: dark;
  --bg: #080808;
  --surface: #111111;
  --surface-2: #191919;
  --border: #252525;
  --text: #f2ece3;
  --muted: #5a5a5a;
  --accent: #e8c47c;
  --accent-gold: #d4a843;
  --accent-glow: rgba(212, 168, 67, 0.15);
  --danger: #e5484d;
  --ok: #30a46c;

  --radius: 16px;
  --radius-sm: 10px;
  --space: 20px;
  --space-sm: 12px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Atmospheric background */
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 168, 67, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(212, 168, 67, 0.03) 0%, transparent 50%);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

textarea { resize: none; }

/* ─── Layout ─────────────────────────────── */

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  max-width: 720px;
  margin: 0 auto;
  padding:
    env(safe-area-inset-top, 20px)
    max(20px, env(safe-area-inset-right))
    max(20px, env(safe-area-inset-bottom, 20px))
    max(20px, env(safe-area-inset-left));
  gap: var(--space);
}

#main-app {
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

/* ─── Header ─────────────────────────────── */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 8px;
}

.header-brand { display: flex; align-items: center; gap: 10px; }

.header-logo {
  width: 32px;
  height: 32px;
  background: var(--accent-gold);
  border-radius: 8px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 16px rgba(212, 168, 67, 0.3);
}

.header-logo svg { width: 18px; height: 18px; }

.header-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}
.status-dot.ready { background: var(--ok); box-shadow: 0 0 6px rgba(48, 164, 108, 0.5); }
.status-dot.error { background: var(--danger); }

/* ─── Card ─────────────────────────────── */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space);
  position: relative;
  overflow: hidden;
}

/* Subtle top-edge highlight */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.2), transparent);
}

/* ─── Auth Page — Full Screen Center ─────────────────── */

.auth-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: var(--space);
}

.auth-card {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  /* Entrance animation */
  animation: authEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(16px);
}

@keyframes authEntrance {
  to { opacity: 1; transform: translateY(0); }
}

.auth-card > * { animation-fill-mode: both; }

.auth-logo {
  width: 56px;
  height: 56px;
  background: var(--accent-gold);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow:
    0 0 0 1px rgba(212,168,67,0.2),
    0 8px 32px rgba(212,168,67,0.25);
  animation: authEntrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  opacity: 0;
  transform: scale(0.8);
}

.auth-logo svg { width: 28px; height: 28px; }

.auth-card h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
  animation: authEntrance 0.5s ease 0.15s forwards;
  opacity: 0;
}

.auth-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  text-align: center;
  animation: authEntrance 0.5s ease 0.18s forwards;
  opacity: 0;
}

.auth-card form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: authEntrance 0.5s ease 0.22s forwards;
  opacity: 0;
}

.auth-card .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-card label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.auth-card input {
  width: 100%;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  transition:
    border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.auth-card input::placeholder { color: #3a3a3a; }

.auth-card input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1), 0 0 20px rgba(212, 168, 67, 0.05);
}

.auth-card .btn-primary {
  width: 100%;
  margin-top: 4px;
  background: var(--accent-gold);
  color: #0a0a0a;
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    opacity 0.15s,
    transform 0.1s,
    box-shadow 0.2s;
  min-height: 52px;
  box-shadow: 0 4px 20px rgba(212,168,67,0.2);
}

.auth-card .btn-primary:hover {
  opacity: 0.92;
  box-shadow: 0 6px 28px rgba(212,168,67,0.35);
}

.auth-card .btn-primary:active { transform: scale(0.98); }
.auth-card .btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

#auth-toggle {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
  animation: authEntrance 0.5s ease 0.28s forwards;
  opacity: 0;
}

#auth-toggle a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.15s;
}
#auth-toggle a:hover { opacity: 0.7; }

.auth-error {
  color: var(--danger);
  font-size: 13px;
  text-align: center;
  min-height: 18px;
  animation: authEntrance 0.5s ease 0.26s forwards;
  opacity: 0;
}

#auth-mode-hint {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  animation: authEntrance 0.5s ease 0.3s forwards;
  opacity: 0;
}

/* ─── User Panel ─────────────────────────────── */

.user-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.user-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.2), transparent);
}

.user-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-credits {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.user-credits-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(212,168,67,0.3);
}

.user-credits-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.btn-logout {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  font-family: var(--font-body);
}
.btn-logout:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

.redeem-area {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.redeem-area input {
  flex: 1;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.redeem-area input::placeholder { color: #3a3a3a; letter-spacing: 0.02em; text-transform: none; }
.redeem-area input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.08);
}

.redeem-area .btn-primary {
  background: var(--accent-gold);
  color: #0a0a0a;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  min-height: auto;
  transition: opacity 0.15s, transform 0.1s;
  font-family: var(--font-body);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(212,168,67,0.15);
}
.redeem-area .btn-primary:hover { opacity: 0.88; }
.redeem-area .btn-primary:active { transform: scale(0.97); }
.redeem-area .btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.redeem-error { color: var(--danger); font-size: 12px; min-height: 16px; }
.redeem-success { color: var(--ok); font-size: 12px; min-height: 16px; }

/* ─── Form ─────────────────────────────── */

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

textarea,
select,
input[type="text"],
input[type="file"] {
  width: 100%;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.5;
  transition:
    border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

textarea:focus,
select:focus,
input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.08);
}

textarea { min-height: 100px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235a5a5a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

/* ─── Reference Image Upload ─────────────────── */

.ref-upload {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: outline 0.15s;
  min-height: 80px;
}

.ref-upload.drag-over {
  outline: 2px dashed var(--accent-gold);
  outline-offset: 2px;
}

.ref-upload.drag-over .ref-empty { color: var(--accent-gold); }

.ref-upload input[type="file"] { cursor: pointer; }

.ref-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ref-chip {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  animation: chipIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes chipIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.ref-chip img { width: 100%; height: 100%; object-fit: cover; }

.ref-chip-remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.75);
  border: none;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s;
}
.ref-chip-remove:hover { background: rgba(0,0,0,0.9); }

.ref-empty {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  border: 1.5px dashed var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.ref-empty:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

/* ─── Buttons ─────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.2s;
  min-height: 48px;
  font-family: var(--font-body);
}

.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.btn-primary {
  background: var(--accent-gold);
  color: #0a0a0a;
  flex: 1;
  box-shadow: 0 4px 16px rgba(212,168,67,0.2);
}
.btn-primary:hover { opacity: 0.9; box-shadow: 0 6px 24px rgba(212,168,67,0.3); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

.actions {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

/* ─── Composer Card ─────────────────────────────── */

.composer-card {
  animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
  opacity: 0;
}

/* ─── Status Bar ─────────────────────────────── */

.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.status-text {
  color: var(--muted);
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 12px;
}
.status-text.ok { color: var(--ok); }
.status-text.fail { color: var(--danger); }

.task-id {
  color: var(--muted);
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 11px;
}

/* ─── Active Tasks ─────────────────────────────── */

.active-tasks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.task-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: cardIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.task-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.15), transparent);
}

.task-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.task-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--border);
  color: var(--muted);
}

.task-badge.generating {
  background: rgba(212, 168, 67, 0.15);
  color: var(--accent-gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.task-badge.ok {
  background: rgba(48, 164, 108, 0.15);
  color: var(--ok);
}

.task-badge.fail {
  background: rgba(229, 72, 77, 0.15);
  color: var(--danger);
}

.task-time {
  font-size: 11px;
  color: var(--muted);
  font-family: ui-monospace, 'SF Mono', monospace;
}

.task-card-prompt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.task-card-result { min-height: 60px; }

.task-card-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 13px;
}

.task-card-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.task-card-img {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}

.task-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.task-card-img:hover img { transform: scale(1.03); }

.task-card-img-actions {
  position: absolute;
  bottom: 6px;
  right: 6px;
  display: flex;
  gap: 4px;
}

.task-card-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  padding: 2px 8px;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
}

.task-card-img:hover .task-card-hint { opacity: 1; }

.task-card-download {
  font-size: 11px;
  font-weight: 600;
  background: rgba(212,168,67,0.9);
  color: #0a0a0a;
  border: none;
  padding: 3px 9px;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  font-family: var(--font-body);
  white-space: nowrap;
}
.task-card-download:hover { opacity: 0.85; }
.task-card-download:active { transform: scale(0.95); }

.task-card-error {
  padding: 10px 0;
  color: var(--danger);
  font-size: 13px;
}

/* ─── History ─────────────────────────────── */

.history-section {
  border-top: 1px solid var(--border);
  padding-top: var(--space);
  margin-top: 4px;
  animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  opacity: 0;
}

.history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.history-header h2 {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.history-clear {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s;
  font-family: var(--font-body);
}
.history-clear:hover { color: var(--danger); }

.history-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 240px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.history-list::-webkit-scrollbar { width: 4px; }
.history-list::-webkit-scrollbar-track { background: transparent; }
.history-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }

.history-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}
.history-item:hover { border-color: rgba(212,168,67,0.3); transform: translateX(2px); }
.history-item.active { border-color: var(--accent-gold); }

.history-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--surface-2);
  display: grid;
  place-items: center;
}

.history-thumb img { width: 100%; height: 100%; object-fit: cover; }

.history-item-info { flex: 1; min-width: 0; }

.history-item-title {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-item-meta {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  margin-top: 2px;
}

.history-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--border);
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.history-badge.ok { background: rgba(48, 164, 108, 0.15); color: var(--ok); }
.history-badge.fail { background: rgba(229, 72, 77, 0.15); color: var(--danger); }
.history-badge.generating { background: rgba(212, 168, 67, 0.15); color: var(--accent-gold); }

/* ─── Spinner ─────────────────────────────── */

@keyframes spin { to { transform: rotate(360deg); } }

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

/* ─── Responsive ─────────────────────────────── */

@media (max-width: 480px) {
  :root { --space: 14px; }
  .field-row { grid-template-columns: 1fr; }
  .user-panel-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .user-credits-num { font-size: 30px; }
  .redeem-area { flex-direction: column; }
  .redeem-area .btn-primary { width: 100%; }
}
