/* Bottom app buttons (about / contact / coffee). They live at the end of the
   scrollable content, anchored to the bottom, so they appear once you scroll
   all the way down. */

.app-footer {
    background: var(--folder-surface);
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 12px 30px;
}

.app-footer .bmc-cup {
    width: 22px;
    height: 22px;
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.3);
}

.app-footer .bmc-cup:hover {
    background: rgba(148, 163, 184, 0.2);
    border-color: rgba(148, 163, 184, 0.5);
}

.app-footer .bmc-cup img {
    width: 12px;
    height: 12px;
    opacity: 0.7;
}

.disclaimer-btn,
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 12px;
    border-radius: 11px;
    background: rgba(148, 163, 184, 0.12);
    border: 1.5px solid rgba(148, 163, 184, 0.3);
    color: #94a3b8;
    font-family: 'Poppins', sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.disclaimer-btn:hover,
.contact-btn:hover {
    background: rgba(148, 163, 184, 0.2);
    border-color: rgba(148, 163, 184, 0.5);
    color: #cbd5e1;
    transform: scale(1.05);
}
