.nv-title-tagline-wrap small,
.site-description {
    font-size: 14px !important;  /* Change this number – e.g., 18px, 20px */
}
/* Bold all primary menu items (links) */
#nv-primary-navigation-main .primary-menu-ul li a,
.nv-nav-wrap .menu-item a {
    font-weight: 600 !important;  /* Bold – 700 is standard bold; try 600 for semi-bold if too heavy */
}
.tnp-field input[type="email"],
.tnp-field input[type="text"],
.tnp-subscription input {
    background-color: #f9f9f9 !important;  /* Very light gray to reduce heaviness */
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
}

.tnp-subscription input[type="submit"] {
    background-color: #your-button-color !important;  /* Match your site buttons */
}

/* Parent section: flex column centering + enforced height + no extra bottom */
.crypto-ticker-banner {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;  /* Centers all children vertically */
    align-items: center !important;      /* Horizontal centering if needed */
    min-height: 160px !important;        /* Boost this if centering still looks off – try 180px–220px */
    padding: 20px 0 !important;          /* Balanced top/bottom – reduce if too much space */
    margin: 0 !important;
    overflow: hidden !important;         /* Prevent any overflow pushing down */
}

/* Target CCPW wrappers – zero out ALL bottom space */
.crypto-ticker-banner .ccpw-ticker-wrapper,
.crypto-ticker-banner .ccpw-ticker,
.crypto-ticker-banner .ccpw-widget-wrapper,
.crypto-ticker-banner .ccpw-container,
.crypto-ticker-banner .ccpw-inner,
.crypto-ticker-banner .ccpw-ticker-list,
.crypto-ticker-banner .ccpw-price-ticker,
.crypto-ticker-banner div[class*="ccpw"] {  /* Broad catch-all for any CCPW div */
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    line-height: 1.2 !important;         /* Tighten text lines */
}

/* Specifically kill bottom padding/margin on list/items */
.crypto-ticker-banner ul,
.crypto-ticker-banner li,
.crypto-ticker-banner .ccpw-ticker li,
.crypto-ticker-banner .ccpw-ticker div {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
}

/* If the ticker is a block with height issues */
.crypto-ticker-banner .ccpw-ticker {
    height: auto !important;
    max-height: none !important;
}

CSS.footer-bar .powered-by,  /* Or inspect for exact class like .builder-item.cr */
.nv-footer-content .powered {
    display: none !important;
}

/* Make header fixed at the top (sticky) */
.site-header, .nv-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background-color: #ffffff; /* or your header background color, e.g. #F0F8FF for light blue */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* optional subtle shadow for depth */
    transition: background 0.3s ease;
}

/* Add padding below header so content doesn't hide under it */
body {
    padding-top: 80px !important; /* adjust this value to match your header height */
}

/* Optional: make header shrink slightly when scrolling */
.site-header.scrolled {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background-color: rgba(255,255,255,0.98) !important;
}