/* ═══════════════════════════════════════════════════
   BILONLINE — SHARED STYLESHEET
   Used by: index.html, all tool pages, static pages
═══════════════════════════════════════════════════ */

/* ── FONTS ───────────────────────────────────────── */
/* Loaded via <link> in each HTML file:
   Syne (headings), Instrument Sans (body), Courier Prime (mono) */

/* ── CSS VARIABLES ───────────────────────────────── */
:root {
  --bg:       #0d0d14;
  --surface:  #13131f;
  --card:     #18182a;
  --border:   #24243a;
  --accent:   #6c63ff;
  --gold:     #f5c842;
  --teal:     #00d4b4;
  --text:     #e8e8f0;
  --muted:    #666680;
  --paper:    #fefdf8;
  --ink:      #1a1a2a;
  --mono:     'Courier Prime', monospace;
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Instrument Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
input, select, textarea, button { font-family: inherit; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ══════════════════════════════════════════════════
   SITE HEADER (shared across all pages)
══════════════════════════════════════════════════ */
.site-header {
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,20,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 17px; color: #fff;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 19px;
  color: var(--text);
}
.logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-badge {
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: 700;
  margin-left: 4px;
  vertical-align: middle;
}

/* ══════════════════════════════════════════════════
   SITE FOOTER (shared)
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-text { font-size: 12.5px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover {
  background: #5a52e0;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(108,99,255,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ══════════════════════════════════════════════════
   TOOL CARDS (landing grid)
══════════════════════════════════════════════════ */
.tool-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  text-align: left;
  text-decoration: none;
  display: block;
  color: var(--text);
}
.tool-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--card-accent, var(--accent));
  opacity: 0;
  transition: opacity 0.2s;
}
.tool-card:hover {
  border-color: var(--card-accent, var(--accent));
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.tool-card:hover::before { opacity: 1; }
.tool-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.tool-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 5px;
}
.tool-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.badge-new, .badge-pop {
  position: absolute; top: 12px; right: 12px;
  font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 10px; letter-spacing: 1px;
}
.badge-new { background: var(--teal); color: #000; }
.badge-pop { background: var(--gold); color: #000; }

/* ══════════════════════════════════════════════════
   TOOL PAGE LAYOUT (form + preview)
══════════════════════════════════════════════════ */
.tool-page { display: flex; flex-direction: column; height: 100vh; }

/* Top bar */
.tool-bar {
  height: 52px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.tool-bar-back {
  display: flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 13px;
  text-decoration: none;
  padding: 5px 10px; border-radius: 6px;
  transition: all 0.2s;
  border: none; background: none; cursor: pointer;
}
.tool-bar-back:hover { background: var(--card); color: var(--text); }
.tool-bar-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--text);
  flex: 1;
}
.tool-bar-sub {
  font-size: 11px; color: var(--muted);
  font-weight: 400; margin-left: 6px;
}
.tool-bar-print {
  background: var(--card);
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.tool-bar-print:hover { border-color: var(--accent); color: var(--accent); }

/* Body: form panel + preview panel */
.tool-body { display: flex; flex: 1; overflow: hidden; }

.form-panel {
  width: 360px;
  min-width: 360px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  height: 100%;
  padding: 16px 16px 60px;
}

.preview-panel {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 20px;
  overflow-y: auto;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 10px,
    rgba(255,255,255,0.008) 10px, rgba(255,255,255,0.008) 11px
  );
}

/* ── Form elements ────────────────────────────── */
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent);
  margin: 18px 0 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--border);
}
.field { margin-bottom: 9px; }
.field label {
  display: block;
  font-size: 10px; color: var(--muted);
  margin-bottom: 3px; font-weight: 500; letter-spacing: 0.3px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 10px;
  color: var(--text);
  font-size: 12.5px;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }
.field select option { background: var(--card); }
.field textarea { resize: vertical; min-height: 48px; }
.field input[readonly] { background: #0f0f1a; color: var(--muted); }

.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7px; }

