/* ============================================================
   f222.homes — Mobile-first base stylesheet
   Class prefix: view09f52-
   Palette: #212F3D (bg) | #00695C (accent) | #BBBBBB (text)
   ============================================================ */

/* ===== Design tokens ===== */
:root {
  --view09f52-bg-deep: #212F3D;
  --view09f52-bg-mid: #1A2530;
  --view09f52-bg-soft: #2A3B4D;
  --view09f52-accent: #00695C;
  --view09f52-accent-hi: #00897B;
  --view09f52-text: #BBBBBB;
  --view09f52-text-bright: #E6E6E6;
  --view09f52-text-mute: #8A97A3;
  --view09f52-border: rgba(187, 187, 187, 0.14);
  --view09f52-border-strong: rgba(187, 187, 187, 0.28);
  --view09f52-card: #243341;
  --view09f52-card-hi: #2C3E50;
  --view09f52-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  --view09f52-radius-sm: 6px;
  --view09f52-radius-md: 10px;
  --view09f52-radius-lg: 14px;
  --view09f52-gap: 8px;
  --view09f52-header-h: 56px;
  --view09f52-bottomnav-h: 62px;
  --view09f52-max: 430px;
}

/* ===== Reset ===== */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html,
body {
  background: var(--view09f52-bg-deep);
  color: var(--view09f52-text);
  font-family: "Hind Siliguri", "Noto Sans Bengali", "SolaimanLipi", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--view09f52-accent-hi); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--view09f52-accent-hi); outline-offset: 2px; }

/* ===== App canvas ===== */
.view09f52-shell {
  max-width: var(--view09f52-max);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--view09f52-bg-deep);
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* ===== Header ===== */
.view09f52-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, #1B2836 0%, #1A2530 100%);
  border-bottom: 1px solid var(--view09f52-border);
}
.view09f52-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  min-height: var(--view09f52-header-h);
}
.view09f52-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--view09f52-text-bright);
}
.view09f52-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--view09f52-border-strong);
  background: var(--view09f52-bg-mid);
}
.view09f52-brand-name {
  font-family: "Rajdhani", "Hind Siliguri", system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--view09f52-text-bright);
  line-height: 1;
}
.view09f52-brand-name em {
  font-style: normal;
  color: var(--view09f52-accent-hi);
}
.view09f52-actions { display: flex; align-items: center; gap: 6px; }

.view09f52-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--view09f52-radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background .18s ease, color .18s ease, transform .08s ease, border-color .18s ease;
  text-align: center;
}
.view09f52-btn:active { transform: scale(0.97); }
.view09f52-btn-ghost {
  color: var(--view09f52-text-bright);
  border: 1px solid var(--view09f52-border-strong);
  background: rgba(187, 187, 187, 0.04);
}
.view09f52-btn-accent {
  background: linear-gradient(180deg, var(--view09f52-accent-hi) 0%, var(--view09f52-accent) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 105, 92, 0.35);
}
.view09f52-btn-block { width: 100%; }
.view09f52-menu-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--view09f52-radius-sm);
  border: 1px solid var(--view09f52-border-strong);
  background: rgba(187, 187, 187, 0.04);
  color: var(--view09f52-text-bright);
}
.view09f52-menu-btn svg { width: 20px; height: 20px; display: block; }

