/* TAMastery cookie consent — self-contained, themed via --ghost-accent-color */
.tama-cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 3999999;
    max-width: 1100px;
    margin: 0 auto;
    background: #15171a;
    color: #e7eaee;
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .35);
    padding: 18px 22px;
    font-size: 1.5rem;
    line-height: 1.5;
}
.tama-cookie-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tama-cookie-text { margin: 0; flex: 1 1 320px; }
.tama-cookie-text a { color: #fff; text-decoration: underline; }
.tama-cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.tama-cookie-btn {
    cursor: pointer;
    border: 0;
    border-radius: 6px;
    padding: 9px 18px;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: inherit;
}
.tama-cookie-reject {
    background: transparent;
    color: #e7eaee;
    border: 1px solid rgba(255, 255, 255, .35);
}
.tama-cookie-reject:hover { border-color: #fff; }
.tama-cookie-accept {
    background: var(--ghost-accent-color, #a31aff);
    color: #fff;
}
.tama-cookie-accept:hover { opacity: .92; }
.tama-cookie-prefs-link { cursor: pointer; }
@media (max-width: 600px) {
    .tama-cookie-actions { width: 100%; }
    .tama-cookie-btn { flex: 1; }
}
