/* ============================================================
   Universal Digital Invitation — Style Engine
   All colors via CSS custom properties set by JS from JSON.
   ============================================================ */

/* --- Theme variables (defaults; overridden by JS) --- */
:root {
  --primary: #7A1838;
  --secondary: #C8A24A;
  --background: #FBF7EF;
  --surface: #FFFDF8;
  --text: #35251F;
  --muted: #75655D;
  --accent: #9B6A2E;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(53, 37, 31, 0.08);
  --shadow-md: 0 8px 30px rgba(53, 37, 31, 0.12);
  --shadow-lg: 0 20px 60px rgba(53, 37, 31, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1100px;
  --nav-height: 64px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; border-radius: 4px; }

/* --- Loading screen --- */
.loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; background: var(--background);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-ring {
  width: 56px; height: 56px; border-radius: 50%;
  border: 3px solid var(--secondary); border-top-color: transparent;
  animation: spin 1s linear infinite;
}
.loading-text { font-family: var(--font-heading); font-size: 1.05rem; color: var(--muted); letter-spacing: 0.04em; }
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Error screen --- */
.error-screen {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: var(--background);
}
.error-content { text-align: center; max-width: 400px; }
.error-icon { color: var(--primary); margin-bottom: 16px; }
.error-title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); margin-bottom: 8px; }
.error-message { color: var(--muted); font-size: 1rem; }

/* --- App --- */
.app { opacity: 0; transition: opacity 0.5s ease; }
.app.ready { opacity: 1; }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 0 16px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(0);
}
.nav.scrolled {
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.nav-link {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 8px 14px; border-radius: var(--radius-sm);
  color: var(--text); transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
}
.nav.scrolled .nav-link { color: var(--text); }
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(122, 24, 56, 0.06); }
.nav-link:focus-visible { outline-offset: 2px; }

.nav-toggle {
  position: fixed; top: 14px; right: 16px; z-index: 101;
  width: 44px; height: 44px; display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: var(--radius-sm);
}
.nav-toggle-bar { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Section base --- */
.section { padding: 80px 20px; position: relative; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-title {
  font-family: var(--font-heading); font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--primary); text-align: center; margin-bottom: 12px;
  font-weight: 600; letter-spacing: 0.01em;
}
.section-subtitle { text-align: center; color: var(--muted); font-size: 1rem; margin-bottom: 48px; }
.section-eyebrow {
  text-align: center; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 10px; font-weight: 500;
}
.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin: 16px auto 40px;
}
.section-divider-line { width: 50px; height: 1px; background: var(--secondary); opacity: 0.5; }
.section-divider-icon { color: var(--secondary); width: 20px; height: 20px; }

/* --- Reveal animation --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .loading-ring { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 20px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(53, 37, 31, 0.35) 0%, rgba(53, 37, 31, 0.55) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-eyebrow {
  font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255, 253, 248, 0.9); margin-bottom: 18px; font-weight: 500;
}
.hero-title {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 9vw, 4.5rem);
  color: #fff; line-height: 1.15; margin-bottom: 12px; font-weight: 700;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
  font-family: var(--font-heading); font-size: clamp(1.1rem, 4vw, 1.6rem);
  color: var(--secondary); margin-bottom: 16px; font-style: italic;
}
.hero-description { color: rgba(255, 253, 248, 0.88); font-size: 1.05rem; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; border-radius: 50px;
  background: var(--primary); color: #fff; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 24px rgba(122, 24, 56, 0.4);
}
.hero-button:hover { transform: translateY(-2px); background: var(--accent); box-shadow: 0 12px 32px rgba(122, 24, 56, 0.5); }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(255, 253, 248, 0.7); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-arrow {
  width: 1px; height: 40px; background: rgba(255, 253, 248, 0.5); position: relative; overflow: hidden;
}
.hero-scroll-arrow::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 50%;
  background: var(--secondary); animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line { 0% { top: -50%; } 100% { top: 100%; } }

/* --- Invitation section --- */
.invitation { text-align: center; background: var(--surface); }
.invitation-eyebrow { font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--secondary); margin-bottom: 16px; }
.invitation-title { font-family: var(--font-heading); font-size: clamp(1.4rem, 4.5vw, 2rem); color: var(--primary); margin-bottom: 8px; font-weight: 600; }
.invitation-subtitle { font-family: var(--font-heading); font-size: clamp(1.8rem, 7vw, 3rem); color: var(--text); margin-bottom: 24px; font-weight: 700; }
.invitation-message { max-width: 580px; margin: 0 auto 28px; font-size: 1.1rem; color: var(--muted); line-height: 1.8; }
.invitation-signature { font-family: var(--font-heading); font-style: italic; color: var(--primary); font-size: 1.15rem; }

