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

:root {
  --bg: #0D0D0D;
  --surface: #141414;
  --surface-hover: #1A1A1A;
  --surface-raised: #1C1C1C;
  --accent: #D4A017;
  --accent-dim: rgba(212, 160, 23, 0.12);
  --accent-glow: rgba(212, 160, 23, 0.06);
  --text-primary: #ECECEC;
  --text-secondary: #7A7A7A;
  --text-tertiary: #505050;
  --border: rgba(236, 236, 236, 0.07);
  --border-hover: rgba(236, 236, 236, 0.12);
  --border-accent: rgba(212, 160, 23, 0.2);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 48px;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.logo-img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-download {
  display: none;
  padding: 6px 16px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition);
}

.nav-download:hover {
  opacity: 0.85;
}

.lang-switch {
  display: flex;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-tertiary);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.4px;
}

.lang-btn.active {
  background: var(--surface-raised);
  color: var(--text-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 20px;
  flex-direction: column;
  gap: 2px;
  z-index: 99;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.mobile-menu a:hover {
  background: var(--surface);
}

.mobile-cta {
  background: var(--accent);
  color: var(--bg) !important;
  text-align: center;
  font-weight: 700 !important;
  margin-top: 6px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: var(--radius-lg);
}

.btn-primary {
  background: var(--accent);
  color: #0A0A0A;
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.25);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
}

/* ── Hero ── */
.hero {
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(212, 160, 23, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(38px, 6.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ── How it works ── */
.how {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.how .section-title {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.how .section-eyebrow {
  text-align: center;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.how-step {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}

.how-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
}

.how-step:hover .how-step-icon {
  border-color: var(--border-accent);
  background: var(--accent-dim);
}

.how-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.how-step-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 18px;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

/* ── Sections ── */
section {
  padding: 100px 0;
}

section .section-eyebrow {
  text-align: center;
}

section .section-title {
  text-align: center;
}

/* ── Features ── */
.features {
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--surface);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}

.feature-card:hover {
  background: var(--surface-hover);
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.85;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Screenshots ── */
.screenshots {
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.screenshots-slider {
  position: relative;
}

.screenshots-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 0 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.screenshots-track::-webkit-scrollbar {
  display: none;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.screenshots-slider:hover .slider-btn {
  opacity: 1;
  pointer-events: auto;
}

.slider-btn:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

.slider-btn-prev {
  left: 8px;
}

.slider-btn-next {
  right: 8px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  padding-bottom: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-tertiary);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.slider-dot:hover {
  background: var(--text-secondary);
}

.phone-mock {
  flex: 0 0 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.phone-frame {
  width: 240px;
  height: 490px;
  background: #080808;
  border-radius: 32px;
  padding: 10px;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
}

.phone-notch {
  width: 100px;
  height: 22px;
  background: #080808;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 32px 14px 16px;
  gap: 14px;
  position: relative;
}

.screen-feed { background: linear-gradient(180deg, #141414 0%, #1A1A2E 100%); }
.screen-reader { background: linear-gradient(180deg, #141414 0%, #1A1428 100%); }
.screen-sources { background: linear-gradient(180deg, #141414 0%, #162032 100%); }
.screen-bookmarks { background: linear-gradient(180deg, #141414 0%, #1A1628 100%); }

.screen-statusbar {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: var(--text-tertiary);
  font-weight: 600;
  margin-bottom: -4px;
}

.screen-status-icons {
  letter-spacing: 2px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.screen-title {
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.screen-accent {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.feed-posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.feed-post {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.feed-post-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.feed-post-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.fline {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(236, 236, 236, 0.1) 0%, rgba(236, 236, 236, 0.03) 100%);
}

.w90 { width: 90%; } .w85 { width: 85%; } .w80 { width: 80%; }
.w75 { width: 75%; } .w70 { width: 70%; } .w65 { width: 65%; }
.w60 { width: 60%; } .w55 { width: 55%; } .w50 { width: 50%; }
.w45 { width: 45%; } .w40 { width: 40%; }

.screen-tags-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.stag {
  padding: 2px 7px;
  background: rgba(15, 52, 96, 0.3);
  border-radius: 3px;
  font-size: 8px;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
}

.reader-lines {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.rline {
  display: block;
  height: 5px;
  border-radius: 2.5px;
  background: linear-gradient(90deg, rgba(236, 236, 236, 0.08) 0%, rgba(236, 236, 236, 0.02) 100%);
}

.rspace { height: 12px; background: none; }

.w100 { width: 100%; }

.source-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.source-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(236, 236, 236, 0.03);
  border-radius: 6px;
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 0.1px;
}

.source-icon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.6;
}

.bookmark-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.bookmark-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bookmark-star {
  color: var(--accent);
  font-size: 11px;
  margin-top: 1px;
  flex-shrink: 0;
}

.bookmark-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.phone-label {
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
}

/* ── FAQ ── */
.faq {
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--border-hover);
}

.faq-item summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.15px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--text-tertiary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-item p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Download ── */
.download {
  border-top: 1px solid var(--border);
}

.download-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.download-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.download-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.download-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 12px;
}

.footer-logo {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 12px;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent);
}

.footer-link svg {
  flex-shrink: 0;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (min-width: 769px) {
  .nav-download {
    display: inline-flex;
  }
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .how-step-arrow {
    transform: rotate(90deg);
    padding-top: 4px;
  }

  .how-step {
    max-width: 360px;
    padding: 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: clamp(30px, 6vw, 46px);
  }

  section {
    padding: 72px 0;
  }

  .screenshots-track {
    gap: 16px;
  }

  .slider-btn {
    display: none;
  }

  .phone-mock {
    flex: 0 0 230px;
  }

  .phone-frame {
    width: 220px;
    height: 450px;
    border-radius: 28px;
    padding: 8px;
  }

  .phone-screenshot {
    border-radius: 21px;
  }

  .download-card {
    padding: 36px 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 0 56px;
  }

  section {
    padding: 56px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hamburger {
    display: flex;
  }

  .lang-switch {
    display: none;
  }

  .nav-download {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-buttons .btn {
    width: 100%;
  }

  .slider-btn {
    display: none;
  }

  .phone-mock {
    flex: 0 0 210px;
  }

  .phone-frame {
    width: 200px;
    height: 410px;
    border-radius: 26px;
    padding: 8px;
  }

  .phone-screenshot {
    border-radius: 19px;
  }

  .faq-item summary {
    font-size: 14px;
    padding: 16px 18px;
  }

  .faq-item p {
    font-size: 13px;
    padding: 0 18px 16px;
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
@media (max-width: 600px) {
  .lightbox-nav { width: 36px; height: 36px; font-size: 24px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
