*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --nav-h:      48px;
  --bg:         #111318;
  --nav-bg:     #0c0d10;
  --row-odd:    #15171c;
  --row-even:   #111318;
  --row-hover:  #1c1f26;
  --border:     #232529;
  --text:       #dce0ea;
  --text-dim:   #8b909e;
  --accent:     #00b4ff;
  --hot:        #ff3f5c;
  --sidebar-bg: #111318;
  --bg3:        #1c1f26;
  --bg4:        #22252e;
  --muted:      #6b7280;
  --red:        #e53935;
  --gold:       #f59e0b;
}

html, body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  overflow-x: hidden;
}

/* ---- HEADER ---- */
#siteHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  z-index: 300;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 0;
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 14px;
}
.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.accent { color: var(--accent); }

/* Discord */
.header-discord {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  height: 32px;
  padding: 0 12px;
  background: #5865F2;
  color: #fff;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.14);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.header-discord:hover { background: #4752c4; }
.header-discord svg { flex-shrink: 0; width: 14px; height: 14px; }

/* ---- DESKTOP SPORT TABS ---- */
.sport-tabs {
  display: flex;
  align-items: center;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
  -ms-overflow-style: none;
  height: 100%;
  gap: 0;
}
.sport-tabs::-webkit-scrollbar { display: none; }

.stab {
  display: inline-flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 13px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #9299a8;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.12s, border-color 0.12s;
  flex-shrink: 0;
}
.stab:hover  { color: #fff; }
.stab.active { color: #fff; border-bottom-color: var(--accent); font-weight: 700; }

/* ---- CUSTOM DROPDOWN (mobile only, hidden on desktop) ---- */
.custom-dropdown {
  display: none;
  position: relative;
  flex: 1;
  min-width: 0;
  z-index: 400;
}

.custom-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 34px;
  padding: 0 12px;
  background: #1a1c22;
  border: 1px solid #2e3038;
  border-radius: 5px;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
}
.custom-dropdown-btn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-dropdown-btn svg { flex-shrink: 0; color: #777; transition: transform 0.15s; }
.custom-dropdown.open .custom-dropdown-btn svg { transform: rotate(180deg); }
.custom-dropdown.open .custom-dropdown-btn { border-color: var(--accent); }

.custom-dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #1a1c22;
  border: 1px solid #2e3038;
  border-radius: 5px;
  list-style: none;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}
.custom-dropdown-list::-webkit-scrollbar { width: 4px; }
.custom-dropdown-list::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

.custom-dropdown.open .custom-dropdown-list { display: block; }

.custom-dropdown-item {
  padding: 11px 14px;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
  border-bottom: 1px solid #1e2028;
  transition: background 0.1s, color 0.1s;
}
.custom-dropdown-item:last-child { border-bottom: none; }
.custom-dropdown-item:hover { background: #22252e; color: #fff; }
.custom-dropdown-item.active { color: var(--accent); font-weight: 600; background: rgba(0,180,255,0.07); }

/* ---- PAGE BODY ---- */
.page-wrap {
  display: grid;
  grid-template-columns: 1fr 290px;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: var(--nav-h);
  min-height: 100vh;
}

.matches-wrap {
  border-right: 1px solid var(--border);
  min-width: 0;
}

/* Toolbar */
.toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--nav-bg);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  max-width: 380px;
  background: #1a1c22;
  border: 1px solid #2e3038;
  border-radius: 4px;
  padding: 0 10px;
  height: 30px;
}
.search-box svg { color: #666; flex-shrink: 0; }
.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
}
.search-box input::placeholder { color: #555; }

.hot-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid #2e3038;
  border-radius: 4px;
  color: #9299a8;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.12s;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  height: 30px;
  white-space: nowrap;
}
.hot-btn:hover  { color: #fff; border-color: #444; }
.hot-btn.active { color: var(--hot); border-color: var(--hot); background: rgba(255,63,92,0.10); }

/* ---- SCHEDULE ---- */
#schedule { display: flex; flex-direction: column; }
.date-group { display: flex; flex-direction: column; }

.date-header {
  background: #0e1015;
  padding: 5px 14px;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.date-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #555c6a;
}

.match-list { display: flex; flex-direction: column; }

/* ---- MATCH ROW ---- */
.match {
  display: grid;
  grid-template-columns: 42px 56px 1fr auto;
  align-items: center;
  padding: 10px 14px;
  min-height: 52px;        /* min-height not fixed height so long names expand */
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.08s;
  position: relative;
  gap: 0;
}
.match:nth-child(odd)  { background: var(--row-odd); }
.match:nth-child(even) { background: var(--row-even); }
.match:hover           { background: var(--row-hover) !important; }

.match::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.1s;
}
.match:hover::before   { background: var(--accent); }
.match.popular::before { background: var(--hot); }

/* Circle icon */
.m-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1e2028;
  border: 1px solid #2e3038;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1;
}

