/* =========================================================
   TrendGuard Shared CSS (sitewide)
   Purpose: shared, reusable styles across static pages.
   Includes: cookie banner + common link hygiene (optional).
   ========================================================= */

/* -------------------------
   Cookie banner
   ------------------------- */
.tg-cookie {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #1A2238;
    color: #FFFFFF;
    border-top: 1px solid #374151;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.tg-cookie .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tg-cookie p {
    margin: 0;
    font-size: 14px;
    color: #B0B8C2;
    line-height: 1.5;
}

.tg-cookie a {
    color: #22C55E;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.tg-cookie a:hover {
    color: #16A34A;
    text-decoration-color: #16A34A;
}

.tg-cookie .actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Buttons */
.tg-btn {
    appearance: none;
    border: 0;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.tg-btn.accept {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: #fff;
    box-shadow: 0 8px 22px rgba(34, 197, 94, .22);
}

.tg-btn.accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(34, 197, 94, .30);
}

.tg-btn.decline {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid #374151;
}

.tg-btn.decline:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
    .tg-cookie .wrap {
        padding: 16px;
    }

    .tg-cookie .actions {
        width: 100%;
        justify-content: flex-end;
    }
}