:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --border: rgba(148, 163, 184, 0.22);
  --border-strong: rgba(34, 211, 238, 0.45);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-dark: #0891b2;
  --amber: #facc15;
  --danger: #fb7185;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 36rem),
    linear-gradient(135deg, #020617 0%, #0f172a 45%, #020617 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  width: min(1280px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(8, 145, 178, 0.9));
  color: white;
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 21px;
  letter-spacing: 0.04em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.09);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  min-width: 310px;
}

.header-search input,
.mobile-search input,
.search-large input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.62);
  color: var(--text);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input,
.mobile-search input {
  height: 42px;
  padding: 0 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.search-large input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.header-search button,
.mobile-search button,
.search-large button {
  height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--cyan-dark);
  color: white;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel nav,
.mobile-cats {
  display: grid;
  gap: 8px;
}

.mobile-nav-link,
.mobile-cats a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--muted-strong);
}

.mobile-nav-link.is-active {
  color: var(--cyan);
}

.mobile-search {
  display: flex;
  gap: 10px;
  margin: 12px 0;
}

.hero {
  position: relative;
  height: min(85vh, 760px);
  min-height: 560px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, #020617 0%, transparent 38%, rgba(2, 6, 23, 0.16) 100%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  top: 50%;
  width: min(650px, calc(100% - 48px));
  transform: translateY(-50%);
}

.hero-kicker,
.page-hero span,
.section-heading span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  border: 1px solid rgba(34, 211, 238, 0.36);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p {
  max-width: 720px;
  color: var(--muted-strong);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

.hero-meta,
.detail-meta,
.movie-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-meta span,
.detail-meta span,
.movie-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--muted-strong);
  background: rgba(15, 23, 42, 0.5);
  font-size: 13px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 26px;
  border-radius: 999px;
  padding: 0 28px;
  background: linear-gradient(135deg, #22d3ee, #0891b2);
  color: white;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(8, 145, 178, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 48px rgba(8, 145, 178, 0.48);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.hero-controls > button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 28px;
  backdrop-filter: blur(12px);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--cyan);
}

.content-section {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  gap: 20px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.section-heading i {
  flex: 1;
  height: 1px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.6), transparent);
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scrollbar-width: thin;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.small-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.movie-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: var(--border-strong);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.movie-card-link {
  display: block;
  height: 100%;
}

.poster-wrap {
  position: relative;
  margin: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
}

.compact .poster-wrap {
  aspect-ratio: 3 / 4;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover img,
.media-row:hover img,
.rank-card:hover img,
.category-card:hover img {
  transform: scale(1.08);
}

.rating-badge,
.play-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
}