/* item rows (for line-item tables in form) */
.item-row { display: grid; gap: 4px; margin-bottom: 5px; align-items: center; }
.item-row input {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 8px;
  color: var(--text); font-size: 11.5px; outline: none; width: 100%;
}
.item-row input:focus { border-color: var(--accent); }
.del-btn {
  background: none; border: 1px solid #333; color: #555;
  border-radius: 5px; width: 26px; height: 28px;
  cursor: pointer; font-size: 14px; transition: all 0.15s;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.del-btn:hover { border-color: #e55; color: #e55; }
.add-item-btn {
  background: none; border: 1px dashed var(--border);
  color: var(--muted); border-radius: 7px;
  padding: 6px; width: 100%; cursor: pointer;
  font-size: 11px; letter-spacing: 1px;
  transition: all 0.2s; margin-top: 3px;
}
.add-item-btn:hover { border-color: var(--accent); color: var(--accent); }

/* action buttons */
.update-btn {
  background: var(--accent); color: #fff;
  border: none; border-radius: 8px;
  padding: 11px; width: 100%;
  font-size: 13px; font-weight: 600;
  cursor: pointer; margin-top: 16px;
  transition: opacity 0.2s;
}
.update-btn:hover { opacity: 0.85; }
.print-btn {
  background: var(--card); color: var(--muted);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 9px; width: 100%;
  font-size: 11px; letter-spacing: 1px;
  cursor: pointer; margin-top: 6px;
  text-transform: uppercase; transition: all 0.2s;
}
.print-btn:hover { border-color: var(--accent); color: var(--accent); }

/* logo picker (fuel, internet) */
.logo-picker { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 8px; }
.logo-opt {
  background: var(--card); border: 2px solid var(--border);
  border-radius: 8px; padding: 7px 3px;
  cursor: pointer; text-align: center; transition: all 0.2s;
}
.logo-opt:hover { border-color: #444; }
.logo-opt.active { border-color: var(--accent); background: rgba(108,99,255,0.08); }
.lo-svg { height: 26px; display: flex; align-items: center; justify-content: center; margin-bottom: 2px; }
.lo-name { font-size: 8px; color: var(--muted); font-family: var(--mono); }

/* stamp picker (salary) */
.stamp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-bottom: 8px; }
.stamp-opt {
  background: var(--card); border: 2px solid var(--border);
  border-radius: 8px; padding: 8px 5px;
  cursor: pointer; text-align: center; transition: all 0.2s;
}
.stamp-opt:hover { border-color: #444; }
.stamp-opt.active { border-color: var(--accent); }
.stamp-mini { height: 38px; display: flex; align-items: center; justify-content: center; margin-bottom: 3px; }
.stamp-lbl { font-size: 8px; color: var(--muted); }

/* ══════════════════════════════════════════════════
   DOCUMENT / BILL STYLES (preview area)
══════════════════════════════════════════════════ */
.doc {
  background: var(--paper);
  width: 680px; min-height: 880px;
  padding: 52px 56px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  color: var(--ink);
}
.doc-accent-bar { position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.doc-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 28px; padding-bottom: 22px; border-bottom: 2px solid #ddd;
}
.doc-co-name { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); }
.doc-tagline { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #888; margin-top: 4px; font-family: var(--mono); }
.doc-contact { font-size: 10.5px; color: #666; margin-top: 9px; line-height: 1.7; font-family: var(--mono); }
.doc-title-block { text-align: right; }
.doc-type { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--ink); letter-spacing: 1px; }
.doc-num { font-family: var(--mono); font-size: 12px; color: #888; margin-top: 5px; }
.doc-date-line { font-family: var(--mono); font-size: 11px; color: #aaa; margin-top: 3px; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 26px; }
.info-box { padding: 14px 16px; background: #fff; border: 1px solid #e8e8e8; }
.info-box:first-child { border-right: none; }
.info-box-lbl { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: #aaa; margin-bottom: 7px; font-family: var(--mono); }
.info-box p { font-size: 11.5px; line-height: 1.8; color: var(--ink); font-family: var(--mono); }
.info-box strong { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; }

.doc-table { width: 100%; border-collapse: collapse; }
.doc-table thead tr { background: var(--ink); color: #fff; }
.doc-table thead th { padding: 10px 12px; font-family: var(--mono); font-size: 8.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; text-align: left; }
.doc-table thead th.r { text-align: right; }
.doc-table tbody tr { border-bottom: 1px solid #eee; }
.doc-table tbody tr:nth-child(even) { background: rgba(0,0,0,0.015); }
.doc-table tbody td { padding: 10px 12px; font-size: 12px; color: var(--ink); }
.doc-table tbody td.r { text-align: right; font-family: var(--mono); }

.totals-wrap { display: flex; justify-content: flex-end; border-top: 2px solid var(--ink); }
.totals-tbl { width: 260px; border-left: 1px solid #eee; }
.totals-tbl tr td { padding: 7px 12px; font-size: 11.5px; font-family: var(--mono); border-bottom: 1px solid #eee; }
.totals-tbl tr td:last-child { text-align: right; }
.totals-tbl .grand { background: var(--ink); }
.totals-tbl .grand td { color: #fff; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; border: none; padding: 12px; }

.doc-footer { margin-top: 36px; padding-top: 20px; border-top: 1px solid #eee; display: flex; justify-content: space-between; align-items: flex-end; }
.doc-footer-note { font-family: var(--mono); font-size: 10px; color: #888; line-height: 1.7; max-width: 280px; }
.sig-block { text-align: right; }
.sig-area { width: 180px; height: 80px; border-bottom: 1px solid var(--ink); margin-bottom: 6px; display: flex; align-items: center; justify-content: center; position: relative; }
.sig-lbl { font-family: var(--mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: #aaa; }

.draft-wm {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-28deg);
  font-family: 'Syne', sans-serif; font-size: 80px; font-weight: 800;
  color: rgba(108,99,255,0.055); letter-spacing: 10px; pointer-events: none; white-space: nowrap;
}
.amount-words {
  padding: 9px 14px; background: #f9f9f4;
  border: 1px solid #e8e8e8; border-top: none;
  font-family: var(--mono); font-size: 10px; color: #555;
}

/* ══════════════════════════════════════════════════
   THERMAL RECEIPT STYLES
══════════════════════════════════════════════════ */
.thermal-wrap { display: flex; flex-direction: column; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5)); }
.thermal-tear-top, .thermal-tear-bottom {
  height: 16px;
  clip-path: polygon(0 100%,2% 0,4% 100%,6% 0,8% 100%,10% 0,12% 100%,14% 0,16% 100%,18% 0,20% 100%,22% 0,24% 100%,26% 0,28% 100%,30% 0,32% 100%,34% 0,36% 100%,38% 0,40% 100%,42% 0,44% 100%,46% 0,48% 100%,50% 0,52% 100%,54% 0,56% 100%,58% 0,60% 100%,62% 0,64% 100%,66% 0,68% 100%,70% 0,72% 100%,74% 0,76% 100%,78% 0,80% 100%,82% 0,84% 100%,86% 0,88% 100%,90% 0,92% 100%,94% 0,96% 100%,98% 0,100% 100%);
}
.thermal-tear-bottom { clip-path: polygon(0 0,2% 100%,4% 0,6% 100%,8% 0,10% 100%,12% 0,14% 100%,16% 0,18% 100%,20% 0,22% 100%,24% 0,26% 100%,28% 0,30% 100%,32% 0,34% 100%,36% 0,38% 100%,40% 0,42% 100%,44% 0,46% 100%,48% 0,50% 100%,52% 0,54% 100%,56% 0,58% 100%,60% 0,62% 100%,64% 0,66% 100%,68% 0,70% 100%,72% 0,74% 100%,76% 0,78% 100%,80% 0,82% 100%,84% 0,86% 100%,88% 0,90% 100%,92% 0,94% 100%,96% 0,98% 100%,100% 0); }
.thermal {
  background: #fff; width: 340px;
  font-family: var(--mono); padding: 0; position: relative;
}
.thermal-body { padding: 6px 20px 20px; }
.t-center { text-align: center; }
.t-logo { margin: 12px auto 4px; display: flex; justify-content: center; }
.t-logo svg { max-width: 100%; height: auto; }
.t-co { font-size: 22px; font-weight: 700; letter-spacing: 1px; }
.t-welcome { font-size: 11px; font-weight: 700; letter-spacing: 2px; margin: 10px 0 4px; }
.t-addr { font-size: 10.5px; line-height: 1.55; }
.t-div { border: none; border-top: 1px dashed #999; margin: 9px 0; }
.t-div-solid { border: none; border-top: 2px solid #000; margin: 9px 0; }
.t-row { display: flex; justify-content: space-between; font-size: 11px; line-height: 1.8; }
.t-row .lbl { font-weight: 700; }
.t-total-row { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 700; padding: 5px 0; border-top: 2px solid #000; border-bottom: 2px solid #000; margin: 5px 0; }
.t-footer { text-align: center; font-size: 10.5px; line-height: 1.7; margin-top: 10px; }
.t-stars { text-align: center; letter-spacing: 3px; font-size: 11px; margin: 8px 0 5px; color: #333; }
.t-side-strip { position: absolute; right: -17px; top: 100px; width: 15px; background: #111; color: #fff; font-size: 7px; font-weight: 700; letter-spacing: 1px; padding: 10px 2px; text-align: center; writing-mode: vertical-rl; transform: rotate(180deg); border-radius: 2px; }
.t-draft { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-28deg); font-size: 56px; font-weight: 900; color: rgba(0,0,0,0.04); letter-spacing: 5px; pointer-events: none; white-space: nowrap; font-family: 'Syne', sans-serif; }

/* ══════════════════════════════════════════════════
   AD SLOTS
   AdSense-ready containers — sized per Google specs
══════════════════════════════════════════════════ */
.ad-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden;
}
/* Leaderboard 728×90 — below header */
.ad-slot-leaderboard { width: 100%; max-width: 728px; height: 90px; margin: 12px auto; }
/* Rectangle 300×250 — sidebar / between content */
.ad-slot-rect { width: 300px; height: 250px; }
/* Banner 320×50 — mobile */
.ad-slot-banner { width: 320px; height: 50px; margin: 8px auto; }

/* ══════════════════════════════════════════════════
   STATIC PAGE LAYOUT (about, contact, privacy)
══════════════════════════════════════════════════ */
.static-page {
  max-width: 760px;
  margin: 48px auto 80px;
  padding: 0 24px;
}
.static-page h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.static-page .page-meta {
  font-size: 12px; color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.static-page h2 {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--text);
  margin: 32px 0 10px;
}
.static-page p {
  font-size: 14.5px; color: var(--muted);
  line-height: 1.85; margin-bottom: 14px;
}
.static-page ul {
  padding-left: 20px; margin-bottom: 14px;
}
.static-page li {
  font-size: 14px; color: var(--muted);
  line-height: 1.8; margin-bottom: 4px;
}
.static-page a { color: var(--accent); text-decoration: none; }
.static-page a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════
   PRINT STYLES
══════════════════════════════════════════════════ */
@media print {
  body { background: #fff !important; }
  .site-header, .tool-bar, .form-panel, .ad-slot,
  .site-footer, .tool-bar-print, .update-btn, .print-btn { display: none !important; }
  .tool-page { height: auto; display: block; }
  .tool-body { display: block; overflow: visible; }
  .preview-panel {
    padding: 0; background: none;
    display: block; overflow: visible;
  }
  .doc, .thermal { box-shadow: none !important; }
  .draft-wm, .t-draft { display: none !important; }
  .thermal-wrap { filter: none; }
  .thermal-tear-top, .thermal-tear-bottom { display: none; }
  .print-disclaimer {
    display: block !important;
    text-align: center;
    font-family: var(--mono);
    font-size: 9px; color: #aaa;
    padding: 8px 0 0;
    border-top: 1px dashed #ddd;
    margin-top: 10px;
  }
}
.print-disclaimer { display: none; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .site-header { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 12.5px; }
  .tool-body { flex-direction: column; }
  .form-panel { width: 100%; min-width: unset; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .preview-panel { padding: 16px 12px; }
  .doc { width: 100%; min-width: 320px; padding: 24px 16px; }
  .thermal { width: 100%; max-width: 340px; }
}
@media (max-width: 600px) {
  .site-header { padding: 0 14px; height: 52px; }
  .logo-text { font-size: 16px; }
  .nav-links { gap: 10px; }
  .site-footer { flex-direction: column; text-align: center; padding: 20px 16px; }
  .static-page { margin: 28px auto 60px; }
  .ad-slot-leaderboard { height: 60px; }
}
