:root {
  --bg-base: #0A0A0A;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --border: #1A1A1A;
  --border-hover: #2A2A2A;
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --accent-glow: #F59E0B22;
  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted: #52525B;
  --success: #22C55E;
  --error: #EF4444;
  --warning: #F59E0B;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-badge: 6px;
  --transition: all 0.2s ease;
  --header-height: 64px;
  --max-width: 1200px;
  --max-width-content: 900px;
  --max-width-seo: 800px;
  color-scheme: dark;
}

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--accent) var(--bg-base);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(245, 158, 11, 0.1), transparent 28%),
    linear-gradient(180deg, #0d0d0d 0%, var(--bg-base) 24%, #050505 100%);
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding-top: var(--header-height);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main {
  min-height: calc(100vh - var(--header-height));
}

img,
picture,
svg,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style-position: inside;
}

::selection {
  background: rgba(245, 158, 11, 0.35);
  color: #050505;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-hover));
  border: 3px solid #080808;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fbbf24, var(--accent));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  line-height: 1.1;
}

p,
li {
  color: var(--text-secondary);
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: currentColor;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.content-wrap {
  width: min(100% - 2rem, var(--max-width-content));
  margin: 0 auto;
}

.seo-wrap {
  width: min(100% - 2rem, var(--max-width-seo));
  margin: 0 auto;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.header-inner {
  width: min(100% - 2rem, var(--max-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.header-logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.header-logo-text .accent {
  color: var(--accent);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-nav a {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.header-nav a:hover {
  color: var(--text-primary);
}

.header-nav a.active {
  color: var(--accent);
}

.header-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: var(--radius-btn);
  color: var(--accent);
  background: rgba(245, 158, 11, 0.06);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.header-cta:hover {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.12);
  color: #ffd28a;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.hamburger:hover,
.hamburger[aria-expanded="true"] {
  border-color: var(--border-hover);
  background: var(--bg-card);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    max-height 0.25s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.mobile-menu.open {
  max-height: calc(100vh - var(--header-height));
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  border-bottom-color: var(--border);
}

.mobile-menu-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu a {
  display: block;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  border-color: var(--border-hover);
  background: var(--bg-card);
  color: var(--accent);
}

.footer {
  margin-top: 5rem;
  background: rgba(8, 8, 8, 0.98);
  border-top: 1px solid var(--border);
}

.footer-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.footer-col-title {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.footer-bottom {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 1.2rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--text-muted);
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

.breadcrumb-sep {
  color: var(--text-muted);
}

.breadcrumb-link {
  color: var(--text-muted);
  transition: var(--transition);
}

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

.breadcrumb-current {
  color: var(--accent);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(180deg, #fbbf24 0%, var(--accent) 100%);
  color: #050505;
  box-shadow: 0 14px 36px rgba(245, 158, 11, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #fcd34d 0%, var(--accent-hover) 100%);
}

.btn-secondary {
  border-color: rgba(245, 158, 11, 0.45);
  color: var(--accent);
  background: rgba(245, 158, 11, 0.06);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.12);
}

.btn-ghost {
  border-color: var(--border-hover);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

.btn-danger:hover {
  background: rgba(239, 68, 68, 0.22);
  color: #fecaca;
}

.btn-success {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.btn-success:hover {
  background: rgba(34, 197, 94, 0.2);
}

.btn:disabled {
  cursor: not-allowed;
  background: var(--border);
  border-color: var(--border);
  color: var(--text-muted);
  box-shadow: none;
  transform: none;
}

.btn.loading {
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-top-color: var(--text-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%), var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  transition: var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.card-highlight {
  position: relative;
  overflow: hidden;
}

.card-highlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.toast-container {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(100% - 2rem, 360px);
}

.toast {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem 1rem 1rem 1rem;
  background: rgba(17, 17, 17, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  animation: toast-in 0.25s ease both;
}

.toast.is-leaving {
  animation: toast-out 0.25s ease both;
}

.toast-message {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.toast-close {
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.toast-close:hover {
  color: var(--text-primary);
}

.toast-success {
  border-left: 3px solid var(--success);
}

.toast-error {
  border-left: 3px solid var(--error);
}

.toast-warning {
  border-left: 3px solid var(--warning);
}

.toast-info {
  border-left: 3px solid #60a5fa;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toast-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.progress-wrap {
  display: none;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.02);
}

.progress-wrap.is-visible {
  display: grid;
}

.progress-label {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.progress-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #fbbf24, var(--accent));
  border-radius: inherit;
  transition: width 0.25s ease;
}

.upload-zone {
  display: grid;
  place-items: center;
  gap: 0.75rem;
  min-height: 240px;
  padding: 2rem;
  border: 1.5px dashed var(--border-hover);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top, rgba(245, 158, 11, 0.06), transparent 35%),
    rgba(255, 255, 255, 0.01);
  text-align: center;
  transition: var(--transition);
}

.upload-zone:hover {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(255, 255, 255, 0.02);
}

.upload-zone.dragover {
  border-color: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-glow);
  background: rgba(245, 158, 11, 0.08);
}

.upload-zone.has-files {
  min-height: 140px;
  padding: 1.5rem;
}

.upload-zone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
}

.upload-zone-text {
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.upload-zone-sub {
  color: var(--text-muted);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.file-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: var(--transition);
}

.file-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.file-card.dragging {
  opacity: 0.5;
  transform: scale(0.98);
}

.file-card-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: grab;
}

.file-card-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid var(--border);
}

.file-card-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.file-card-name {
  overflow: hidden;
  color: var(--text-primary);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
}

.file-card-meta {
  color: var(--text-muted);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
}

.file-card-remove {
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.file-card-remove:hover {
  color: var(--error);
}

.tool-hero {
  padding: 4.5rem 1rem 3rem;
  text-align: center;
}

.tool-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.08);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tool-hero h1 {
  max-width: 12ch;
  margin: 0 auto 0.9rem;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.tool-hero-sub {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
}

.seo-content {
  width: min(100% - 2rem, var(--max-width-seo));
  margin: 0 auto;
}

.seo-content h2 {
  margin-bottom: 1.1rem;
  font-size: 32px;
}

.seo-content h3 {
  margin: 2rem 0 0.85rem;
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.seo-content p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.seo-content ul {
  display: grid;
  gap: 0.7rem;
  padding-left: 1rem;
}

.seo-content ul li {
  color: var(--text-secondary);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.comparison-table th {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table .col-huzzipdf {
  box-shadow: inset 3px 0 0 var(--accent);
}

.check {
  color: var(--success);
}

.cross {
  color: var(--error);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease,
    padding-bottom 0.25s ease;
}

.faq-answer p,
.faq-answer div {
  padding-bottom: 1.15rem;
}

.faq-item.open .faq-answer {
  opacity: 1;
}

.faq-chevron {
  transition: transform 0.2s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.related-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.related-tool-card {
  position: relative;
  padding-right: 3.5rem;
}

.related-tool-card::after {
  content: "\2192";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.15rem;
  transition: var(--transition);
}

.related-tool-card:hover::after {
  transform: translate(4px, -50%);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .header-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-hero {
    padding-top: 4rem;
  }

  .tool-hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .header {
    height: 60px;
  }

  .header-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
  }

  .upload-zone {
    min-height: 220px;
    padding: 1.5rem;
  }

  .file-card {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .file-card-thumb {
    width: 60px;
    height: 80px;
  }

  .related-tools {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .container,
  .content-wrap,
  .seo-wrap {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .tool-hero {
    padding: 3rem 0.75rem 2.5rem;
  }

  .tool-hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .tool-hero-sub,
  .seo-content p,
  .seo-content ul li {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
  }

  .upload-zone {
    min-height: 200px;
  }

  .upload-zone-icon {
    width: 3.25rem;
    height: 3.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ToolsMatic PDF import theme overrides */
:root {
  --bg-base: #071523;
  --bg-card: rgba(8, 19, 32, 0.92);
  --bg-card-hover: rgba(11, 27, 45, 0.96);
  --border: rgba(124, 217, 255, 0.18);
  --border-hover: rgba(94, 234, 212, 0.42);
  --accent: #5eead4;
  --accent-hover: #60a5fa;
  --accent-glow: rgba(94, 234, 212, 0.18);
  --text-primary: #eef7ff;
  --text-secondary: #b5c7d8;
  --text-muted: #7f93a8;
}
.header-logo-text,.logo{letter-spacing:.14em;text-transform:uppercase;font-weight:800}
.header,.footer{background:rgba(5,14,24,.9);border-color:rgba(124,217,255,.16)}
.pdf-ad-slot{max-width:900px;margin:18px auto 26px;padding:10px;display:flex;justify-content:center;overflow:hidden;border-radius:18px;border:1px solid rgba(124,217,255,.14);background:rgba(4,12,22,.72)}
@media (max-width:768px){.pdf-ad-slot{width:min(100%,728px);margin:14px auto 20px;transform-origin:top center}}