/* ===== Mobile menu ===== */
.view09f52-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 86%;
  max-width: 360px;
  height: 100vh;
  background: var(--view09f52-bg-mid);
  border-left: 1px solid var(--view09f52-border);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 80;
  overflow-y: auto;
  padding: 16px 14px calc(var(--view09f52-bottomnav-h) + 24px);
  visibility: hidden;
}
.view09f52-menu.open { transform: translateX(0); visibility: visible; }
.view09f52-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 70;
}
.view09f52-menu-backdrop.open { opacity: 1; pointer-events: auto; }
.view09f52-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.view09f52-menu-title {
  font-family: "Rajdhani", "Hind Siliguri", system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--view09f52-text-bright);
  text-transform: uppercase;
}
.view09f52-menu-title em { font-style: normal; color: var(--view09f52-accent-hi); }
.view09f52-menu-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--view09f52-border-strong);
  color: var(--view09f52-text-bright);
}
.view09f52-menu-close svg { width: 16px; height: 16px; display: block; }
.view09f52-menu-section { margin-bottom: 16px; }
.view09f52-menu-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--view09f52-text-mute);
  margin-bottom: 8px;
  padding: 0 4px;
}
.view09f52-menu-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 11px 12px;
  border-radius: var(--view09f52-radius-sm);
  color: var(--view09f52-text-bright);
  font-size: 15px;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease;
}
.view09f52-menu-list li a:hover {
  background: rgba(187, 187, 187, 0.05);
  border-color: var(--view09f52-border);
}
.view09f52-menu-list li a:active { background: rgba(0, 105, 92, 0.18); }
.view09f52-menu-list li a::after {
  content: "›";
  color: var(--view09f52-accent-hi);
  font-size: 18px;
  line-height: 1;
}
.view09f52-menu-cta {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.view09f52-menu-cta .view09f52-btn { flex: 1; min-height: 40px; }

/* ===== Main / sections ===== */
.view09f52-main {
  padding: 12px 12px calc(var(--view09f52-bottomnav-h) + 28px);
}
.view09f52-section { margin-bottom: 22px; }
.view09f52-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--view09f52-border);
}
.view09f52-section-title {
  font-family: "Rajdhani", "Hind Siliguri", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--view09f52-text-bright);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.view09f52-section-title em {
  font-style: normal;
  color: var(--view09f52-accent-hi);
}
.view09f52-section-title small {
  font-family: "Hind Siliguri", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--view09f52-text-mute);
  letter-spacing: 0;
}
.view09f52-section-more {
  font-size: 12px;
  color: var(--view09f52-text-mute);
  white-space: nowrap;
}

/* ===== Hero carousel ===== */
.view09f52-hero {
  position: relative;
  border-radius: var(--view09f52-radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--view09f52-shadow);
  background: var(--view09f52-bg-mid);
}
.view09f52-hero-track {
  display: flex;
  transition: transform .35s ease;
}
.view09f52-hero-slide {
  flex: 0 0 100%;
  position: relative;
  cursor: pointer;
}
.view09f52-hero-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.view09f52-hero-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 20%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 14px 12px;
  pointer-events: none;
}
.view09f52-hero-cap-title {
  font-family: "Rajdhani", "Hind Siliguri", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.view09f52-hero-cap-sub {
  font-size: 12px;
  color: var(--view09f52-text);
  margin-top: 2px;
}
.view09f52-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.view09f52-hero-prev { left: 8px; }
.view09f52-hero-next { right: 8px; }
.view09f52-hero-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.view09f52-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background .2s ease, width .2s ease;
  cursor: pointer;
  display: inline-block;
}
.view09f52-hero-dot.active {
  background: var(--view09f52-accent-hi);
  width: 18px;
  border-radius: 3px;
}

/* ===== H1 + lead ===== */
.view09f52-h1 {
  font-family: "Rajdhani", "Hind Siliguri", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.3;
  color: var(--view09f52-text-bright);
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.view09f52-lead {
  font-size: 14px;
  color: var(--view09f52-text);
  margin-bottom: 14px;
}
.view09f52-lead a {
  color: var(--view09f52-accent-hi);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== Announcement ===== */
.view09f52-announce {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 105, 92, 0.12);
  border: 1px solid rgba(0, 105, 92, 0.35);
  border-radius: var(--view09f52-radius-sm);
  padding: 8px 10px;
  font-size: 12px;
  color: var(--view09f52-text);
  margin-bottom: 14px;
}
.view09f52-announce-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--view09f52-accent-hi);
  flex: 0 0 8px;
  animation: view09f52-pulse 1.6s infinite;
}
@keyframes view09f52-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ===== Filter pills ===== */
.view09f52-pill-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.view09f52-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(187, 187, 187, 0.06);
  border: 1px solid var(--view09f52-border-strong);
  font-size: 12px;
  color: var(--view09f52-text);
  cursor: pointer;
}
.view09f52-pill em {
  font-style: normal;
  color: var(--view09f52-accent-hi);
  margin-right: 4px;
  font-weight: 600;
}
.view09f52-pill:active { transform: scale(0.96); }

