/* ============================================================
   MIDNIGHT MUSE — style.css  v2
   ============================================================ */

@font-face {
  font-family: 'Seaside Resort NF';
  src: url('../fonts/SeasideResortNF.ttf') format('truetype');
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body, div, span, article, aside, footer, header, nav, section {
  border: 0; font-size: 100%; vertical-align: baseline;
}
ol, ul { list-style: none; }
a { text-decoration: none !important; }

html { font-size: 16pt; }
@media screen and (max-width: 1680px) { html { font-size: 12pt; } }
@media screen and (max-width: 736px)  { html { font-size: 11pt; } }
@media screen and (max-width: 360px)  { html { font-size: 10pt; } }

body {
  background: #1b1f22;
  color: #fff;
  font-family: 'Source Sans Pro', 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-text-size-adjust: none;
}

body.is-preload *, body.is-preload *::before, body.is-preload *::after {
  animation: none !important;
  transition: none !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #fff; font-weight: 600; line-height: 1.5;
  margin: 0 0 1rem; text-transform: uppercase; letter-spacing: 0.2rem;
}
h1 { font-size: 2.25rem; line-height: 1.3; letter-spacing: 0.5rem; }
h2 { font-size: 1.5rem;  line-height: 1.4; letter-spacing: 0.5rem; }
@media screen and (max-width: 736px) { h1 { font-size: 1.75rem; } h2 { font-size: 1.25rem; } }

h2.major {
  border-bottom: solid 1px rgba(255,255,255,0.5);
  width: max-content; max-width: 100%;
  padding-bottom: 0.5rem; margin: 0 0 1.5rem;
}

p { margin: 0 0 1.25rem; }
strong, b { color: #fff; font-weight: 600; }
a { color: inherit; transition: color 0.2s, background-color 0.2s; }

.site-title {
  font-family: 'Seaside Resort NF', cursive;
  font-size: 3rem; color: #fff;
  letter-spacing: 0.08em; line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6); margin: 0;
}
@media screen and (max-width: 736px) { .site-title { font-size: 2.2rem; } }

/* ===== BACKGROUND ===== */
#bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  z-index: 1; transform: scale(1); -webkit-backface-visibility: hidden;
}
#bg::before, #bg::after {
  content: ''; display: block; position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}
#bg::before { transition: background-color 2.5s ease-in-out 0.75s; z-index: 2; }
#bg::after {
  transform: scale(1.125);
  transition: transform 0.325s ease-in-out, filter 0.325s ease-in-out;
  background-color: #000;
  background-image: url('../images/BG.jpg');
  background-position: 50% 30%;
  background-size: 80% auto;
  background-repeat: no-repeat;
  z-index: 1;
}
body.is-article-visible #bg::after { transform: scale(1.0825); filter: blur(0.2rem); }
body.is-preload #bg::before { background-color: #000; }

/* ===== MOBILE LAYOUT (<=736px) ===== */
@media screen and (max-width: 736px) {

  /* Prevent scroll on home screen so address bar has no trigger to appear */
  body:not(.is-article-visible) { overflow: hidden !important; }
  html { height: 100% !important; }

  /* Background: moved down 5% for Chrome */
  #bg::after {
    background-position: 50% 35% !important;
    background-size: 92% !important;
  }

  /* Header: full-screen fixed overlay */
  #header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    background-image: none !important;
    padding: 0 !important;
    text-align: center !important;
  }

  /* All children: absolute, centred horizontally */
  #header > *::before { display: none !important; }
  #header > * {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
  }

  /* Title: anchored to top */
  .title-block {
    top: 2.5rem !important;
    padding: 0.75rem 2rem !important;
    border-top: 1px solid rgba(255,255,255,0.35) !important;
    border-bottom: 1px solid rgba(255,255,255,0.35) !important;
    white-space: nowrap !important;
  }
  .site-title {
    font-size: 2.6rem !important;
    text-shadow: 0 2px 24px rgba(0,0,0,0.9) !important;
  }

  /*
   * Nav, social, footer: ALL use `top` values set by JS in pixels.
   * Anchoring from TOP means they are immune to visual viewport changes
   * (address bar appearing shrinks the bottom, not the top).
   * JS measures window.innerHeight once at load and never updates it.
   */
  #header nav {
    top: var(--nav-top) !important;
    bottom: auto !important;
  }
  #header nav ul {
    flex-direction: column !important;
    min-width: 12rem !important;
    border: solid 1px rgba(255,255,255,0.5) !important;
    border-radius: 4px !important;
  }
  #header nav ul li {
    border-left: 0 !important;
    border-top: solid 1px rgba(255,255,255,0.4) !important;
  }
  #header nav ul li:first-child { border-top: 0 !important; }
  #header nav ul li a {
    height: 3rem !important;
    line-height: 3rem !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 2rem !important;
  }

  .social-icons {
    top: var(--social-top) !important;
    bottom: auto !important;
  }

  /* Footer: same treatment — top-anchored pixel value, never moves */
  #footer {
    position: fixed !important;
    top: var(--footer-top) !important;
    bottom: auto !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0.4rem 0 !important;
  }

  .mobile-spacer { display: none !important; }
}