/* Time */
.m-time {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
  padding-left: 12px;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

/* Teams — wraps on long names */
.m-name {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-left: 14px;
  flex-wrap: wrap;          /* allows wrap to new line */
}

.m-home, .m-away {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  word-break: break-word;   /* break very long single words */
  white-space: normal;      /* allow wrapping */
  line-height: 1.3;
}
.match:hover .m-home,
.match:hover .m-away { color: #fff; }

.m-vs {
  font-size: 11px;
  font-weight: 500;
  color: #4a5060;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Right */
.m-right {
  flex-shrink: 0;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.m-league {
  font-size: 11px;
  color: #4a5060;
  white-space: nowrap;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}
.m-hot {
  font-size: 10px;
  font-weight: 700;
  color: var(--hot);
  background: rgba(255,63,92,0.12);
  border: 1px solid rgba(255,63,92,0.25);
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.m-viewers {
  font-size: 10px;
  font-weight: 600;
  color: #8ecbff;
  background: rgba(0, 180, 255, 0.12);
  border: 1px solid rgba(0, 180, 255, 0.28);
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
}
.m-viewers-inline {
  display: none;
  font-size: 11px;
  font-weight: 500;
  color: #8ecbff;
}

/* ---- STATES ---- */
.state-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 20px;
  color: #555;
  font-size: 14px;
}
.empty-row {
  padding: 60px 20px;
  text-align: center;
  color: #555;
  font-size: 14px;
}
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #222;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- RIGHT SIDEBAR ---- */
.info-sidebar {
  padding: 22px 20px;
  background: var(--sidebar-bg);
  border-left: 1px solid var(--border);
}
.info-sidebar h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.info-sidebar h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 18px 0 6px;
}
.info-sidebar p {
  font-size: 13px;
  color: #8b909e;
  line-height: 1.65;
}
.discord-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 9px 18px;
  background: #5865F2;
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.discord-link:hover { background: #4752c4; }

/* ---- FOOTER ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 14px 12px 18px;
  text-align: center;
  background: var(--bg);
}

.site-footer p {
  font-size: 11px;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .page-wrap { grid-template-columns: 1fr; }
  .info-sidebar { display: none; }
  .matches-wrap { border-right: none; }
}

@media (max-width: 860px) {
  /* Switch to dropdown on laptops/tablets to avoid overflow */
  .sport-tabs      { display: none !important; }
  .custom-dropdown { display: block; }

  /* Allow dropdown to overflow the header on tablets/iPads */
  #siteHeader      { overflow: visible; }
}

/* iPad-specific: ensure dropdown works across all iPad models and orientations */
@media (min-width: 641px) and (max-width: 1080px) {
  #siteHeader { overflow: visible; }

  .custom-dropdown-list {
    min-width: 220px;
    max-height: 60vh;
    -webkit-overflow-scrolling: touch;
  }

  .custom-dropdown-item {
    padding: 13px 16px;
    font-size: 15px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 640px) {
  /* Header: logo left, multistream + discord right, nothing else */
  #siteHeader {
    padding: 0 12px;
    gap: 0;
    overflow: visible;
  }

  .brand { flex-shrink: 0; margin-right: auto; }
  .brand-name { font-size: 16px; }

  /* Hide sport tabs and header dropdown — toolbar handles sports */
  .sport-tabs      { display: none !important; }
  .custom-dropdown { display: none !important; }

  /* Multistream: icon only, right side */
  .btn-multistream { padding: 6px 10px; margin-right: 6px; }
  .btn-multistream span { display: none; }

  /* Discord: icon only, right side */
  .header-discord { padding: 6px 10px; }
  .header-discord span { display: none; }

  /* Toolbar: sports | search | popular */
  .toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border);
  }
  .search-box { flex: 1; min-width: 0; }
  .hot-btn { flex-shrink: 0; padding: 6px 10px; font-size: 12px; }

  /* Match row on mobile */
  .match {
    grid-template-columns: 36px 50px 1fr;
    padding: 10px 10px;
    min-height: 52px;
  }
  .m-right { display: none; }
  .m-icon  { width: 26px; height: 26px; font-size: 13px; }
  .m-time  { font-size: 12.5px; padding-left: 8px; }
  .m-name  { padding-left: 10px; }
  .m-home, .m-away { font-size: 13px; }
  .m-viewers-inline { display: inline; }
  .site-footer { padding: 14px 10px 18px; }
  .site-footer p {
    max-width: 320px;
    font-size: 11px;
    line-height: 1.45;
  }
}




.toolbar-sports-mobile {
  display: none;
  position: relative;
  flex-shrink: 0;
}
.tb-sport-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Roboto', sans-serif;
}
.tb-dropdown-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 160px;
  background: #1a1d26;
  border: 1px solid var(--border);
  border-radius: 8px;
  z-index: 200;
  max-height: 340px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.toolbar-sports-mobile.open .tb-dropdown-list { display: block; }

