/* Keep navigation readable while making every homepage action unmistakably clickable. */
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.watch-link {
    min-height: 44px;
    padding: 7px 12px 7px 7px;
    border: 1px solid rgba(113, 236, 140, .25);
    border-radius: 10px;
    background: rgba(113, 236, 140, .06);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.watch-link:hover {
    background: rgba(113, 236, 140, .14);
    border-color: rgba(113, 236, 140, .55);
    transform: translateY(-2px);
}

.feature-grid a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid rgba(113, 236, 140, .38);
    border-radius: 8px;
    background: rgba(113, 236, 140, .08);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.feature-grid a:hover {
    background: rgba(113, 236, 140, .18);
    border-color: var(--green);
    transform: translateY(-2px);
}

footer div a {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .025);
    transition: border-color .2s ease, background .2s ease;
}

footer div a:hover {
    background: rgba(113, 236, 140, .1);
    border-color: rgba(113, 236, 140, .42);
}
