:root {
  --fog-950: #080b10;
  --fog-900: #0d1117;
  --fog-850: #161b22;
  --fog-800: #212529;
  --fog-750: #2b3138;
  --fog-700: #343a40;
  --fog-600: #495057;
  --fog-500: #6c757d;
  --fog-400: #adb5bd;
  --fog-300: #ced4da;
  --fog-200: #dee2e6;
  --fog-100: #f1f3f5;
  --fog-50: #f8f9fa;
  --frost-600: #005ab3;
  --frost-500: #0073e6;
  --frost-400: #1a8cff;
  --frost-300: #4da6ff;
  --frost-200: #80bfff;
  --mist-800: #243b53;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 18px 36px rgba(0, 0, 0, 0.28);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--fog-900);
}

body {
  margin: 0;
  color: var(--fog-100);
  background:
    radial-gradient(circle at top left, rgba(0, 115, 230, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--fog-900), var(--fog-950));
  min-height: 100vh;
}

body,
button,
input {
  font: inherit;
}

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

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

button,
input {
  border: 0;
}

button {
  cursor: pointer;
}

main {
  min-height: 70vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(173, 181, 189, 0.12);
  background: rgba(13, 17, 23, 0.94);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fog-50);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand {
  font-size: 21px;
  white-space: nowrap;
}

.brand:hover,
.footer-brand:hover,
.desktop-nav a:hover,
.mobile-panel a:hover {
  color: var(--frost-300);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: linear-gradient(135deg, var(--frost-500), var(--frost-300));
  box-shadow: 0 10px 24px rgba(0, 115, 230, 0.38);
  font-size: 14px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--fog-200);
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a.is-active {
  color: var(--frost-300);
}

.nav-drop {
  position: relative;
  padding: 24px 0;
}

.nav-drop-menu {
  position: absolute;
  top: 60px;
  left: 0;
  width: 190px;
  padding: 8px;
  border: 1px solid rgba(173, 181, 189, 0.13);
  border-radius: 14px;
  background: rgba(33, 37, 41, 0.98);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-drop:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--fog-200);
}

.nav-drop-menu a:hover {
  background: var(--fog-700);
}

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

.header-search input,
.mobile-panel input,
.big-search input,
.tool-row input {
  color: var(--fog-100);
  background: var(--fog-800);
  border: 1px solid rgba(173, 181, 189, 0.14);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
  width: 260px;
  height: 40px;
  padding: 0 14px;
  border-radius: 11px;
}

.header-search input:focus,
.mobile-panel input:focus,
.big-search input:focus,
.tool-row input:focus {
  border-color: var(--frost-500);
  box-shadow: 0 0 0 4px rgba(0, 115, 230, 0.16);
}

.header-search button,
.mobile-panel button,
.big-search button {
  height: 40px;
  padding: 0 16px;
  border-radius: 11px;
  color: white;
  background: var(--frost-500);
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-panel button:hover,
.big-search button:hover,
.primary-btn:hover {
  background: var(--frost-600);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--fog-100);
  background: var(--fog-800);
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border: 1px solid rgba(173, 181, 189, 0.12);
  border-radius: 16px;
  background: var(--fog-850);
}

.mobile-panel.is-open {
  display: grid;
  gap: 12px;
}

.mobile-panel form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.mobile-panel input {
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border-radius: 11px;
}

.mobile-panel a {
  color: var(--fog-200);
  padding: 9px 4px;
}

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

.hero-shell {
  position: relative;
  min-height: 540px;
  height: min(70vh, 740px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--fog-800);
  box-shadow: var(--shadow-soft);
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.98), rgba(13, 17, 23, 0.82) 42%, rgba(13, 17, 23, 0.22) 74%),
    linear-gradient(0deg, rgba(13, 17, 23, 0.82), rgba(13, 17, 23, 0.12));
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 6vw, 76px);
  top: 50%;
  width: min(650px, calc(100% - 48px));
  transform: translateY(-50%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(77, 166, 255, 0.36);
  border-radius: 999px;
  color: var(--frost-200);
  background: rgba(0, 115, 230, 0.16);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 12px;
}

