.page-home {
  --home-gold-glow: 0 0 18px rgba(212, 175, 55, 0.4);
  --home-red-glow: 0 0 14px rgba(200, 16, 46, 0.35);
  --home-card-surface: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(74, 14, 14, 0.32));
  --home-section-gap: 64px;
  background: var(--color-ink);
  color: var(--color-white);
  overflow-x: hidden;
}

.page-home .container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

.page-home .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-gray);
  margin-bottom: 14px;
  background: rgba(10, 10, 10, 0.5);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .breadcrumb a {
  color: var(--color-gold);
  text-decoration: none;
}

.page-home .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
}

.page-home .breadcrumb-current {
  color: var(--color-rice);
}

.page-home .btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
  cursor: pointer;
}

.page-home .btn:hover,
.page-home .btn:focus-visible {
  transform: translateY(-2px);
}

.page-home .btn-gold {
  background: linear-gradient(135deg, #e6c55e, #b8902a);
  color: var(--color-ink);
  border: 1px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.25);
}

.page-home .btn-gold:hover,
.page-home .btn-gold:focus-visible {
  box-shadow: var(--home-gold-glow);
  border-color: rgba(212, 175, 55, 0.85);
}

.page-home .btn-outline {
  background: transparent;
  color: var(--color-rice);
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.page-home .btn-outline:hover,
.page-home .btn-outline:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: var(--home-gold-glow);
  background: rgba(212, 175, 55, 0.08);
}

.page-home .btn-lg {
  padding: 14px 30px;
  font-size: 15px;
}

.page-home .chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.page-home .chip-green {
  background: rgba(0, 168, 107, 0.18);
  color: #35d696;
  border: 1px solid rgba(0, 168, 107, 0.45);
}

.page-home .chip-red {
  background: rgba(200, 16, 46, 0.22);
  color: #ff8a9b;
  border: 1px solid rgba(200, 16, 46, 0.55);
}

.page-home .hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 88px 24px 128px;
  overflow: hidden;
}

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

.page-home .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.74) 0%, rgba(78, 12, 12, 0.42) 50%, rgba(10, 10, 10, 0.92) 100%),
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12) 0%, transparent 72%);
}

.page-home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin-inline: auto;
}

.page-home .hero-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2.5px;
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-bottom: 22px;
  background: rgba(10, 10, 10, 0.45);
  box-shadow: inset 0 0 12px rgba(212, 175, 55, 0.07);
}

.page-home .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 9vw, 108px);
  line-height: 1.02;
  color: var(--color-white);
  margin: 0 0 14px;
  text-shadow:
    0 0 22px rgba(212, 175, 55, 0.55),
    0 0 48px rgba(212, 175, 55, 0.2),
    0 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-home .hero-title-sub {
  display: block;
  font-size: 0.48em;
  color: var(--color-gold);
  text-shadow:
    0 0 14px rgba(212, 175, 55, 0.4),
    0 2px 3px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.16em;
  margin-top: 8px;
}

.page-home .hero-tagline {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-rice);
  letter-spacing: 0.3em;
  margin-bottom: 20px;
}

.page-home .hero-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.76);
  max-width: 560px;
  margin: 0 auto 36px;
}

.page-home .hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-home .hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.page-home .hero-scroll:hover,
.page-home .hero-scroll:focus-visible {
  color: var(--color-gold);
}

.page-home .hero-scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--color-gold) 55%, transparent);
}

.page-home .stat-strip {
  background: linear-gradient(90deg, #1c1c0e 0%, #3a2a0a 25%, #4a0e0e 75%, #1c1c0e 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  padding: 28px 24px;
}

.page-home .stat-strip-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}

.page-home .stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .stat-num {
  font-family: var(--font-data);
  font-size: 28px;
  color: var(--color-gold);
  line-height: 1.1;
}

.page-home .stat-plus {
  font-size: 0.7em;
  margin-left: 1px;
}

.page-home .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
}

.page-home .home-section {
  padding: var(--home-section-gap) 0;
  position: relative;
}

.page-home .section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.page-home .section-num {
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1;
  color: rgba(212, 175, 55, 0.14);
  display: block;
  margin-bottom: 4px;
}