/* ===== Game grid ===== */
.view09f52-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.view09f52-game {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--view09f52-card);
  border: 1px solid var(--view09f52-border);
  border-radius: var(--view09f52-radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform .12s ease, border-color .15s ease;
  text-align: center;
  color: inherit;
}
.view09f52-game:active { transform: scale(0.96); }
.view09f52-game:hover { border-color: var(--view09f52-accent); }
.view09f52-game-icon {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--view09f52-bg-mid);
}
.view09f52-game-name {
  font-size: 11px;
  line-height: 1.25;
  color: var(--view09f52-text-bright);
  padding: 5px 4px 6px;
  min-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Hot: horizontal icon-name bars ===== */
.view09f52-bar-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.view09f52-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px;
  background: var(--view09f52-card);
  border: 1px solid var(--view09f52-border);
  border-radius: var(--view09f52-radius-md);
  cursor: pointer;
  transition: transform .12s ease, border-color .15s ease;
  color: inherit;
}
.view09f52-bar:active { transform: scale(0.97); }
.view09f52-bar:hover { border-color: var(--view09f52-accent); }
.view09f52-bar-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 44px;
  background: var(--view09f52-bg-mid);
}
.view09f52-bar-body { flex: 1; min-width: 0; }
.view09f52-bar-name {
  font-size: 12px;
  color: var(--view09f52-text-bright);
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.view09f52-bar-tag {
  font-size: 10px;
  color: var(--view09f52-accent-hi);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.view09f52-bar-arrow {
  color: var(--view09f52-text-mute);
  font-size: 14px;
  flex: 0 0 12px;
  text-align: right;
}

/* ===== Info modules ===== */
.view09f52-card-block {
  background: var(--view09f52-card);
  border: 1px solid var(--view09f52-border);
  border-radius: var(--view09f52-radius-md);
  padding: 14px;
  margin-bottom: 12px;
}
.view09f52-card-block h2 {
  font-family: "Rajdhani", "Hind Siliguri", system-ui, sans-serif;
  font-size: 16px;
  color: var(--view09f52-text-bright);
  margin-bottom: 8px;
  font-weight: 700;
  padding-left: 10px;
  border-left: 3px solid var(--view09f52-accent-hi);
  line-height: 1.3;
}
.view09f52-card-block h3 {
  font-family: "Hind Siliguri", system-ui, sans-serif;
  font-size: 14px;
  color: var(--view09f52-text-bright);
  font-weight: 600;
  margin: 10px 0 4px;
}
.view09f52-card-block p {
  font-size: 14px;
  color: var(--view09f52-text);
  margin-bottom: 8px;
}
.view09f52-card-block p:last-child { margin-bottom: 0; }
.view09f52-card-block a {
  color: var(--view09f52-accent-hi);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.view09f52-card-block ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 14px;
  color: var(--view09f52-text);
  border-bottom: 1px dashed var(--view09f52-border);
}
.view09f52-card-block ul li:last-child { border-bottom: none; }
.view09f52-card-block ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--view09f52-accent-hi);
}
.view09f52-step {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--view09f52-border);
}
.view09f52-step:last-child { border-bottom: none; }
.view09f52-step-num {
  flex: 0 0 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--view09f52-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.view09f52-step-body { flex: 1; font-size: 14px; color: var(--view09f52-text); }
.view09f52-step-body strong { color: var(--view09f52-text-bright); }

/* ===== Inline promo link ===== */
.view09f52-inline-promo {
  color: var(--view09f52-accent-hi);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
}

/* ===== CTA strip ===== */
.view09f52-cta-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0;
}
.view09f52-cta-strip .view09f52-btn { min-height: 44px; }

