:root {
  --bg: #fff7ed;
  --bg-soft: #fff3e6;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --amber: #f59e0b;
  --orange: #ea580c;
  --rose: #f43f5e;
  --dark: #111827;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(120, 53, 15, 0.14);
  --soft-shadow: 0 10px 28px rgba(120, 53, 15, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 38%, #fff7ed 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #78350f, #92400e, #c2410c);
  box-shadow: 0 10px 35px rgba(67, 20, 7, 0.25);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #78350f;
  background: linear-gradient(135deg, #fef3c7, #fb923c);
  box-shadow: 0 8px 20px rgba(251, 146, 60, 0.35);
}

.brand-text {
  font-size: 22px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-link,
.mobile-link {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #fde68a;
}

.header-search {
  display: flex;
  align-items: center;
  width: 280px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-input,
.filter-bar select {
  width: 100%;
  border: 0;
  outline: none;
}

.header-search input,
.mobile-search input {
  color: #ffffff;
  background: transparent;
  padding: 8px 12px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.header-search button,
.mobile-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  color: #78350f;
  font-weight: 800;
  background: #ffffff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

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

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

.mobile-panel-inner {
  padding: 14px 0 18px;
}

.mobile-nav {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.mobile-search {
  display: flex;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.45), transparent 32%), linear-gradient(90deg, #78350f, #9a3412, #431407);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(67, 20, 7, 0.94) 0%, rgba(67, 20, 7, 0.68) 48%, rgba(67, 20, 7, 0.3) 100%), radial-gradient(circle at 78% 18%, rgba(251, 191, 36, 0.25), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.card-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d97706;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fde68a;
  margin-bottom: 14px;
}

.hero h1,
.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

.hero p {
  max-width: 650px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-tags,
.detail-meta,
.card-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-tags span,
.detail-meta span,
.tag-row span {
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-btn,
.ghost-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  min-height: 48px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  box-shadow: 0 15px 30px rgba(234, 88, 12, 0.28);
}

.hero .primary-btn {
  color: #78350f;
  background: #ffffff;
}

.ghost-btn {
  min-height: 48px;
  padding: 0 24px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.primary-btn.small {
  min-height: 42px;
  padding: 0 18px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.section {
  padding: 72px 0;
}

.section-white {
  background: #ffffff;
}

.section-soft {
  background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.section-dark {
  background: linear-gradient(135deg, #111827, #431407);
  color: #ffffff;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2,
.page-hero h1,
.detail-copy h1,
.detail-content h2 {
  margin: 8px 0 10px;
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.section-dark h2,
.page-hero h1,
.detail-hero h1 {
  color: #ffffff;
}

.section-head p,
.page-hero p,
.card-body p,
.detail-copy .lead,
.detail-content p,
.footer-grid p {
  color: var(--muted);
}

.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.text-link {
  min-height: 42px;
  padding: 0 18px;
  color: #ea580c;
  background: #ffedd5;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border-radius: 26px;
  color: #ffffff;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.category-card::before,
.category-overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(120, 53, 15, 0.88), rgba(234, 88, 12, 0.78));
}

.category-pink::before { background: linear-gradient(135deg, #db2777, #f43f5e); }
.category-red::before { background: linear-gradient(135deg, #b91c1c, #f97316); }
.category-blue::before { background: linear-gradient(135deg, #1d4ed8, #0891b2); }
.category-green::before { background: linear-gradient(135deg, #15803d, #10b981); }
.category-orange::before { background: linear-gradient(135deg, #c2410c, #f59e0b); }
.category-slate::before { background: linear-gradient(135deg, #0f172a, #475569); }
.category-rose::before { background: linear-gradient(135deg, #be123c, #fb7185); }
.category-amber::before { background: linear-gradient(135deg, #b45309, #fbbf24); }

.category-card img {
  position: absolute;
  right: -20px;
  bottom: -35px;
  z-index: -1;
  width: 150px;
  height: 190px;
  object-fit: cover;
  border-radius: 24px;
  opacity: 0.32;
  transform: rotate(8deg);
}

.category-icon {
  display: block;
  font-size: 38px;
  margin-bottom: 18px;
}

.category-card strong {
  display: block;
  font-size: 24px;
  font-weight: 950;
  margin-bottom: 8px;
}

.category-card em {
  display: block;
  min-height: 64px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.category-card span:last-child {
  display: inline-flex;
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.18);
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid #ffedd5;
  border-radius: 26px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #431407;
}

.movie-card.compact .poster-link {
  aspect-ratio: 16 / 11;
}

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

.movie-card:hover .poster-link img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.65));
  opacity: 0.9;
}

.play-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: rgba(234, 88, 12, 0.92);
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 6px 0 8px;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 950;
}

.card-body h3 a:hover {
  color: #ea580c;
}

.card-body p {
  min-height: 46px;
  margin: 0 0 14px;
  font-size: 14px;
}

.card-meta {
  color: #6b7280;
  font-size: 13px;
  gap: 8px;
}

.card-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: #f59e0b;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  color: #92400e;
  background: #ffedd5;
}

.two-column,
.ranking-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.rank-panel,
.rank-side-card,
.detail-side {
  position: sticky;
  top: 92px;
  border: 1px solid #ffedd5;
  border-radius: 26px;
  padding: 20px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-weight: 950;
}

.panel-head a,
.side-links a {
  color: #ea580c;
  font-weight: 800;
}

.ranking-item {
  display: grid;
  grid-template-columns: 48px 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-item:hover {
  background: #fff7ed;
  transform: translateX(4px);
}

.rank-number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  color: #92400e;
  font-weight: 950;
  background: #ffedd5;
}

.rank-gold {
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.ranking-item img {
  width: 64px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
}

.ranking-copy {
  min-width: 0;
}

.ranking-copy strong,
.ranking-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-copy strong {
  font-size: 15px;
  font-weight: 900;
}

.ranking-copy em {
  color: #6b7280;
  font-size: 12px;
  font-style: normal;
}

.score {
  color: #f59e0b;
  font-weight: 950;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: #ffffff;
  background: radial-gradient(circle at 80% 10%, rgba(251, 191, 36, 0.30), transparent 30%), linear-gradient(135deg, #78350f, #9a3412, #431407);
}

.compact-hero {
  padding: 58px 0;
}

.category-hero-icon {
  display: inline-grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 32px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: #fde68a;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.45);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid #ffedd5;
  border-radius: 24px;
  background: #fff7ed;
}

.filter-input,
.filter-bar select,
.search-page-form input {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  box-shadow: inset 0 0 0 1px #fed7aa;
}

.filter-count {
  color: #92400e;
  font-weight: 900;
  white-space: nowrap;
}

.category-overview-card {
  color: #ffffff;
}

.category-overview-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.category-overview-top span {
  font-size: 34px;
}

.category-overview-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-overview-card p,
.category-overview-card a,
.category-overview-card li {
  color: rgba(255, 255, 255, 0.86);
}

.category-overview-card ul {
  padding-left: 18px;
  margin: 18px 0;
}

.ranking-list-large {
  display: grid;
  gap: 10px;
}

.ranking-list-large .ranking-item {
  border: 1px solid #ffedd5;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(120, 53, 15, 0.06);
}

.side-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.side-links a {
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff7ed;
}

.search-page-form {
  display: flex;
  max-width: 680px;
  gap: 12px;
  margin-top: 24px;
}

.search-page-form button {
  min-width: 100px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #ffffff;
}

.detail-hero {
  padding: 44px 0 64px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.detail-cover {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.32);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-copy .lead {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.detail-meta {
  margin: 22px 0 10px;
}

.detail-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-tags span {
  color: #78350f;
  background: #fde68a;
}

.detail-actions .ghost-btn {
  border-color: rgba(255, 255, 255, 0.25);
}

.player-section h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.movie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.44));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 999px;
  color: #78350f;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
  font-size: 34px;
  transform: translateX(3px);
}

.detail-content article {
  border: 1px solid #ffedd5;
  border-radius: 28px;
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.detail-content h2 {
  font-size: 26px;
}

.detail-content p {
  margin: 0 0 22px;
  font-size: 16px;
}

.detail-side h2 {
  margin-top: 0;
  font-size: 22px;
}

.detail-side dl {
  display: grid;
  gap: 10px;
}

.detail-side dt {
  color: #92400e;
  font-weight: 900;
}

.detail-side dd {
  margin: 0 0 8px;
  color: #4b5563;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding: 52px 0;
}

.footer-brand {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 18px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fbbf24;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  color: #9ca3af;
  text-align: center;
}

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

.empty-state {
  grid-column: 1 / -1;
  padding: 50px 20px;
  border: 1px solid #ffedd5;
  border-radius: 26px;
  color: #92400e;
  background: #fff7ed;
  text-align: center;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

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

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .ranking-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .rank-panel,
  .rank-side-card,
  .detail-side {
    position: static;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-text {
    font-size: 18px;
  }

  .hero {
    height: 650px;
  }

  .hero-arrow {
    display: none;
  }

  .hero h1,
  .hero h2 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }

  .section {
    padding: 52px 0;
  }

  .split-head,
  .search-page-form {
    align-items: stretch;
    flex-direction: column;
  }

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .home-grid,
  .small-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    max-width: 320px;
  }

  .ranking-item {
    grid-template-columns: 42px 58px minmax(0, 1fr);
  }

  .ranking-item .score {
    grid-column: 3;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
