/* Solstice Tori, visual language borrowed from solsticefestival.fi:
   warm grey paper, black semi-mono type, hot orange accent, mustard
   marquee, confetti of secondary colours. Fonts are free stand-ins for
   the site's licensed DMT/FK Grotesk: Space Grotesk + Space Mono. */

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("../fonts/space-mono.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("../fonts/space-mono-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  /* dotted display face, free stand-in for the site's licensed Moonbase */
  font-family: "Workbench";
  src: url("../fonts/workbench.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #1e1e1e;
  --paper: #ebebe6;      /* the site's warm grey */
  --gold: #ff8033;       /* the site's hot orange (variable keeps its old name) */
  --mustard: #ddc421;    /* their marquee yellow */
  --green: #7dcc3d;
  --pink: #de5c94;
  --purple: #9380be;
  --amber: #e4ad57;
  --dim: #8a8a82;
  --line: #d2d2c9;
  --danger: #e8515a;
  --ok: #57a02c;
  --grotesk: "Space Grotesk", "Helvetica Neue", sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
  --display: "Workbench", "Space Grotesk", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--mono);
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  padding-bottom: 76px; /* room for the tab bar */
}

/* polar grid behind everything: static spokes + circles radiating outward */
#bg-spokes, #bg-rings {
  position: fixed; top: 50%; left: 50%;
  width: 150vmax; height: 150vmax;
  margin: -75vmax 0 0 -75vmax;
  z-index: -1;
  pointer-events: none;
  opacity: .09;
}
#bg-spokes { background: center / contain no-repeat url("../img/grid.svg"); }
#bg-rings .rr { animation: radiate 12s linear infinite; }
@keyframes radiate {
  0%   { r: 96px;  opacity: 0; }
  12%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { r: 300px; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  #bg-rings .rr { animation: none; }   /* falls back to the even static rings */
}

a { color: inherit; }

/* grotesk for display & controls, mono for everything else (site-style) */
h1, h2, h3, .wordmark, .btn, .chip, .tabs a, .status, .authtabs button,
dialog h3, .badge, .photo-count, .ticker {
  font-family: var(--grotesk);
}

/* ticker */
.ticker {
  overflow: hidden; white-space: nowrap;
  border-bottom: 1px solid var(--line);
  background: var(--mustard); color: var(--ink); font-weight: 700;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.ticker-track {
  display: inline-block; padding: 4px 0;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* header */
.top { position: relative; text-align: center; padding: 14px 0 10px; border-bottom: 1px solid var(--line); }
#intro-show {
  position: absolute; top: 50%; right: 14px; transform: translateY(-50%);
  display: flex; padding: 6px; background: none; border: none;
  color: var(--dim); cursor: pointer; line-height: 0;
}
#intro-show:hover { color: var(--ink); }
.wordmark {
  text-decoration: none; font-family: var(--display); font-weight: 400;
  font-size: 17px; letter-spacing: .3em; text-transform: uppercase;
}
.wordmark::after { content: " ☼"; color: var(--gold); letter-spacing: 0; }

main { max-width: 560px; margin: 0 auto; padding: 14px 14px 24px; }

h2.spaced, h1.spaced {
  text-align: center; font-family: var(--display); font-weight: 400;
  letter-spacing: .25em; text-transform: uppercase; font-size: 20px;
  margin: 10px 0 18px;
}
h1.spaced { font-size: 34px; margin-top: 36px; }
h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .15em; margin: 26px 0 8px; }

.dim { color: var(--dim); }
.small { font-size: 12px; }
.empty { text-align: center; color: var(--dim); margin: 40px 0; }
.err { color: var(--danger); font-size: 13px; }

/* buttons & inputs */
.btn {
  font: inherit; font-family: var(--grotesk); font-weight: 500;
  border: 1px solid var(--ink); background: var(--ink);
  color: var(--paper); padding: 9px 18px; cursor: pointer;
  letter-spacing: .08em; text-transform: lowercase;
}
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.small { padding: 5px 11px; font-size: 12px; }
.btn.wide { width: 100%; margin-top: 10px; }
.btn.danger { border-color: var(--danger); background: transparent; color: var(--danger); }

input, textarea, select {
  font: inherit; width: 100%; padding: 10px 11px; margin: 6px 0;
  border: 1px solid var(--line); background: #f7f7f2; color: var(--ink);
  font-size: 16px; /* anything smaller makes iOS zoom in on focus */
}
input:focus, textarea:focus, select:focus { outline: 1px solid var(--gold); border-color: var(--gold); }
textarea { min-height: 70px; resize: vertical; }

/* landing */
.landing { text-align: center; }
.tagline { color: var(--dim); margin-bottom: 28px; }
.authbox { max-width: 360px; margin: 0 auto; text-align: left; }
.authtabs { display: flex; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.authtabs button {
  flex: 1; font: inherit; background: none; border: none; padding: 10px;
  letter-spacing: .1em; cursor: pointer; color: var(--dim);
  border-bottom: 2px solid transparent;
}
.authtabs button.on { color: var(--ink); border-bottom-color: var(--gold); }
.consent { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; margin: 10px 0; }
.consent input { width: auto; margin: 2px 0 0; }
.legal { color: var(--dim); font-size: 12px; max-width: 420px; margin: 30px auto 0; }

/* chips */
.chips { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 8px; }
.chip {
  text-decoration: none; font-size: 12px; letter-spacing: .08em;
  border: 1px solid var(--line); padding: 5px 12px; white-space: nowrap;
  text-transform: lowercase; background: #f7f7f2;
}
.chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip.sort.on { background: var(--gold); border-color: var(--gold); color: #fff; }

/* cards */
.cards { list-style: none; padding: 0; margin: 12px 0; display: grid; gap: 10px; }
.cards > .card { min-width: 0; } /* photos must not widen the grid item */
.card { border: 1px solid var(--line); background: #f7f7f2; padding: 12px 14px; }
.card-top { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.card-top h3 { margin: 0; font-size: 15px; text-transform: none; letter-spacing: 0; }
.desc { margin: 6px 0 0; color: #3c3c38; }
.want { margin: 6px 0 0; font-size: 12px; color: var(--gold); font-style: italic; }
.card.clickable { cursor: pointer; }
.card.clickable:hover { border-color: var(--gold); }
.card-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px; flex-wrap: wrap; gap: 6px 10px;
}
.who {
  display: flex; align-items: center; gap: 6px; font-size: 12px;
  color: var(--dim); min-width: 0; white-space: nowrap;
}
.who, .stars { overflow: hidden; text-overflow: ellipsis; }
.stars { white-space: nowrap; }
.ava { border-radius: 50%; background: #dededa; vertical-align: -5px; }
.ava.big { width: 64px; height: 64px; }
.stars { color: var(--gold); font-size: 12px; }
.stars.dim { color: var(--dim); }
.actions { display: flex; gap: 8px; align-items: center; }
.actions .btn { white-space: nowrap; }
.btn.offer, #offer-send {
  background: var(--gold); border-color: var(--gold); color: #fff;
}

/* inline svg icons */
.ic { vertical-align: -3px; }
.btn .ic { vertical-align: -3px; margin-right: 2px; }
.round .ic { vertical-align: middle; }

.like {
  font: inherit; background: none; border: none; cursor: pointer;
  color: var(--dim); font-size: 14px;
}
.like.on { color: var(--danger); }
.like.on .ic, .round.heart:active .ic { fill: currentColor; }
.report-btn { background: none; border: none; color: var(--dim); cursor: pointer; font-size: 14px; }

/* listing colours: each card's whole background cycles through the
   festival palette by id */
.card.cc0 { background: #89cd52; border-color: #89cd52; }
.card.cc1 { background: #a57c52; border-color: #a57c52; }
.card.cc2 { background: #df669b; border-color: #df669b; }
.card.cc3 { background: #9f9978; border-color: #9f9978; }
.card.cc4 { background: #c684ff; border-color: #c684ff; }
.card.cc5 { background: #89d9f6; border-color: #89d9f6; }
.card.cc6 { background: #dfc737; border-color: #dfc737; }
.card.cc7 { background: #df669b; border-color: #df669b; }
.card.cc8 { background: #f47c04; border-color: #f47c04; }

/* keep everything legible on the vivid fills (gold/grey accents would
   disappear on the orange and yellow cards) */
.card[class*="cc"] .want,
.card[class*="cc"] .mate-n { color: #1e1e1e; }
.card[class*="cc"] .desc { color: #1e1e1e; }
.card[class*="cc"] .who,
.card[class*="cc"] .stars,
.card[class*="cc"] .like,
.card[class*="cc"] .report-btn { color: rgba(20, 18, 12, .72); }
.card[class*="cc"] .ava { background: rgba(255, 255, 255, .4); }
.card[class*="cc"] .btn.offer {
  background: var(--ink); border-color: var(--ink); color: #fff;
}

/* listing photos */
.photowrap { position: relative; margin: -12px -14px 10px; /* bleed to the card edge */ }
.photo-count {
  position: absolute; top: 8px; right: 8px;
  background: rgba(30, 30, 30, .82); color: var(--paper);
  font-size: 11px; letter-spacing: .08em; padding: 3px 9px; border-radius: 10px;
  pointer-events: none;
}
.photostrip {
  display: flex; gap: 4px; overflow-x: auto; scroll-snap-type: x mandatory;
}
.photostrip img {
  height: 180px; min-width: 60%; flex: 1 0 auto; object-fit: cover;
  scroll-snap-align: start; background: #dededa;
}
.photostrip img:only-child { min-width: 100%; }
.photo-previews { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0; }
.photo-thumb { position: relative; }
.photo-thumb img { width: 64px; height: 64px; object-fit: cover; border: 1px solid var(--line); }
.photo-thumb button {
  position: absolute; top: -7px; right: -7px; width: 20px; height: 20px;
  border-radius: 50%; border: 1px solid var(--ink); background: var(--paper);
  font-size: 10px; line-height: 1; cursor: pointer; padding: 0;
}
input[type=file] { border: 1px dashed var(--line); padding: 14px; }

/* image uploader + cropper */
.uploader { display: flex; gap: 8px; margin: 6px 0; }
.upload-btn {
  flex: 1; padding: 14px 8px; border: 1px dashed var(--line);
  background: #f7f7f2; color: var(--ink); font: inherit; cursor: pointer;
}
.upload-btn:hover { border-color: var(--ink); }
.photo-thumb img { cursor: pointer; }

.cropper {
  position: fixed; inset: 0; z-index: 200; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 20px; background: rgba(0, 0, 0, .8);
}
.cropper[hidden] { display: none; }
#crop-stage {
  position: relative; line-height: 0; touch-action: none;
  max-width: 92vw; max-height: 66vh;
}
#crop-img {
  display: block; max-width: 92vw; max-height: 66vh;
  user-select: none; -webkit-user-drag: none;
}
#crop-box {
  position: absolute; box-sizing: border-box; border: 1px solid #fff;
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .55); cursor: move; touch-action: none;
}
#crop-box .ch {
  position: absolute; width: 20px; height: 20px; background: #fff;
  border: 1px solid var(--ink); border-radius: 50%; touch-action: none;
}
.ch.nw { left: -10px; top: -10px; cursor: nwse-resize; }
.ch.ne { right: -10px; top: -10px; cursor: nesw-resize; }
.ch.sw { left: -10px; bottom: -10px; cursor: nesw-resize; }
.ch.se { right: -10px; bottom: -10px; cursor: nwse-resize; }
.crop-actions { display: flex; gap: 12px; }

/* mate value */
.mate { display: inline-flex; align-items: center; gap: 2px; white-space: nowrap; }
.mate-gif { image-rendering: -webkit-optimize-contrast; }
.mate-n { font-weight: 600; color: var(--gold); font-size: 13px; }

.matepick-label { display: block; margin-top: 14px; font-size: 13px; }
.matepick { display: flex; align-items: center; gap: 18px; margin: 8px 0; }
.matepick button {
  font-size: 22px; width: 44px; height: 44px; border: 1px solid var(--ink);
  background: #f7f7f2; cursor: pointer;
}
.matepick output { font-size: 26px; min-width: 40px; text-align: center; }

/* swipe */
.swipe-wrap { display: flex; flex-direction: column; min-height: 60vh; }
.deck { position: relative; flex: 1; min-height: 340px; }
.deck .card {
  position: absolute; inset: 0; margin: auto; max-height: 340px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .25s, opacity .25s;
}
.deck .card.gone-left  { transform: translateX(-120%) rotate(-8deg); opacity: 0; }
.deck .card.gone-right { transform: translateX(120%) rotate(8deg); opacity: 0; }
.swipe-buttons { display: flex; justify-content: center; gap: 26px; padding: 18px 0 6px; }
.round {
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--ink);
  background: #f7f7f2; font-size: 20px; cursor: pointer;
}
.round.heart { color: var(--danger); }
.round.gold { background: var(--gold); border-color: var(--gold); }

/* trades list */
.tradelist { list-style: none; padding: 0; }
.tradeitem {
  display: grid; grid-template-columns: 1fr auto; gap: 2px 10px;
  text-decoration: none; border-bottom: 1px solid var(--line); padding: 12px 2px;
}
.tradetitle { font-weight: 600; }
.trademeta { color: var(--dim); font-size: 12px; grid-column: 1; display: flex; gap: 4px; align-items: center; }
.badge {
  background: var(--gold); color: var(--ink); border-radius: 9px;
  font-size: 11px; padding: 1px 7px; margin-left: 6px; font-weight: 600;
}
.status { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; align-self: center; grid-row: span 2; }
.s-pending { color: var(--gold); }
.s-accepted { color: var(--ok); }
.s-completed { color: var(--ink); }
.s-declined, .s-cancelled { color: var(--dim); }

/* chat: the page locks to the viewport so the conversation scrolls,
   not the document. ticker and tab bar get out of the way. */
body.chat-mode {
  display: flex; flex-direction: column;
  height: 100dvh; overflow: hidden; padding-bottom: 0;
}
.chat-mode .ticker, .chat-mode .tabs { display: none; }
.chat-mode .top { flex: none; padding: 8px 0 6px; }
.chat-mode main {
  flex: 1; min-height: 0; display: flex; flex-direction: column;
  width: 100%; max-width: 560px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.chatpage { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.chathead { display: flex; justify-content: space-between; gap: 10px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.chathead .back { display: flex; align-items: center; padding: 2px 6px 0 0; }
.chathead h2 { margin: 0; font-size: 16px; }
.chathead-right { display: flex; gap: 8px; align-items: center; }
.tradebar { padding: 10px 0; border-bottom: 1px solid var(--line); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.sharebar { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.ratestars button { font: inherit; font-size: 22px; background: none; border: none; color: var(--line); cursor: pointer; }
.ratestars button.lit { color: var(--gold); }
.pubrow { display: flex; gap: 8px; align-items: center; }
.pubrow input { width: auto; }

.messages {
  list-style: none; padding: 12px 0; margin: 0; flex: 1; min-height: 0;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column; gap: 8px;
}
.msg { max-width: 78%; padding: 8px 12px; border: 1px solid var(--line); background: #f7f7f2; }
.msg.me { align-self: flex-end; background: var(--ink); color: var(--paper); border-color: var(--ink); }
.msg.system { align-self: center; border: none; background: none; color: var(--dim); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.msg.pin { border-color: var(--gold); }
.msg.pin .coord { font-size: 20px; font-weight: 700; color: var(--gold); letter-spacing: .1em; }
.msg.contact { border-color: var(--gold); background: #ffe6d4; }
.msg.me.contact { color: var(--ink); }
.msg time { display: block; font-size: 10px; color: var(--dim); margin-top: 3px; }
.msg.me time { color: #bbb; }

.chatinput { display: flex; gap: 8px; padding-top: 10px; border-top: 1px solid var(--line); }
.chatinput input { flex: 1; margin: 0; }
.chatinput #bt-map {
  font-size: 20px; width: 44px; border: 1px solid var(--gold); background: #f7f7f2;
  color: var(--gold); cursor: pointer;
}
.typing { margin: 4px 0 0; }

/* dialogs & meetup map */
dialog { border: 1px solid var(--ink); background: var(--paper); max-width: 92vw; padding: 18px; }
dialog::backdrop { background: rgba(0,0,0,.45); }
.dialog-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 12px; }
#map-dialog { width: min(92vw, 560px); }
#map { height: 55dvh; min-height: 280px; width: 100%; margin: 10px 0 0; background: #dededa; }
.map-actions { flex-wrap: wrap; }
.map-actions a.btn { text-decoration: none; }
.msg .pin-actions { display: flex; gap: 12px; margin-top: 6px; font-size: 13px; }
.msg .pin-actions button, .msg .pin-actions a {
  font: inherit; background: none; border: none; padding: 0; cursor: pointer;
  color: var(--gold); text-decoration: underline;
}
.cashrow { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.cashrow input { width: 90px; }

/* feed */
.feedlist { list-style: none; padding: 0; }
.feeditem { border-bottom: 1px solid var(--line); padding: 12px 2px; display: grid; gap: 4px; }
.feedwho { display: flex; gap: 6px; align-items: center; font-weight: 600; }
.swapsign { color: var(--gold); }
.feedwhat { color: var(--dim); font-size: 13px; display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }

/* profile */
.profhead { display: flex; gap: 14px; align-items: center; }
.profhead h2 { margin: 0; }
.profhead .btn { margin-left: auto; }
.froggrid { display: flex; gap: 8px; flex-wrap: wrap; }
.frog { background: #f7f7f2; border: 1px solid var(--line); padding: 6px; cursor: pointer; }
.frog.on { border-color: var(--gold); outline: 1px solid var(--gold); }

/* warning bar */
#warnbar {
  background: #f4ebbc; border-bottom: 1px solid var(--gold); padding: 10px 14px;
  display: flex; gap: 12px; align-items: center; justify-content: center;
}
#warnbar[hidden], #toast[hidden] { display: none; }
#warnbar p { margin: 0; font-size: 13px; }
#warnbar p::before { content: "a note from the admin: "; font-weight: 600; }

/* tabs */
.tabs {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: flex; background: var(--paper); border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.tabs a {
  flex: 1; text-align: center; padding: 14px 0; text-decoration: none;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim);
}
.tabs a.on { color: var(--ink); border-top: 3px solid var(--gold); margin-top: -1px; }
.tabs a.plus { font-size: 22px; padding: 8px 0 6px; color: var(--gold); }
.tabs a.login-cta { color: var(--ink); font-weight: 600; }
.tabs a.login-cta::after { content: " ☼"; color: var(--gold); }

/* toast */
#toast {
  position: fixed; bottom: 84px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--paper); padding: 9px 18px; font-size: 13px;
  z-index: 50; max-width: 86vw;
}

/* the welcome guide: a floating window over an opaque backdrop, opens on
   first visit and from the header (i) button */
#intro {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  background: #1b1a10;  /* opaque backdrop, the app sits hidden behind it */
}
#intro.open { display: flex; }
#intro .intro-card {
  position: relative; width: 100%; max-width: 380px;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: 32px 24px 24px; text-align: center;
  background: var(--mustard);  /* flat marquee yellow, site-style */
  border: 1px solid var(--ink); border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .55);
}
#intro .slide {
  max-width: 420px; text-align: center; display: none;
}
#intro .slide.on { display: block; }
#intro .slide .big { font-size: 44px; margin: 0 0 14px; }
#intro h2 {
  font-family: var(--display); font-weight: 400; letter-spacing: .25em;
  text-transform: uppercase; font-size: 24px; margin: 0 0 14px;
}
#intro p { color: var(--ink); margin: 8px 0; }
#intro .slide ul { text-align: left; padding-left: 20px; color: var(--ink); }
#intro .slide li { margin: 6px 0; }
#intro .dots { display: flex; gap: 8px; margin: 26px 0 14px; }
#intro .dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--line);
}
#intro .dots span.on { background: var(--gold); }
#intro-skip {
  position: absolute; top: 16px; right: 18px; background: none; border: none;
  color: var(--dim); font: inherit; font-size: 13px; cursor: pointer;
}
#intro-next { min-width: 180px; }

/* legal pages */
.legalpage { max-width: 560px; }
.legalpage h2 { margin-top: 10px; }
.legalpage h3 { margin-top: 22px; }
.legalpage li { margin-bottom: 6px; }

/* listing detail page */
.listingpage .back {
  display: inline-flex; align-items: center; gap: 4px;
  text-decoration: none; font-size: 13px; color: var(--dim); margin-bottom: 10px;
}
.detail-photos { display: grid; gap: 8px; margin-bottom: 12px; }
.detail-photos img { width: 100%; max-height: 70vh; object-fit: contain; background: #f7f7f2; }
.detail-card .card-top h2 { margin: 0; font-size: 19px; text-transform: none; letter-spacing: 0; }
.detail-actions {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  border-top: 1px solid var(--line); margin-top: 12px; padding-top: 12px;
}

@media (min-width: 700px) {
  body { font-size: 16px; }
  main { max-width: 920px; }
  .cards { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .listingpage, .legalpage, .chatpage, .form-page, .authbox { max-width: 560px; margin-left: auto; margin-right: auto; }
  .chat-mode main { max-width: 560px; }
}