/* ===== WRAPPER ===== */
#wrapper {
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  position: relative; min-height: 100vh;
  width: 100%; padding: 4rem 2rem; z-index: 3;
}
#wrapper::before { content: ''; display: block; }
@media screen and (max-width: 1680px) { #wrapper { padding: 3rem 2rem; } }
@media screen and (max-width: 736px)  { #wrapper { padding: 2rem 1rem; } }

/* ===== HEADER ===== */
#header {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  transition: transform 0.325s ease-in-out, filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
  background-image: radial-gradient(rgba(0,0,0,0.3) 25%, rgba(0,0,0,0) 65%);
  max-width: 100%; text-align: center;
}
#header > * { transition: opacity 0.325s ease-in-out; position: relative; margin-top: 2.5rem; }
#header > *::before {
  content: ''; display: block; position: absolute;
  top: calc(-2.5rem - 1px); left: calc(50% - 1px);
  width: 1px; height: calc(2.5rem + 1px);
  background: rgba(255,255,255,0.4);
}
#header > :first-child { margin-top: 0; }
#header > :first-child::before { display: none; }

.title-block {
  padding: 1.25rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

#header nav ul {
  display: flex; margin: 0; padding: 0;
  border: solid 1px rgba(255,255,255,0.5); border-radius: 4px;
}
#header nav ul li { border-left: solid 1px rgba(255,255,255,0.5); }
#header nav ul li:first-child { border-left: 0; }
#header nav ul li a {
  display: block; min-width: 5.5rem; height: 2.75rem; line-height: 2.75rem;
  padding: 0 1rem; text-transform: uppercase; letter-spacing: 0.2rem;
  font-size: 0.72rem; position: relative; overflow: hidden; transition: background-color 0.2s;
}
#header nav ul li a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: rgba(255,255,255,0.9);
  transition: width 0.3s ease, left 0.3s ease;
}
#header nav ul li a:hover::after { width: 100%; left: 0; }
#header nav ul li a:hover { background-color: rgba(255,255,255,0.08); }
#header nav ul li a:active { background-color: rgba(255,255,255,0.18); }

/* Mobile spacer — hidden on desktop */
.mobile-spacer { display: none; }

body.is-article-visible #header { transform: scale(0.95); filter: blur(0.1rem); opacity: 0; pointer-events: none; }
body.is-preload #header { filter: blur(0.125rem); }
body.is-preload #header > * { opacity: 0; }

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex; gap: 0.75rem;
  align-items: center; justify-content: center; padding: 0; margin: 0;
}
.social-icons li a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.8rem; height: 2.8rem;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.4);
  color: #fff; font-size: 1.2rem;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.social-icons li a:hover { transform: translateY(-5px) scale(1.12); border-color: transparent; }