.page-home .section-kicker {
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--color-red);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.page-home .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
}

.page-home .section-lead {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
  margin: 16px 0 0;
}

.page-home .timeline-section {
  background:
    radial-gradient(circle at 78% 15%, rgba(212, 175, 55, 0.1), transparent 30%),
    linear-gradient(180deg, var(--color-ink) 0%, var(--color-dark-red) 55%, var(--color-ink) 100%);
}

.page-home .timeline-wrap {
  display: grid;
  gap: 36px;
  margin-top: 36px;
  align-items: start;
}

.page-home .timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-left: 28px;
  border-left: 2px solid rgba(212, 175, 55, 0.26);
}

.page-home .timeline-node {
  position: relative;
}

.page-home .timeline-node::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0d67a, #b8902a);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.55);
}

.page-home .timeline-year {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  margin-bottom: 10px;
}

.page-home .timeline-card {
  background: var(--home-card-surface);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-md);
  padding: 18px 18px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-home .timeline-card:hover {
  box-shadow: var(--home-gold-glow);
  transform: translateX(4px);
  border-color: rgba(212, 175, 55, 0.42);
}

.page-home .timeline-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-white);
  margin: 0 0 8px;
}

.page-home .timeline-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.page-home .timeline-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.16);
}

.page-home .center-section {
  background: var(--color-ink);
}

.page-home .room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.page-home .room-card {
  background: var(--home-card-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 14px 16px;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-home .room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--home-gold-glow);
  border-color: rgba(212, 175, 55, 0.4);
}

.page-home .room-icon {
  width: 40px;
  height: 52px;
  margin: 0 auto 12px;
  background: linear-gradient(145deg, #f9f2e2, #cdbf9e);
  border-radius: 7px;
  color: var(--color-red);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.page-home .room-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-white);
  margin: 0 0 5px;
}

.page-home .room-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
}

.page-home .center-banner {
  margin-top: 30px;
  display: grid;
  gap: 0;
  background: linear-gradient(120deg, rgba(74, 14, 14, 0.85), rgba(10, 10, 10, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-home .center-banner-text {
  padding: 26px 22px;
}

.page-home .center-banner-text h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-gold);
  margin: 0 0 8px;
}

.page-home .center-banner-text p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 18px;
}

.page-home .center-banner-img img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
}

.page-home .compat-section {
  background:
    radial-gradient(circle at 15% 25%, rgba(212, 175, 55, 0.08), transparent 32%),
    linear-gradient(180deg, var(--color-ink), var(--color-dark-red) 70%, var(--color-ink));
}

.page-home .compat-wrap {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.page-home .compat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-home .compat-card {
  background: var(--home-card-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
  text-align: left;
}

.page-home .compat-card:hover {
  box-shadow: var(--home-gold-glow);
  border-color: rgba(212, 175, 55, 0.38);
  transform: translateY(-3px);
}

.page-home .compat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-ink);
}

.page-home .compat-badge-android {
  background: linear-gradient(135deg, #35d696, #00a86b);
}

.page-home .compat-badge-ios {
  background: linear-gradient(135deg, #aeb7c4, #5f6e7e);
  color: #fff;
}

.page-home .compat-badge-fold {
  background: linear-gradient(135deg, #f0d67a, #d4af37);
}

.page-home .compat-badge-pad {
  background: linear-gradient(135deg, #ff9a56, #d4702f);
  color: #fff;
}

.page-home .compat-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-white);
  margin: 0 0 6px;
}

.page-home .compat-card p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 12px;
}

.page-home .compat-aside {
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.page-home .compat-aside h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-gold);
  margin: 0;
}