@media (max-width: 640px) {
  .toolbar-sports-mobile { display: block; }
}

/* =========================================================
   MULTISTREAM
   ========================================================= */
.btn-multistream {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 8px;
}
.btn-multistream:hover { background: var(--bg4); }

.ms-page {
  position: fixed; inset: 0; z-index: 500;
  background: var(--bg);
  display: flex; flex-direction: column; overflow: hidden;
}
.ms-page-header {
  display: flex; align-items: center; gap: 12px;
  padding: 0 18px; height: 50px;
  background: var(--nav-bg); border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.ms-page-title { font-weight: 700; font-size: 15px; color: var(--text); }
.ms-page-sub { font-size: 12px; color: var(--muted); margin-right: auto; }
.ms-close-btn {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); padding: 6px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: background 0.15s;
}
.ms-close-btn:hover { background: var(--bg4); }

.ms-grid {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px; padding: 10px; overflow: hidden;
}
.ms-slot {
  position: relative; background: #0d0d0d;
  border: 2px dashed rgba(255,255,255,0.12); border-radius: 10px;
  overflow: hidden; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; transition: border-color 0.2s, background 0.2s; min-height: 0;
}
.ms-slot:hover { border-color: rgba(255,255,255,0.25); background: #111; }
.ms-slot.filled { border: none; cursor: default; background: #000; }
.ms-slot-plus { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); }
.ms-slot-plus svg { width: 32px; height: 32px; }
.ms-slot-empty-title { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.55); text-align: center; }
.ms-slot-empty-sub { font-size: 11px; color: rgba(255,255,255,0.28); text-align: center; max-width: 200px; line-height: 1.4; }
.ms-slot iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.ms-slot-label {
  position: absolute; top: 0; left: 0; right: 0; padding: 10px 14px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
  z-index: 5; pointer-events: none; opacity: 0; transition: opacity 0.2s;
}
.ms-slot.filled:hover .ms-slot-label { opacity: 1; }
.ms-slot-label-title { font-size: 13px; font-weight: 700; color: #fff; }
.ms-slot-label-sub { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.ms-slot-remove {
  position: absolute; top: 8px; right: 8px; z-index: 10;
  width: 28px; height: 28px; background: var(--red); border: none;
  border-radius: 6px; color: #fff; display: flex; align-items: center;
  justify-content: center; cursor: pointer;
  opacity: 1; transition: transform 0.15s;
}
.ms-slot-remove:hover { transform: scale(1.1); }

.ms-drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 600; backdrop-filter: blur(4px);
}
.ms-drawer-overlay.open { display: block; }
.ms-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 560px; max-width: 100vw;
  background: #161616; border-left: 1px solid var(--border);
  z-index: 601; display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0, 0.15, 1);
}
.ms-drawer.open { transform: translateX(0); }
.ms-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px 12px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.ms-drawer-title { font-size: 15px; font-weight: 700; color: var(--text); }
.ms-drawer-close {
  width: 30px; height: 30px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--muted); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.15s;
}
.ms-drawer-close:hover { color: var(--text); }
.ms-drawer-search {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.ms-drawer-search svg { color: var(--muted); flex-shrink: 0; }
.ms-drawer-search input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 14px; font-family: 'Roboto', sans-serif;
}
.ms-drawer-search input::placeholder { color: var(--muted); }
.ms-drawer-results { flex: 1; overflow-y: auto; padding: 6px 0 20px; }
.ms-drawer-results::-webkit-scrollbar { width: 4px; }
.ms-drawer-results::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }
.ms-result-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); padding: 10px 18px 6px; }
.ms-match-accordion { border-bottom: 1px solid var(--border); }
.ms-match-accordion:last-child { border-bottom: none; }
.ms-match-toggle { display: flex; align-items: center; justify-content: space-between; padding: 11px 18px; cursor: pointer; transition: background 0.12s; gap: 12px; }
.ms-match-toggle:hover { background: rgba(255,255,255,0.03); }
.ms-match-toggle-left { flex: 1; min-width: 0; }
.ms-match-toggle-name { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ms-match-toggle-date { font-size: 11px; color: var(--muted); margin-top: 2px; }
.ms-match-chevron { color: var(--muted); flex-shrink: 0; transition: transform 0.2s; }
.ms-match-accordion.open .ms-match-chevron { transform: rotate(180deg); }
.ms-match-body { display: none; padding: 0 14px 10px; gap: 8px; flex-direction: column; }
.ms-match-accordion.open .ms-match-body { display: flex; }
.ms-source-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.ms-source-card-header { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border-bottom: 1px solid var(--border); }
.ms-source-card-name { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--text); }
.ms-source-card-name svg { width: 12px; height: 12px; color: var(--gold); }
.ms-source-card-desc { font-size: 11px; color: var(--muted); }
.ms-source-count { font-size: 10px; font-weight: 700; color: var(--muted); background: var(--bg4); padding: 2px 8px; border-radius: 20px; }
.ms-stream-row { display: flex; align-items: center; gap: 10px; padding: 8px 12px; cursor: pointer; transition: background 0.12s; border-top: 1px solid rgba(255,255,255,0.04); }
.ms-stream-row:first-child { border-top: none; }
.ms-stream-row:hover { background: rgba(255,255,255,0.05); }
.ms-stream-row-lang { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--muted); margin-left: auto; flex-shrink: 0; }
.ms-stream-row-lang svg { width: 12px; height: 12px; opacity: 0.6; }
.ms-drawer-empty { padding: 40px 18px; text-align: center; color: var(--muted); font-size: 13px; }
.ms-drawer-loading { display: flex; align-items: center; gap: 10px; padding: 18px; color: var(--muted); font-size: 13px; }

@media (max-width: 640px) {
  .btn-multistream span { display: none; }
  .btn-multistream { padding: 6px 9px; }
  .ms-grid { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .ms-drawer { width: 100%; border-left: none; top: auto; height: 85vh; transform: translateY(100%); }
  .ms-drawer.open { transform: translateY(0); }
}