.social-icons li a.icon-instagram:hover {
  background: linear-gradient(135deg,#f58529,#dd2a7b 50%,#8134af);
  box-shadow: 0 10px 28px rgba(221,42,123,0.5);
}
.social-icons li a.icon-tiktok:hover {
  background: #010101; color: #69C9D0;
  box-shadow: 0 10px 28px rgba(105,201,208,0.45), 3px 3px 0 rgba(238,29,82,0.6);
}
.social-icons li a.icon-facebook:hover { background: #1877F2; box-shadow: 0 10px 28px rgba(24,119,242,0.5); }
.social-icons li a.icon-spotify:hover  { background: #1DB954; box-shadow: 0 10px 28px rgba(29,185,84,0.5); }
.social-icons li a:active { transform: translateY(-2px) scale(1.05); transition-duration: 0.1s; }

/* ===== MAIN / ARTICLES ===== */
#main {
  flex-grow: 1; flex-shrink: 1;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; position: relative; max-width: 100%; z-index: 3;
}

#main article {
  transform: translateY(0.25rem);
  transition: opacity 0.325s ease-in-out, transform 0.325s ease-in-out;
  padding: 0;                          /* padding lives on .article-body now */
  position: relative;
  width: 44rem; max-width: calc(100vw - 2rem);
  background-color: rgba(16,19,22,0.91);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  overflow: hidden;                    /* clips content but does NOT scroll */
  max-height: 88vh;
}
#main article.active { transform: translateY(0); opacity: 1; }

/* Scrollable inner wrapper — scroll happens here, NOT on the article */
.article-body {
  overflow-y: auto;
  max-height: 88vh;
  padding: 4rem 2.5rem 1.5rem;
}

#main article#music,
#main article#videos,
#main article#art { width: 62rem; }

/* ===== ART GALLERY (inside panel) ===== */

/* Tight padding — let the grid breathe edge-to-edge */
#art .article-body { padding: 3.5rem 1.25rem 1.5rem; }
@media screen and (max-width: 736px) { #art .article-body { padding: 3rem 0.75rem 1rem; } }

/* Masonry columns */
.gallery-masonry {
  columns: 3;
  column-gap: 8px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 900px)  { .gallery-masonry { columns: 2; } }
@media screen and (max-width: 480px)  { .gallery-masonry { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  background: rgba(255,255,255,0.04);

  /* scroll-reveal start */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease,
              box-shadow 0.35s ease;
}
.gallery-item.g-visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.4s ease;
  filter: brightness(0.88) saturate(0.8);
}
.gallery-item:hover {
  box-shadow: 0 0 0 1px rgba(200,169,110,0.7),
              0 12px 40px rgba(0,0,0,0.6);
  z-index: 2;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}
/* expand icon on hover */
.gallery-item::after {
  content: '\f31e'; /* fa-expand icon unicode */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 10px; right: 12px;
  font-size: 0.75rem;
  color: rgba(200,169,110,0.9);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

/* Horizontal scroll strip */
.gallery-hstrip-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 10px;
}
.gallery-hstrip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0.5rem;
  cursor: grab;
}
.gallery-hstrip:active { cursor: grabbing; }
.gallery-hstrip::-webkit-scrollbar { display: none; }

.gallery-hitem {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.35s ease;
}
.gallery-hitem.g-visible {
  opacity: 1;
  transform: translateX(0);
}
.gallery-hitem img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.35s ease;
  filter: brightness(0.88) saturate(0.8);
}
.gallery-hitem:hover {
  box-shadow: 0 0 0 1px rgba(200,169,110,0.7), 0 8px 28px rgba(0,0,0,0.5);
}
.gallery-hitem:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

.gallery-drag-hint {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  padding: 6px 0 4px;
}

/* ── ART LIGHTBOX (fixed, breaks out of panel) ── */
#art-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(6,7,8,0.97);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#art-lightbox.lb-open {
  opacity: 1;
  pointer-events: all;
}
#art-lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
#art-lb-img.lb-fade {
  opacity: 0;
  transform: scale(0.96);
}
.art-lb-btn {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(13,15,16,0.75);
  color: #fff;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 9501;
}
.art-lb-btn:hover {
  background: rgba(200,169,110,0.15);
  border-color: rgba(200,169,110,0.8);
  color: #c8a96e;
}
#art-lb-prev { left: 16px; }
#art-lb-next { right: 16px; }
#art-lb-close {
  position: fixed;
  top: 16px; right: 20px;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(13,15,16,0.8);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  z-index: 9501;
}
#art-lb-close:hover { border-color: rgba(200,169,110,0.8); color: #c8a96e; }
#art-lb-counter {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  z-index: 9501;
  pointer-events: none;
}

@media screen and (max-width: 736px) {
  #main article { max-height: 90vh; }
  .article-body  { padding: 3.5rem 1.5rem 1rem; max-height: 90vh; }
}
@media screen and (max-width: 480px) {
  #main article { max-height: 92vh; }
  .article-body  { padding: 3rem 1.25rem 0.75rem; max-height: 92vh; }
}