/* --- Hosts --- */
.hosts { background: var(--background); }
.hosts-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.host-card { text-align: center; max-width: 280px; flex: 1 1 240px; }
.host-image-wrap {
  width: 160px; height: 160px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--secondary); box-shadow: var(--shadow-md); background: var(--surface);
}
.host-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.host-image-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 3rem; color: var(--secondary); background: var(--surface);
}
.host-name { font-family: var(--font-heading); font-size: 1.6rem; color: var(--primary); margin-bottom: 4px; font-weight: 600; }
.host-role { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary); }
.hosts-display-name { text-align: center; font-family: var(--font-heading); font-size: clamp(1.8rem, 6vw, 2.8rem); color: var(--primary); margin-top: 40px; font-weight: 700; }

/* --- Countdown --- */
.countdown { text-align: center; background: var(--primary); color: #fff; overflow: hidden; }
.countdown-message { font-family: var(--font-heading); font-size: 1.2rem; color: rgba(255, 253, 248, 0.9); margin-bottom: 32px; font-style: italic; }
.countdown-grid { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.countdown-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: 80px; padding: 20px 12px; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(4px);
}
.countdown-number { font-family: var(--font-heading); font-size: clamp(1.8rem, 6vw, 3rem); font-weight: 700; color: #fff; line-height: 1; }
.countdown-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255, 253, 248, 0.7); }
.countdown-completed { font-family: var(--font-heading); font-size: clamp(1.5rem, 5vw, 2.2rem); color: #fff; padding: 20px; }

/* --- Event details --- */
event-section { background: var(--surface); }
.event-card {
  max-width: 600px; margin: 0 auto; text-align: center; padding: 48px 32px;
  border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-md);
  border: 1px solid rgba(200, 162, 74, 0.2);
}
.event-type { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--secondary); margin-bottom: 20px; }
.event-date { font-family: var(--font-heading); font-size: clamp(1.4rem, 5vw, 2rem); color: var(--primary); margin-bottom: 6px; font-weight: 700; }
.event-day { font-size: 1rem; color: var(--muted); margin-bottom: 20px; }
.event-time { font-size: 1.15rem; color: var(--text); margin-bottom: 28px; font-weight: 500; }
.event-venue-name { font-family: var(--font-heading); font-size: 1.3rem; color: var(--primary); margin-bottom: 8px; }
.event-venue-address { color: var(--muted); line-height: 1.7; }
.event-detail-icon { color: var(--secondary); width: 24px; height: 24px; margin: 0 auto 12px; }

