:root {
  --ink: #16141f;
  --ink-soft: #3d3848;
  --muted: #6b6575;
  --paper: #faf7f2;
  --paper-2: #f1ebe3;
  --line: #e4ddd3;
  --heart: #d4524a;
  --heart-dark: #a33832;
  --teal: #1e6b66;
  --teal-soft: #dceae8;
  --white: #fffdf9;
  --shadow: 0 18px 40px -24px rgba(22, 20, 31, 0.35);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 14px;
  --wrap: 1080px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--heart-dark); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.35rem); }
h2 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }

.wrap {
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
}

.bleed {
  width: calc(100% - 4%);
  max-width: none;
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.8rem;
  z-index: 20;
}

.skip-link:focus { top: 0.5rem; color: var(--paper); }

.bandeau-aff {
  background: var(--ink);
  color: #efe8df;
  font-size: 0.82rem;
}

.bandeau-aff p {
  width: calc(100% - 4%);
  margin: 0 auto;
  padding: 0.45rem 0;
}

.bandeau-aff a { color: #ffd2cc; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
}

.brand:hover { color: var(--ink); }

.brand-name {
  display: block;
  font-family: var(--serif);
  font-weight: 650;
  font-size: 1.02rem;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-domain {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-main {
  display: flex;
  gap: 1.1rem;
}

.nav-main a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-main a[aria-current="page"],
.nav-main a:hover { color: var(--heart); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font: inherit;
  font-weight: 600;
}

.header-search {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

.header-search input {
  border: 0;
  padding: 0.42rem 0.75rem;
  width: 10rem;
  font: inherit;
  background: transparent;
}

.header-search button {
  border: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0 0.8rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.hero {
  padding: 3.2rem 0 2.4rem;
  background:
    radial-gradient(900px 280px at 10% -10%, #f6d6d1 0%, transparent 55%),
    radial-gradient(700px 240px at 90% 0%, var(--teal-soft) 0%, transparent 50%);
}

.hero-cinema {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 3.2rem;
  background: #120e14;
  color: #f6efe6;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  animation: ken 36s ease-in-out infinite alternate;
}

.hero-cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 9, 14, 0.12) 0%, rgba(12, 9, 14, 0.22) 42%, rgba(12, 9, 14, 0.78) 100%),
    linear-gradient(90deg, rgba(12, 9, 14, 0.35) 0%, transparent 45%);
  pointer-events: none;
}

@keyframes ken {
  from { transform: scale(1.04); }
  to { transform: scale(1.1) translate3d(0, -1.2%, 0); }
}

.hero-cinema .eyebrow { color: #ffb4ac; }
.hero-cinema h1 { color: #fff8f0; text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45); }
.hero-cinema h1 em { color: #ffd2cc; }
.hero-cinema .lead { color: #ddd4c8; }
.hero-cinema .btn-ghost {
  border-color: rgba(255, 248, 240, 0.35);
  color: #fff8f0;
  background: rgba(18, 14, 20, 0.25);
}
.hero-cinema .btn-ghost:hover {
  border-color: #fff8f0;
  color: #fff8f0;
}

.hero-copy { animation: rise 0.9s ease both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.hero-cinema .hero-panel {
  animation: rise 1s ease 0.15s both;
  background: color-mix(in srgb, var(--white) 92%, transparent);
  backdrop-filter: blur(10px);
}

.hero-cinema .hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2rem;
  align-items: end;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--heart);
  margin-bottom: 0.6rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--heart);
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.hero-actions, .card-outil-actions, .fiche-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-lg { padding: 0.7rem 1.2rem; font-size: 0.95rem; }

.btn-heart {
  background: var(--heart);
  color: #fff;
}

.btn-heart:hover { background: var(--heart-dark); color: #fff; }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.hero-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}

.hero-panel-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.hero-panel ul { margin: 0 0 1rem; padding-left: 1.1rem; color: var(--ink-soft); }
.hero-panel li { margin: 0.35rem 0; }
.hero-panel-foot { font-size: 0.86rem; color: var(--muted); margin: 0; }

.section {
  padding: 2.6rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.3rem;
}

.section-head p { margin: 0; color: var(--muted); max-width: 36rem; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 0.9rem;
}

.cat-card {
  display: grid;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.35s ease, border-color 0.2s ease, box-shadow 0.35s ease;
  animation: rise 0.7s ease both;
  animation-delay: calc(var(--stagger, 0) * 70ms);
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--heart);
  color: var(--ink);
  box-shadow: 0 22px 40px -20px rgba(22, 20, 31, 0.45);
}

.cat-card-photo .cat-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a151c;
}

.cat-card-photo .cat-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s ease;
}

.cat-card-photo:hover .cat-card-media img { transform: scale(1.12); }

.cat-card-body {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1.05rem 1.05rem;
}

.cat-icon { color: var(--teal); margin-bottom: 0.15rem; }
.cat-card-nom { font-weight: 700; }
.cat-card-count { color: var(--muted); font-size: 0.82rem; }

.band { background: var(--paper-2); border-block: 1px solid var(--line); }

.outil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 0.9rem;
}

.card-outil {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-outil:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px -18px rgba(22, 20, 31, 0.4);
}

.card-outil-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: start;
}

.card-outil-nom {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--ink);
  text-decoration: none;
}