/* ===== Highlight stats ===== */
.view09f52-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--view09f52-bg-mid);
  border: 1px solid var(--view09f52-border);
  border-radius: var(--view09f52-radius-md);
  padding: 12px 8px;
  margin-bottom: 16px;
}
.view09f52-stat { text-align: center; }
.view09f52-stat-num {
  font-family: "Rajdhani", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--view09f52-accent-hi);
  line-height: 1.1;
}
.view09f52-stat-lbl {
  font-size: 11px;
  color: var(--view09f52-text-mute);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* ===== Extended footer ===== */
.view09f52-ext {
  background: var(--view09f52-bg-mid);
  border: 1px solid var(--view09f52-border);
  border-radius: var(--view09f52-radius-md);
  padding: 14px;
  margin-top: 18px;
}
.view09f52-ext h3 {
  font-family: "Rajdhani", "Hind Siliguri", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--view09f52-accent-hi);
  margin-bottom: 8px;
  font-weight: 700;
}
.view09f52-ext p {
  font-size: 13px;
  color: var(--view09f52-text);
  margin-bottom: 8px;
}
.view09f52-ext-promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 14px;
}
.view09f52-ext-promos .view09f52-btn {
  min-height: 38px;
  font-size: 12px;
  padding: 0 6px;
}
.view09f52-ext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 6px;
}
.view09f52-ext-col h3 { margin-bottom: 6px; }
.view09f52-ext-col ul li { margin-bottom: 0; }
.view09f52-ext-col ul li a {
  display: block;
  font-size: 13px;
  color: var(--view09f52-text);
  padding: 6px 0;
  border-bottom: 1px dashed var(--view09f52-border);
}
.view09f52-ext-col ul li a:hover { color: var(--view09f52-text-bright); }
.view09f52-ext-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.view09f52-ext-brand-row img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--view09f52-border-strong);
}
.view09f52-ext-brand-row strong {
  font-family: "Rajdhani", system-ui, sans-serif;
  font-size: 18px;
  color: var(--view09f52-text-bright);
  letter-spacing: 0.04em;
}
.view09f52-ext-disclaimer {
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(0, 105, 92, 0.08);
  border-left: 3px solid var(--view09f52-accent);
  border-radius: 4px;
  font-size: 12px;
  color: var(--view09f52-text-mute);
  line-height: 1.55;
}

/* ===== Generic footer ===== */
.view09f52-footer {
  text-align: center;
  padding: 14px 12px calc(var(--view09f52-bottomnav-h) + 14px);
  font-size: 12px;
  color: var(--view09f52-text-mute);
  border-top: 1px solid var(--view09f52-border);
  background: var(--view09f52-bg-mid);
}
.view09f52-footer p { margin-bottom: 4px; }
.view09f52-footer .view09f52-footer-brand {
  font-family: "Rajdhani", system-ui, sans-serif;
  letter-spacing: 0.08em;
  color: var(--view09f52-text-bright);
  font-size: 14px;
  margin-bottom: 6px;
}

/* ===== Mobile bottom nav ===== */
.view09f52-bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--view09f52-max);
  background: linear-gradient(180deg, #1B2836 0%, #131D27 100%);
  border-top: 1px solid var(--view09f52-border-strong);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: var(--view09f52-bottomnav-h);
  z-index: 60;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.view09f52-bottomnav a,
.view09f52-bottomnav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--view09f52-text-mute);
  text-decoration: none;
  gap: 3px;
  padding: 6px 2px 4px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: color .15s ease;
  min-height: 44px;
  position: relative;
  line-height: 1.2;
}
.view09f52-bottomnav svg {
  width: 20px;
  height: 20px;
  display: block;
}
.view09f52-bottomnav a.active,
.view09f52-bottomnav button.active {
  color: var(--view09f52-accent-hi);
}
.view09f52-bottomnav a.active::after,
.view09f52-bottomnav button.active::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--view09f52-accent-hi);
  border-radius: 2px;
  margin-top: 2px;
}
.view09f52-bottomnav-promo {
  color: var(--view09f52-accent-hi);
  font-weight: 600;
}
.view09f52-bottomnav-label { white-space: nowrap; }

/* ===== Utilities ===== */
.view09f52-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Responsive: 430px breakpoint ===== */
@media (min-width: 430px) {
  .view09f52-grid { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .view09f52-section-title { font-size: 20px; }
  .view09f52-h1 { font-size: 24px; }
  .view09f52-main { padding-left: 16px; padding-right: 16px; }
  .view09f52-bar-list { grid-template-columns: 1fr 1fr; }
  .view09f52-stats { gap: 10px; }
}

@media (max-width: 359px) {
  .view09f52-grid { grid-template-columns: repeat(4, 1fr); }
  .view09f52-bar-list { grid-template-columns: 1fr; }
  .view09f52-ext-grid { grid-template-columns: 1fr; }
  .view09f52-brand-name { font-size: 19px; }
  .view09f52-btn { padding: 0 10px; font-size: 13px; }
}