/* --- Story / Timeline --- */
.story { background: var(--background); }
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--secondary), transparent); opacity: 0.4;
}
.timeline-item { display: flex; gap: 24px; margin-bottom: 48px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center; color: #fff;
  border: 3px solid var(--background); box-shadow: var(--shadow-sm); z-index: 1;
}
.timeline-marker svg { width: 18px; height: 18px; }
.timeline-content { flex: 1; }
.timeline-image { border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.timeline-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.timeline-title { font-family: var(--font-heading); font-size: 1.3rem; color: var(--primary); margin-bottom: 4px; font-weight: 600; }
.timeline-date { font-size: 0.85rem; color: var(--secondary); margin-bottom: 10px; letter-spacing: 0.05em; }
.timeline-text { color: var(--muted); line-height: 1.7; }

/* --- Gallery --- */
.gallery { background: var(--surface); }
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 12px 12px;
  color: #fff; font-size: 0.9rem; font-family: var(--font-heading);
  background: linear-gradient(transparent, rgba(53, 37, 31, 0.7)); opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* --- Location --- */
.location { text-align: center; background: var(--background); }
.location-card {
  max-width: 560px; margin: 0 auto; padding: 40px 32px; border-radius: var(--radius-lg);
  background: var(--surface); box-shadow: var(--shadow-md); border: 1px solid rgba(200, 162, 74, 0.2);
}
.location-name { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); margin-bottom: 12px; font-weight: 600; }
.location-address { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.location-button {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px;
  background: var(--primary); color: #fff; font-weight: 600; font-size: 0.9rem;
  transition: transform var(--transition), background var(--transition);
}
.location-button:hover { transform: translateY(-2px); background: var(--accent); }

/* --- RSVP --- */
.rsvp { text-align: center; background: var(--primary); color: #fff; }
.rsvp .section-title { color: #fff; }
.rsvp .section-subtitle { color: rgba(255, 253, 248, 0.8); }
.rsvp-message { max-width: 480px; margin: 0 auto 36px; color: rgba(255, 253, 248, 0.85); font-size: 1.1rem; }
.rsvp-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.rsvp-button {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 50px;
  background: rgba(255, 255, 255, 0.12); color: #fff; font-weight: 600; font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.25); transition: var(--transition); backdrop-filter: blur(4px);
}
.rsvp-button:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }
.rsvp-button svg { width: 20px; height: 20px; }

/* --- Content blocks --- */
.content-block { background: var(--surface); }
.content-block-card {
  max-width: 640px; margin: 0 auto; text-align: center; padding: 36px 28px;
  border-radius: var(--radius); border: 1px solid rgba(200, 162, 74, 0.15); box-shadow: var(--shadow-sm);
}
.content-block-title { font-family: var(--font-heading); font-size: 1.3rem; color: var(--primary); margin-bottom: 12px; font-weight: 600; }
.content-block-text { color: var(--muted); line-height: 1.7; }
.content-block-image { border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }

/* --- Footer --- */
.footer { text-align: center; padding: 60px 20px; background: var(--text); color: rgba(255, 253, 248, 0.8); }
.footer-message { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 12px; font-style: italic; }
.footer-hashtag { font-size: 1rem; color: var(--secondary); letter-spacing: 0.05em; }
.footer-social { display: flex; justify-content: center; gap: 16px; margin-top: 20px; }
.footer-social a { color: rgba(255, 253, 248, 0.8); transition: color var(--transition); }
.footer-social a:hover { color: var(--secondary); }
.footer-social svg { width: 22px; height: 22px; }

/* --- Music control --- */
.music-control {
  position: fixed; bottom: 20px; left: 20px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: var(--shadow-md); transition: transform var(--transition), background var(--transition);
}
.music-control:hover { transform: scale(1.08); background: var(--accent); }
.music-control.playing .music-icon-bars span { animation-play-state: running; }
.music-icon-bars { display: flex; align-items: flex-end; gap: 2px; height: 18px; }
.music-icon-bars span { width: 3px; background: #fff; border-radius: 2px; height: 100%; animation: music-bar 0.8s ease-in-out infinite alternate; animation-play-state: paused; }
.music-icon-bars span:nth-child(1) { height: 60%; animation-delay: 0s; }
.music-icon-bars span:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.music-icon-bars span:nth-child(3) { height: 40%; animation-delay: 0.4s; }
@keyframes music-bar { from { height: 20%; } to { height: 100%; } }

/* --- Back to top --- */
.back-to-top {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-2px); background: var(--accent); }

/* --- Lightbox --- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(0, 0, 0, 0.92);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; transition: opacity var(--transition);
}
.lightbox.open { opacity: 1; }
.lightbox-image { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-caption { position: absolute; bottom: 70px; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--font-heading); font-size: 1.1rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; color: #fff; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.1);
  transition: background var(--transition); font-size: 1.5rem;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-counter { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }

/* --- Decorations --- */
.decoration { position: absolute; pointer-events: none; opacity: 0.6; z-index: 0; }
.decoration svg { width: 100%; height: 100%; }
.deco-sparkle { animation: sparkle 3s ease-in-out infinite; }
.deco-float { animation: float 6s ease-in-out infinite; }
@keyframes sparkle { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Ring animation */
.ring-animation { display: flex; justify-content: center; margin: 24px auto; max-width: 120px; }
.ring-animation svg { width: 100%; height: auto; animation: ring-rotate 8s linear infinite; }
@keyframes ring-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .ring-animation svg, .deco-sparkle, .deco-float { animation: none; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .section { padding: 60px 16px; }
  .nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; height: auto;
    flex-direction: column; justify-content: center; gap: 12px;
    background: rgba(255, 253, 248, 0.97); backdrop-filter: blur(16px);
    transform: translateX(100%); transition: transform var(--transition);
    padding: 80px 24px;
  }
  .nav.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; padding: 12px 20px; }
  .nav-toggle { display: flex; }
  .gallery-grid { columns: 2; }
  .countdown-item { min-width: 70px; padding: 16px 10px; }
  .countdown-number { font-size: 1.6rem; }
  .timeline::before { left: 20px; }
  .timeline-item { gap: 16px; }
  .host-card { max-width: 100%; flex: 1 1 100%; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .rsvp-buttons { flex-direction: column; align-items: center; }
  .rsvp-button { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .hero { min-height: 100vh; min-height: 100svh; padding: 100px 16px 60px; }
  .countdown-grid { gap: 8px; }
  .countdown-item { min-width: 64px; padding: 12px 8px; }
  .countdown-number { font-size: 1.4rem; }
  .event-card, .location-card { padding: 32px 20px; }
  .music-control { width: 46px; height: 46px; bottom: 16px; left: 16px; }
  .back-to-top { width: 42px; height: 42px; bottom: 16px; right: 16px; }
}

@media (min-width: 769px) {
  .nav { gap: 4px; }
  .nav-link { font-size: 0.8rem; }
}

/* --- Utility --- */
.hidden { display: none !important; }
.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;
}
