/**
 * Advertisement-specific styles for TECHi theme
 */

/* Hide first Google auto-placed ad on homepage */
body.home > .google-auto-placed:first-of-type {
    display: none !important;
}

/* Hide Google ads within BTC Miner ad wrapper */
body.home > #ad-btcminer-wrapper > .google-auto-placed {
    display: none !important;
}

/* Sponsored Ad Disclaimer Styling */
.sponsored-ad-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(0, 176, 174, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(0, 176, 174, 0.15);
    max-width: 330px;
    margin: 0 auto;
}

.sponsored-text {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimer-link {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(0, 176, 174, 0.1);
    transition: all 0.2s ease;
}

.disclaimer-link:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}