.page-home .compat-aside p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.page-home .guide-section {
  background:
    radial-gradient(circle at 85% 80%, rgba(0, 168, 107, 0.06), transparent 28%),
    linear-gradient(200deg, var(--color-ink) 0%, #241515 60%, var(--color-ink) 100%);
}

.page-home .guide-wrap {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-home .guide-image {
  position: relative;
}

.page-home .guide-image::after {
  content: "";
  position: absolute;
  inset: auto 0 -12px 0;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(4px);
  z-index: -1;
}

.page-home .guide-image img {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-inline: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(212, 175, 55, 0.2);
}

.page-home .guide-content .section-head {
  margin-bottom: 6px;
}

.page-home .guide-version {
  margin: 14px 0 0;
}

.page-home .guide-point-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .guide-point-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.page-home .guide-point-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-emerald);
  box-shadow: 0 0 8px rgba(0, 168, 107, 0.55);
  flex-shrink: 0;
}

.page-home .guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .news-section {
  background:
    radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.1), transparent 42%),
    linear-gradient(180deg, var(--color-ink) 0%, var(--color-dark-red) 65%, var(--color-ink) 100%);
}

.page-home .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.page-home .news-card {
  background: rgba(10, 10, 10, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-home .news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--home-gold-glow);
}

.page-home .news-meta {
  margin-bottom: 2px;
}

.page-home .news-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.45;
  color: var(--color-white);
  margin: 0;
}

.page-home .news-card p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.page-home .news-link {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}

.page-home .news-link:hover,
.page-home .news-link:focus-visible {
  color: var(--color-rice);
}

.page-home .news-link:hover span,
.page-home .news-link:focus-visible span {
  transform: translateX(3px);
}

.page-home .news-link span {
  transition: transform 0.2s var(--ease);
}

.page-home .section-footer-cta {
  margin-top: 30px;
  text-align: center;
}

.page-home .support-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.13), transparent 30%),
    linear-gradient(180deg, var(--color-ink), #1c0a0a 80%, #100606);
  padding-bottom: 72px;
}

.page-home .support-wrap {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-home .contact-display {
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  padding-top: 16px;
}

.page-home .contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-home .contact-row dt {
  min-width: 96px;
  font-size: 13px;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.page-home .contact-row dd {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-family: var(--font-data);
  letter-spacing: 0.02em;
  word-break: break-all;
}

.page-home .support-emblem {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-home .emblem-tile {
  width: 160px;
  height: 200px;
  background: linear-gradient(150deg, #d4af37 0%, #a5802a 45%, #6b5215 100%);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow:
    0 0 32px rgba(212, 175, 55, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.22),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2);
  transform: rotate(3deg);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.page-home .emblem-char {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 800;
  color: var(--color-red);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.28);
  line-height: 1;
}

.page-home .emblem-sub {
  font-size: 13px;
  letter-spacing: 0.3em;
  color: #4a0e0e;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.35);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

@media (min-width: 768px) {
  .page-home {
    --home-section-gap: 88px;
  }

  .page-home .stat-strip-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .stat-num {
    font-size: 34px;
  }

  .page-home .stat-label {
    font-size: 13px;
  }

  .page-home .section-num {
    font-size: 58px;
  }

  .page-home .section-head h2 {
    font-size: 40px;
  }

  .page-home .section-lead {
    font-size: 15px;
  }

  .page-home .timeline-wrap {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .page-home .timeline-list {
    padding-left: 34px;
  }

  .page-home .timeline-node::before {
    left: -41px;
    width: 16px;
    height: 16px;
  }

  .page-home .timeline-card {
    padding: 20px 22px;
  }

  .page-home .timeline-card h3 {
    font-size: 20px;
  }

  .page-home .timeline-card p {
    font-size: 14px;
  }

  .page-home .room-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .page-home .center-banner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .page-home .center-banner-text {
    padding: 34px 36px;
  }

  .page-home .center-banner-img img {
    max-height: none;
  }

  .page-home .compat-wrap {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: start;
  }

  .page-home .compat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .compat-aside {
    padding: 30px 26px;
  }

  .page-home .guide-wrap {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 48px;
  }

  .page-home .guide-image img {
    max-width: 340px;
  }

  .page-home .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .support-wrap {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-title {
    font-size: 108px;
  }

  .page-home .hero-tagline {
    font-size: 20px;
  }

  .page-home .hero-desc {
    font-size: 16px;
  }

  .page-home .room-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-home .room-card {
    padding: 20px 12px 16px;
  }

  .page-home .room-card p {
    font-size: 11px;
  }
}