/* Close button — anchored to the article panel, never scrolls away */
#main article .close {
  display: block;
  position: absolute;   /* relative to article, which does NOT scroll */
  top: 0; right: 0;
  width: 4rem; height: 4rem;
  cursor: pointer;
  text-indent: 4rem; overflow: hidden; white-space: nowrap;
  z-index: 10;          /* always on top of scrolled content */
}
#main article .close::before {
  transition: background-color 0.2s; content: ''; display: block;
  position: absolute; top: 0.75rem; left: 0.75rem;
  width: 2.5rem; height: 2.5rem; border-radius: 100%;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cline x1='2' y1='2' x2='18' y2='18' stroke='%23ffffff' stroke-width='1.5'/%3E%3Cline x1='18' y1='2' x2='2' y2='18' stroke='%23ffffff' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 20px 20px; background-repeat: no-repeat;
}
#main article .close:hover::before  { background-color: rgba(255,255,255,0.1); }
#main article .close:active::before { background-color: rgba(255,255,255,0.2); }

/* ===== ART ===== */
.art-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media screen and (max-width: 480px) { .art-grid { grid-template-columns: 1fr; } }
.image { border-radius: 6px; display: inline-block; position: relative; }
.image img { border-radius: 6px; display: block; width: 100%; }
.image.main { display: block; width: 100%; margin: 0; }

/* ===== MUSIC (SPOTIFY) ===== */
.spotify-section { margin-bottom: 2rem; }
.spotify-section h3 {
  font-size: 0.65rem; letter-spacing: 0.25rem;
  color: rgba(255,255,255,0.45); margin-bottom: 0.75rem; text-transform: uppercase;
}
.spotify-embed {
  border-radius: 12px; overflow: hidden; width: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.spotify-embed iframe { display: block; width: 100%; border: 0; border-radius: 12px; }

.spotify-follow-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem; padding: 0.6rem 1.5rem;
  background: #1DB954; color: #000 !important;
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1rem;
  text-transform: uppercase; border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.spotify-follow-btn:hover {
  background: #1ed760; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29,185,84,0.5);
}

/* ===== VIDEOS (TIKTOK) ===== */
.videos-intro {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem; line-height: 1.6;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; margin-bottom: 1.5rem;
}
@media screen and (max-width: 480px) { .tiktok-grid { grid-template-columns: 1fr; } }

.tiktok-embed-wrap {
  border-radius: 10px; overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  aspect-ratio: 9/16; position: relative;
}
.tiktok-embed-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

.video-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.6rem;
  width: 100%; height: 100%; min-height: 280px;
  color: rgba(255,255,255,0.28); font-size: 0.68rem;
  letter-spacing: 0.12rem; text-transform: uppercase;
  text-align: center; padding: 1.5rem;
  border: 1px dashed rgba(255,255,255,0.12); border-radius: 10px;
}
.video-placeholder i { font-size: 2rem; opacity: 0.35; }
.video-placeholder code {
  font-size: 0.62rem; background: rgba(255,255,255,0.07);
  padding: 0.3rem 0.6rem; border-radius: 4px;
  letter-spacing: 0.04rem; text-transform: none;
  color: rgba(255,255,255,0.45); margin-top: 0.15rem; display: block;
}

.tiktok-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.5rem; background: #010101;
  border: 1px solid rgba(105,201,208,0.35);
  color: #fff !important; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12rem; text-transform: uppercase; border-radius: 50px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
}
.tiktok-cta:hover {
  border-color: #69C9D0; color: #69C9D0 !important;
  box-shadow: 0 6px 20px rgba(105,201,208,0.3); transform: translateY(-2px);
}

/* ===== FOOTER ===== */
#footer {
  transition: transform 0.325s ease-in-out, filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
  width: 100%; max-width: 100%; margin-top: 2rem; text-align: center;
}
#footer .copyright {
  letter-spacing: 0.15rem; font-size: 0.6rem; opacity: 0.45;
  margin: 0; text-transform: uppercase; line-height: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
body.is-article-visible #footer { transform: scale(0.95); filter: blur(0.1rem); opacity: 0; pointer-events: none; }
body.is-preload #footer { opacity: 0; }

/* Mobile: footer is position:fixed, top-anchored — suppress transform/filter that would fight it */
@media screen and (max-width: 736px) {
  #footer {
    transition: opacity 0.325s ease-in-out !important;
    transform: none !important;
    filter: none !important;
  }
  body.is-article-visible #footer { opacity: 0 !important; pointer-events: none !important; transform: none !important; }
}

/* ===== SCROLLBAR ===== */
.article-body::-webkit-scrollbar { width: 4px; }
.article-body::-webkit-scrollbar-track { background: transparent; }
.article-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

/* ===== NOSCRIPT ===== */
noscript #bg::before { background-color: transparent !important; }
noscript #header { filter: none !important; }
noscript #header > * { opacity: 1 !important; }
noscript #main article { opacity: 1 !important; display: block !important; }