.card-outil-nom:hover { color: var(--heart); }
.card-outil-cat { margin: 0; font-size: 0.8rem; }
.card-outil-acc { color: var(--ink-soft); flex: 1; margin: 0.2rem 0 0.6rem; font-size: 0.94rem; }
.card-outil-actions { margin-top: auto; }

.badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  background: var(--paper-2);
  color: var(--ink-soft);
}

.badge-live {
  background: #efe4ff;
  color: #5c3d9e;
}

.card-live { overflow: hidden; padding: 0; }
.card-live .card-outil-top,
.card-live .card-outil-cat,
.card-live .card-outil-acc,
.card-live .card-outil-actions { padding-inline: 1.1rem; }
.card-live .card-outil-top { padding-top: 0.85rem; }
.card-live .card-outil-actions { padding: 0 1.1rem 1.1rem; }

.card-live-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #120e14;
}

.card-live-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-live:hover .card-live-media img { transform: scale(1.06); }

.card-live-media .badge-live {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: #9146ff;
  color: #fff;
  box-shadow: 0 0 0 0 rgba(145, 70, 255, 0.55);
  animation: pulse-live 2.2s ease-out infinite;
}

@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(145, 70, 255, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(145, 70, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(145, 70, 255, 0); }
}

.scene-live {
  background: #16131b;
  color: #f3ece4;
  border-block: 1px solid #2a2430;
}

.scene-live-inner {
  width: min(64rem, calc(100% - 4%));
  margin-inline: auto;
}

