/* Share bar — Deep Philosophy style, AD tokens */
.ad-share {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px clamp(16px, 4vw, 28px) 8px;
  box-sizing: border-box;
  width: 100%;
}
.ad-share-inner {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  padding: clamp(18px, 3vw, 24px);
  overflow: hidden;
  box-sizing: border-box;
}
.ad-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}
.ad-share-thumb {
  flex: 0 0 auto;
  width: min(200px, 42vw);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
  background: #0a0e27;
}
.ad-share-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  display: block;
}
.ad-share-copy {
  flex: 1 1 220px;
  min-width: 0;
}
.ad-share-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00d9ff;
  margin-bottom: 8px;
  font-family: 'Courier New', ui-monospace, monospace;
}
.ad-share-desc {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.45;
  color: #a0a0c0;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
}
.ad-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ad-share-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.35);
  background: rgba(0, 217, 255, 0.1);
  color: #00d9ff;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.ad-share-chip.muted {
  border-color: rgba(160, 160, 192, 0.35);
  background: rgba(160, 160, 192, 0.08);
  color: #a0a0c0;
}
.ad-share-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.ad-share-app {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #e0e0ff;
  font-family: 'Courier New', ui-monospace, monospace;
  cursor: pointer;
  text-align: left;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
.ad-share-app strong {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.ad-share-app span {
  font-size: 10px;
  opacity: 0.7;
  text-transform: none;
}
.ad-share-note {
  margin: 12px 0 0;
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 11px;
  color: #00ff88;
}