.hero-content h1,
.hero-content h2 {
  margin: 18px 0 8px;
  color: var(--fog-50);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-content h3 {
  margin: 0 0 16px;
  color: var(--frost-200);
  font-size: clamp(21px, 2.5vw, 32px);
  line-height: 1.2;
}

.hero-content p {
  margin: 0;
  color: var(--fog-200);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.8;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-meta span,
.detail-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--fog-200);
  background: rgba(33, 37, 41, 0.72);
  border: 1px solid rgba(173, 181, 189, 0.13);
}

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

.primary-btn,
.ghost-btn,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.primary-btn {
  min-height: 46px;
  padding: 0 22px;
  color: white;
  background: var(--frost-500);
  box-shadow: 0 16px 28px rgba(0, 115, 230, 0.32);
}

.ghost-btn,
.section-link {
  min-height: 46px;
  padding: 0 20px;
  color: var(--fog-100);
  border: 1px solid rgba(173, 181, 189, 0.18);
  background: rgba(33, 37, 41, 0.66);
}

.ghost-btn:hover,
.section-link:hover {
  border-color: var(--frost-500);
  color: var(--frost-200);
  transform: translateY(-1px);
}

.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: var(--fog-50);
  background: rgba(33, 37, 41, 0.82);
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.hero-arrow:hover {
  background: var(--fog-700);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dots button {
  width: 18px;
  height: 5px;
  padding: 0;
  border-radius: 999px;
  background: var(--fog-500);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 36px;
  background: var(--frost-400);
}

.quick-panel,
.page-hero,
.content-section,
.category-panel,
.detail-hero,
.player-section {
  border: 1px solid rgba(173, 181, 189, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(33, 37, 41, 0.9), rgba(13, 17, 23, 0.86));
  box-shadow: var(--shadow-card);
}

.quick-panel {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 480px);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(22px, 3vw, 34px);
}

.quick-panel h2,
.section-head h2,
.page-hero h1,
.detail-copy h1,
.player-section h2,
.detail-text h2,
.category-panel h2 {
  margin: 10px 0;
  color: var(--fog-50);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.quick-panel h2,
.section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.quick-panel p,
.section-head p,
.page-hero p,
.category-panel p,
.detail-copy p,
.detail-text p {
  margin: 0;
  color: var(--fog-300);
  line-height: 1.75;
}

.big-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.big-search input {
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  border-radius: 14px;
}

.big-search button {
  height: 52px;
  padding: 0 24px;
  border-radius: 14px;
}

.content-section,
.page-hero,
.category-panel,
.detail-hero,
.player-section {
  margin-top: 30px;
  padding: clamp(22px, 3vw, 34px);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-head > div {
  max-width: 780px;
}

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

.movie-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(173, 181, 189, 0.10);
  border-radius: var(--radius-lg);
  background: rgba(33, 37, 41, 0.82);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  border-color: var(--frost-500);
  box-shadow: 0 18px 42px rgba(0, 115, 230, 0.18);
  transform: translateY(-5px);
}

.movie-card[hidden] {
  display: none;
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fog-700), var(--fog-900));
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.movie-card:hover .poster-frame img {
  filter: brightness(1.06);
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(13, 17, 23, 0.94), transparent);
}

.type-badge,
.play-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.type-badge {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  background: rgba(0, 115, 230, 0.88);
}

.play-chip {
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  background: rgba(13, 17, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.card-copy {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.card-copy strong {
  color: var(--fog-50);
  font-size: 17px;
  line-height: 1.35;
}

.card-meta,
.card-desc {
  color: var(--fog-400);
  font-size: 13px;
  line-height: 1.55;
}

.card-desc {
  color: var(--fog-300);
}

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

.tag,
.detail-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--frost-200);
  background: rgba(0, 115, 230, 0.13);
  font-size: 12px;
  line-height: 1;
}

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

.category-tile {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(173, 181, 189, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 115, 230, 0.16), rgba(36, 59, 83, 0.5)),
    rgba(33, 37, 41, 0.76);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.category-tile:hover,
.category-panel:hover {
  border-color: var(--frost-500);
  transform: translateY(-3px);
}

.category-tile span {
  color: var(--fog-50);
  font-size: 20px;
  font-weight: 800;
}

.category-tile em {
  color: var(--fog-300);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

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

.rank-row {
  display: grid;
  grid-template-columns: auto 58px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(173, 181, 189, 0.10);
  border-radius: 16px;
  background: rgba(33, 37, 41, 0.72);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  border-color: var(--frost-500);
  transform: translateX(4px);
}

.rank-number {
  width: 38px;
  color: var(--frost-300);
  font-size: 20px;
  font-weight: 900;
}

.rank-row img {
  width: 58px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--fog-700);
}

.rank-row span {
  display: grid;
  gap: 5px;
}

.rank-row strong {
  color: var(--fog-50);
  font-size: 16px;
}

.rank-row em {
  color: var(--fog-400);
  font-size: 13px;
  font-style: normal;
}

.rank-row b {
  color: #facc15;
  font-size: 18px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 115, 230, 0.24), transparent 24rem),
    linear-gradient(135deg, rgba(33, 37, 41, 0.94), rgba(13, 17, 23, 0.96));
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(36px, 5vw, 64px);
}