.rating-badge {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.play-badge {
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  color: white;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-card-body {
  padding: 16px;
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 8px;
  overflow: hidden;
  color: white;
  font-size: 18px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.compact h3 {
  min-height: 42px;
  font-size: 16px;
}

.movie-card p {
  display: -webkit-box;
  min-height: 62px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.compact p {
  min-height: 44px;
  -webkit-line-clamp: 2;
}

.movie-meta {
  gap: 6px;
  margin-bottom: 12px;
}

.movie-meta span {
  min-height: 24px;
  font-size: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(34, 211, 238, 0.08);
  color: #a5f3fc;
  font-size: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(15, 23, 42, 0.78);
  color: var(--muted-strong);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tab-button.is-active {
  background: var(--cyan-dark);
  color: white;
  box-shadow: 0 14px 30px rgba(8, 145, 178, 0.28);
}

.tab-pane {
  display: none;
}

.tab-pane.is-active {
  display: block;
}

.rank-panel,
.side-panel,
.detail-card,
.filter-panel,
.category-card,
.player-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.rank-panel,
.side-panel,
.detail-card {
  padding: 22px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.panel-title h2,
.side-panel h2 {
  margin: 0;
  font-size: 22px;
}

.panel-title a {
  color: var(--cyan);
  font-size: 14px;
}

.rank-mini-list,
.latest-list {
  display: grid;
  gap: 14px;
}

.latest-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-row {
  display: grid;
  grid-template-columns: auto 82px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 10px;
  background: rgba(2, 6, 23, 0.38);
  transition: background 0.2s ease;
}

.media-row:hover {
  background: rgba(15, 23, 42, 0.95);
}

.media-row strong {
  color: var(--cyan);
  font-size: 18px;
}

.media-row img {
  width: 82px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.media-row span {
  min-width: 0;
}

.media-row b,
.media-row em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-row b {
  color: white;
  font-size: 15px;
}

.media-row em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
}

.filter-panel input,
.filter-panel select {
  height: 46px;
  padding: 0 15px;
}

.filter-selects {
  display: flex;
  gap: 10px;
}

.filter-selects select {
  min-width: 142px;
}

.page-hero {
  position: relative;
  min-height: 340px;
  padding: 96px max(24px, calc((100vw - 1280px) / 2 + 24px)) 56px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(2, 6, 23, 0.98), rgba(8, 47, 73, 0.68)),
    radial-gradient(circle at 78% 20%, rgba(34, 211, 238, 0.24), transparent 28rem);
}

.compact-hero {
  min-height: 280px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.category-card {
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.category-cover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  height: 180px;
  overflow: hidden;
}

.category-cover-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card-body {
  padding: 22px;
}

.category-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.category-card p {
  margin: 0 0 14px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.category-card span {
  color: var(--cyan);
  font-weight: 800;
}

.detail-page {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 34px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.player-box {
  position: relative;
  overflow: hidden;
  background: #000;
}

.player-box video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  border: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2)),
    rgba(0, 0, 0, 0.2);
  color: white;
  text-align: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-overlay.is-loading .player-button {
  animation: pulse 1s infinite ease-in-out;
}

.player-button {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  box-shadow: 0 18px 48px rgba(8, 145, 178, 0.4);
  font-size: 30px;
}

.player-overlay strong {
  max-width: min(90%, 680px);
  font-size: clamp(18px, 3vw, 28px);
}

.player-error {
  position: absolute;
  left: 50%;
  top: 50%;
  display: none;
  width: min(460px, calc(100% - 48px));
  border-radius: 18px;
  padding: 18px;
  background: rgba(127, 29, 29, 0.86);
  color: white;
  text-align: center;
  transform: translate(-50%, -50%);
}

.player-error.is-visible {
  display: block;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.detail-card h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
}

.detail-card section {
  margin-top: 28px;
}

.detail-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.detail-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.9;
}

.detail-tags {
  margin-top: 18px;
}

.detail-side {
  position: sticky;
  top: 96px;
}

.side-panel {
  display: grid;
  gap: 12px;
}

.more-section {
  width: 100%;
  padding-bottom: 60px;
}

.rank-list {
  display: grid;
  gap: 12px;
}

.rank-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  overflow: hidden;
}

.rank-card a {
  display: grid;
  grid-template-columns: 56px 92px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
}

.rank-card strong {
  color: var(--cyan);
  font-size: 22px;
}

.rank-card img {
  width: 92px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.rank-main {
  min-width: 0;
}

.rank-main b,
.rank-main em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-main em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.rank-meta {
  color: var(--muted-strong);
  font-size: 13px;
  white-space: nowrap;
}

.rank-score {
  color: var(--amber);
  font-weight: 800;
  white-space: nowrap;
}

.search-shell {
  padding-bottom: 70px;
}

.search-large {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 12px;
  margin-bottom: 14px;
}

.search-large input {
  height: 54px;
  padding: 0 20px;
}

.search-large button {
  height: 54px;
}

.search-status {
  margin-bottom: 24px;
  color: var(--muted);
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 36px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
}

.footer-brand p {
  max-width: 520px;
  color: var(--muted-strong);
  line-height: 1.8;
}

.footer-links h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted-strong);
}

.footer-links a:hover {
  color: var(--cyan);
  border-color: var(--border-strong);
}

.is-filter-hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .header-search {
    display: none;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .small-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split-section,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }
}

@media (max-width: 820px) {
  .header-inner {
    height: 66px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero {
    height: 72vh;
    min-height: 520px;
  }

  .hero-content {
    top: 48%;
  }

  .hero-content h1,
  .page-hero h1 {
    letter-spacing: -0.04em;
  }

  .card-grid,
  .small-grid,
  .category-grid,
  .latest-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .filter-selects {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rank-card a {
    grid-template-columns: 42px 78px minmax(0, 1fr);
  }

  .rank-meta,
  .rank-score {
    grid-column: 3;
  }
}

@media (max-width: 520px) {
  .brand-text small {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-controls {
    bottom: 18px;
  }

  .hero-controls > button {
    width: 40px;
    height: 40px;
  }

  .content-section,
  .detail-page {
    width: min(100% - 22px, 1280px);
  }

  .card-grid,
  .small-grid {
    gap: 12px;
  }

  .movie-card-body {
    padding: 12px;
  }

  .movie-card h3 {
    font-size: 15px;
  }

  .movie-card p,
  .tag-row {
    display: none;
  }

  .media-row {
    grid-template-columns: auto 72px minmax(0, 1fr);
  }

  .media-row img {
    width: 72px;
    height: 48px;
  }

  .search-large {
    grid-template-columns: 1fr;
  }
}