.scene-live .section-head p,
.scene-live p { color: #c9beb3; }
.scene-live h2 { color: #fff8f0; }
.scene-live a { color: #ffd2cc; }
.scene-live .card-outil { background: #1e1a24; border-color: #342e3a; }
.scene-live .card-outil-nom { color: #fff8f0; }
.scene-live .card-outil-acc { color: #d5cbc0; }
.scene-live .btn-ghost { border-color: #4a4350; color: #fff8f0; }

.scene-live-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  margin-bottom: 1.3rem;
}

.scene-live-head p { margin: 0; max-width: 32rem; }

.scene-live-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.scene-live-grid .card-live {
  width: min(100%, 20rem);
  max-width: 20rem;
  flex: 0 1 20rem;
  text-align: left;
}

.page-intro-cinema {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: min(42vh, 380px);
  padding: 5rem 0 2.2rem;
  margin: 0;
  background: #120e14;
  color: #f6efe6;
}

.page-intro-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-intro-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: ken 28s ease-in-out infinite alternate;
}

.page-intro-cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 9, 14, 0.18) 0%, rgba(12, 9, 14, 0.72) 100%);
}

.page-intro-cinema .eyebrow { color: #ffb4ac; }
.page-intro-cinema .lead { color: #ddd4c8; }
.page-intro-cinema a { color: #ffd2cc; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg img,
  .page-intro-bg img,
  .cat-card,
  .hero-copy,
  .hero-panel,
  .badge-live { animation: none; }
  .cat-card-photo .cat-card-media img,
  .card-live-media img { transition: none; }
}

.twitch-embed {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr;
  gap: 0.7rem;
  margin-block: 0.6rem 1.8rem;
  min-height: 420px;
}
.twitch-player, .twitch-chat {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.twitch-player iframe, .twitch-chat iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 860px) {
  .twitch-embed { grid-template-columns: 1fr; }
  .twitch-chat { min-height: 280px; }
  .twitch-chat iframe { height: 280px; }
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 0.9rem;
}

.card-guide {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.card-guide h3 a {
  color: var(--ink);
  text-decoration: none;
}

.card-guide h3 a:hover { color: var(--heart); }
.card-guide-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.35rem; }
.card-guide p:last-child { margin: 0; color: var(--ink-soft); }

.page-intro { padding: 2.4rem 0 0.4rem; }

.page-intro.page-intro-cinema {
  width: 100%;
  max-width: none;
  min-height: min(42vh, 380px);
  padding: 5rem 0 2.2rem;
}

.page-intro-extra { margin-top: 0.7rem; }
.page-intro-extra a { color: #ffd2cc; }

.fiche-visual {
  position: relative;
  height: min(32vh, 260px);
  overflow: hidden;
  background: #120e14;
}

.fiche-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.fiche-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(250, 247, 242, 0.92));
}

.page-intro-cinema h1 {
  color: #fff8f0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
}

.chip {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
}

.chip span {
  background: var(--paper-2);
  border-radius: 999px;
  padding: 0 0.4rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.chip:hover { border-color: var(--heart); color: var(--ink); }

.fil {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.fil a { color: var(--muted); }

.fiche > .wrap:first-child { padding-top: 1.4rem; }
.fiche > .wrap.prose { padding-bottom: 2rem; }

.fiche-head, .article-head { margin-bottom: 1.5rem; }

.fiche-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.5rem;
}

.fiche-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  flex-direction: column;
  align-items: stretch;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.tags li {
  font-size: 0.75rem;
  background: var(--teal-soft);
  color: var(--teal);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 0 0 1.8rem;
}

.meta-grid div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
}

.meta-grid dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.meta-grid dd { margin: 0.2rem 0 0; font-weight: 650; }

.prose, .prose-page .prose { max-width: 42rem; }

.prose h2 { margin-top: 1.6rem; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin: 0.3rem 0; }

.plus-moins {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.plus-moins section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.plus-moins ul { margin: 0; padding-left: 1.1rem; }

.article { padding-bottom: 3rem; }
.article-aff, .micro { font-size: 0.86rem; color: var(--muted); }

.prose-page { padding: 2.4rem 0 3.5rem; }
.prose-page .lead { margin-bottom: 1.4rem; }

.search-page {
  display: flex;
  gap: 0.5rem;
  max-width: 36rem;
  margin-top: 1rem;
}

.search-page input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font: inherit;
}

.page-intro-cinema .search-page { margin-top: 0.35rem; }
.page-intro-cinema .search-page input {
  background: rgba(255, 248, 240, 0.94);
  color: var(--ink);
}
  font: inherit;
  background: var(--white);
}

.form-contact {
  display: grid;
  gap: 0.7rem;
  max-width: 32rem;
  margin: 1.2rem 0;
}

.form-contact label { display: block; font-weight: 650; font-size: 0.88rem; margin-bottom: 0.25rem; }

.form-contact input,
.form-contact textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font: inherit;
  background: var(--white);
}

.hp {
  position: absolute;
  left: -9999px;
}

.flash-ok, .flash-err {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  max-width: 36rem;
}

.flash-ok { background: var(--teal-soft); }
.flash-err { background: #fde8e5; }

.empty { color: var(--muted); }
.mt { margin-top: 2rem; }

.site-footer {
  background: var(--ink);
  color: #d9d2c8;
  padding: 2.4rem 0 1.2rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--paper);
  margin: 0 0 0.3rem;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
}

.footer-tag { color: #c9b8b0; }
.footer-note { font-size: 0.86rem; color: #9e978e; }

.footer-label {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.site-footer nav { display: grid; gap: 0.35rem; align-content: start; }
.site-footer nav a { color: #d9d2c8; text-decoration: none; }
.site-footer nav a:hover { color: #ffd2cc; }

.footer-copy {
  border-top: 1px solid #2c2833;
  padding-top: 1rem;
  font-size: 0.82rem;
  color: #8a837a;
}

@media (max-width: 860px) {
  .hero-cinema { min-height: 78vh; padding-top: 5.5rem; }
  .hero-grid,
  .fiche-head,
  .plus-moins,
  .footer-grid,
  .meta-grid {
    grid-template-columns: 1fr;
  }

  .outil-grid, .cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-toggle { display: inline-flex; }

  .nav-main {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0.4rem 0 0.6rem;
  }

  .nav-main.is-open { display: flex; }

  .header-search { width: 100%; }
  .header-search input { width: 100%; }
}

@media (max-width: 560px) {
  .outil-grid, .cat-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: start; }
}