.page-hero p {
  max-width: 760px;
  font-size: 17px;
}

.slim-hero {
  min-height: 220px;
}

.category-panels {
  display: grid;
  gap: 22px;
}

.category-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.category-panel h2 {
  font-size: clamp(24px, 3vw, 34px);
}

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

.category-mini-grid a {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background: var(--fog-700);
}

.category-mini-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-mini-grid span {
  position: absolute;
  inset: auto 0 0;
  padding: 32px 10px 10px;
  color: var(--fog-50);
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(0deg, rgba(13, 17, 23, 0.95), transparent);
}

.tool-row {
  margin-bottom: 20px;
}

.tool-row input {
  width: min(520px, 100%);
  height: 48px;
  padding: 0 16px;
  border-radius: 14px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--fog-400);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--frost-300);
}

.detail-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--fog-700);
  box-shadow: var(--shadow-card);
}

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

.detail-copy h1 {
  font-size: clamp(34px, 5vw, 62px);
}

.detail-copy p {
  font-size: 18px;
}

.detail-tags {
  margin: 20px 0 26px;
}

.player-section h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: black;
  box-shadow: var(--shadow-card);
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  background:
    radial-gradient(circle at center, rgba(0, 115, 230, 0.22), rgba(13, 17, 23, 0.52)),
    rgba(0, 0, 0, 0.22);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 115, 230, 0.9);
  box-shadow: 0 18px 36px rgba(0, 115, 230, 0.35);
  font-size: 32px;
  padding-left: 4px;
}

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

.detail-text {
  color: var(--fog-200);
}

.detail-text p {
  font-size: 17px;
}

.detail-text h2 {
  margin-top: 28px;
  font-size: 28px;
}

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

.search-page-results:empty {
  display: none;
}

.site-footer {
  border-top: 1px solid rgba(173, 181, 189, 0.11);
  background: rgba(8, 11, 16, 0.9);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  gap: 14px;
  color: var(--fog-400);
}

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

.footer-inner p {
  margin: 0;
  color: var(--fog-300);
}

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

.footer-links a:hover {
  color: var(--frost-300);
}

.footer-inner small {
  color: var(--fog-500);
}

@media (max-width: 1060px) {
  .header-search input {
    width: 210px;
  }

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

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

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

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

  .mobile-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .header-inner {
    height: 64px;
  }

  .hero-shell {
    min-height: 560px;
    height: 68vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(13, 17, 23, 0.98), rgba(13, 17, 23, 0.72) 58%, rgba(13, 17, 23, 0.26)),
      rgba(13, 17, 23, 0.12);
  }

  .hero-content {
    top: auto;
    bottom: 78px;
    transform: none;
  }

  .hero-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .quick-panel,
  .category-panel,
  .detail-hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .page-wrap {
    width: min(100% - 24px, 1180px);
    padding-top: 20px;
  }

  .brand {
    font-size: 18px;
  }

  .hero-shell,
  .page-hero,
  .quick-panel,
  .content-section,
  .category-panel,
  .detail-hero,
  .player-section {
    border-radius: 18px;
  }

  .hero-shell {
    min-height: 540px;
  }

  .hero-content {
    left: 18px;
    width: calc(100% - 36px);
  }

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

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .card-copy {
    padding: 12px;
  }

  .card-copy strong {
    font-size: 15px;
  }

  .rank-row {
    grid-template-columns: auto 52px 1fr;
  }

  .rank-row b {
    grid-column: 3;
  }

  .detail-poster {
    max-width: 300px;
  }

  .detail-meta span {
    font-size: 13px;
  }

  .player-overlay span {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}

@media (max-width: 430px) {
  .movie-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .category-mini-grid {
    grid-template-columns: 1fr;
  }
}
