/* ===== HIDE BLOCKSCOUT BRANDING IN FOOTER ===== */

/* Hide the entire "Made with Blockscout" section - targets the second main footer block */
footer > div > div:nth-of-type(2) {
  display: none !important;
}

/* Hide any element containing "Blockscout" text */
footer *:has(> svg + span) {
  display: none !important;
}

/* Hide copyright text */
footer div:has(> span:first-child) > span:contains('Copyright'),
footer *[class*='copyright'] {
  display: none !important;
}

/* Hide social/external links section (Twitter, Discord, etc) */
footer div:has(a[href*='twitter.com']),
footer div:has(a[href*='discord']),
footer div:has(a[href*='github.com/blockscout']) {
  display: none !important;
}

/* Alternative: Hide by structure - last child in footer that has links */
footer > div > div:last-child:has(a[href*='blockscout']) {
  display: none !important;
}

/* ===== LADY BRAND COLORS ===== */
a:hover {
  color: #ff69b4 !important;
}

/* Pink accent for active/selected states */
[data-active='true'],
.chakra-tabs__tab[aria-selected='true'] {
  border-color: #ff1493 !important;
}
