
/* TCF Watermark System - Dynamic PHP-based CSS */
/* Ensure watermark doesn't interfere with content layout */
.tcf-watermark {
    position: absolute !important;
        top: 50% !important;
    left: 50% !important;
        width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    font-size: 0 !important;
    line-height: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* Watermark Styles - Only when enabled */
.tcf-watermark {
    overflow: visible !important;
    display: block !important;
}

.tcf-watermark::before {
    content: 'tcfca.com';
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #000000;
    opacity: 0.1;
    font-size: 52px;
    user-select: none;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translate(-50%, -50%) rotate(-45deg);
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    line-height: 1 !important;
}

/* Responsive watermark sizing */
@media (max-width: 768px) {
    .tcf-watermark::before {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .tcf-watermark::before {
        font-size: 28px;
    }
}
